section.hero {
  padding-bottom: calc(var(--section-padding) * 2) !important;
  padding-top: 0;
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.5);

  position: relative;
  isolation: isolate;
}
section.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: -1;
}

section.hero .container h1 {
  font-weight: 700;
  font-size: var(--text-2xl);
  line-height: var(--leading-2xl);
  color: var(--color-white);
}

section.hero .breadcrumb {
  padding-top: calc(var(--header-height) + var(--section-padding));
  padding-inline: 2.5rem;
}

/* ––––––––– DELIVERY –––––––– */

section.delivery > .container {
  text-align: center;
}
section.delivery > .container h2 {
  font-weight: 700;
  font-size: var(--text-xl);
  line-height: var(--leading-xl);
  color: var(--color-black);

  margin-bottom: 1rem;
}
section.delivery > .container p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-black);
}

section.delivery .form {
  margin-top: 100px;
  background-color: #f9fbfc;
  padding: 2rem;
}

section.delivery .form .container h3 {
  margin-bottom: 2rem;

  text-align: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.33;
  color: var(--color-black);
}

section.delivery .form .container {
  display: flex;
  flex-direction: column;
}

section.delivery .form .container label input,
section.delivery .form .container label textarea {
  border: 1px solid var(--border-gray);
  border-radius: 1rem;
  background-color: var(--color-white);
  padding: 0.5rem 1rem;
}
section.delivery .form .container label > input:not([type="checkbox"]):has(+ span):not(:focus):placeholder-shown + span,
section.delivery .form .container label > textarea:not([type="checkbox"]):has(+ span):not(:focus):placeholder-shown + span {
  transform: translateY(2em) translateX(1em) scale(1);
  opacity: 1;
}

section.delivery .form .container .btn {
  margin-top: 1rem;

  width: 100%;
  justify-content: center;
  padding-bottom: 4px;
}

@media screen and (min-width: 768px) {
  section.delivery .form .container {
    max-width: 60%;
  }
}

@media screen and (min-width: 1024px) {
  section.delivery .container {
    max-width: 80%;
  }
}