/* FlowersStore — Delivery & FAQ page */

/* ── Sub-hero banner ──────────────────────────────────────── */
.flr-delivery__subhero {
  position: relative;
  min-height: clamp(380px, 50vh, 520px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.flr-delivery__subhero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.flr-delivery__subhero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.flr-delivery__subhero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 35, 32, 0.70) 0%, rgba(42, 35, 32, 0.35) 55%, rgba(42, 35, 32, 0.15) 100%),
    linear-gradient(180deg, rgba(42, 35, 32, 0.40) 0%, transparent 40%, rgba(42, 35, 32, 0.40) 100%);
}

.flr-delivery__subhero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(48px, 7vw, 96px);
  max-width: 760px !important;
  margin-inline: auto !important;
  margin-top: clamp(40px, 12vh, 100px);
}

.flr-delivery__crumb {
  font-family: var(--theme-font-family);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.flr-delivery__crumb a {
  color: inherit;
  text-decoration: none;
}

.flr-delivery__crumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.flr-delivery__heading {
  font-family: var(--theme-font-display);
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.flr-delivery__lede {
  margin-top: 1.1rem;
  font-family: var(--theme-font-family);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 50ch;
}

/* ── Shared section head ──────────────────────────────────── */
.flr-delivery__section-head {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.flr-delivery__eyebrow {
  font-family: var(--theme-font-family);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--theme-mocha-deep, #8a6450);
  margin-bottom: 1.1rem;
}

.flr-delivery__title {
  font-family: var(--theme-font-display);
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--theme-text, #2a2320);
}

/* ── Delivery cards (3-col) ───────────────────────────────── */
.flr-delivery__section {
  padding-block: var(--theme-section-spacing, clamp(64px, 9vw, 132px));
}

.flr-delivery__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.flr-delivery__card {
  padding: clamp(24px, 3vw, 36px);
  background: var(--theme-card-bg, #ffffff);
  border: 1px solid var(--theme-border, rgba(74, 58, 48, 0.14));
  border-radius: var(--theme-radius-lg, 10px);
}

.flr-delivery__card h3 {
  font-family: var(--theme-font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--theme-text, #2a2320);
  margin-bottom: 0.6rem;
}

.flr-delivery__card p {
  font-family: var(--theme-font-family);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--theme-text-muted, #726a62);
  margin: 0;
}

/* ── FAQ accordion ────────────────────────────────────────── */
.flr-delivery__faq-section {
  background: var(--theme-surface, #fff9f2);
  padding-block: var(--theme-section-spacing, clamp(64px, 9vw, 132px));
}

.flr-delivery__accordion {
  max-width: 760px;
  margin-inline: auto;
}

.flr-delivery__accordion details {
  border-top: 1px solid var(--theme-border, rgba(74, 58, 48, 0.14));
}

.flr-delivery__accordion details:last-child {
  border-bottom: 1px solid var(--theme-border, rgba(74, 58, 48, 0.14));
}

.flr-delivery__accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2em 0;
  font-family: var(--theme-font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--theme-text, #2a2320);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s;
}

.flr-delivery__accordion summary::-webkit-details-marker {
  display: none;
}

.flr-delivery__accordion summary::after {
  content: "+";
  font-family: var(--theme-font-family);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--theme-primary, #b98d77);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease, cubic-bezier(0.22, 0.61, 0.36, 1));
}

.flr-delivery__accordion details[open] summary::after {
  transform: rotate(45deg);
}

.flr-delivery__accordion summary:hover {
  color: var(--theme-mocha-deep, #8a6450);
}

.flr-delivery__accordion details p {
  font-family: var(--theme-font-family);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--theme-text-muted, #726a62);
  max-width: 64ch;
  padding-bottom: 1.4em;
  margin: 0;
}

.flr-delivery__accordion details a {
  color: var(--theme-coffee, #6f4f3a);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.flr-delivery__accordion details a:hover {
  color: var(--theme-primary, #b98d77);
}

/* ── CTA section ──────────────────────────────────────────── */
.flr-delivery__cta {
  background: var(--theme-coffee, #6f4f3a);
  color: var(--theme-surface, #fff9f2);
  padding-block: var(--theme-section-spacing, clamp(64px, 9vw, 132px));
}

.flr-delivery__cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
}

.flr-delivery__cta-eyebrow {
  font-family: var(--theme-font-family);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--theme-primary, #b98d77);
  margin-bottom: 1.1rem;
}

.flr-delivery__cta-title {
  font-family: var(--theme-font-display);
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--theme-surface, #fff9f2);
  margin-bottom: 1.2rem;
}

.flr-delivery__cta-body {
  font-family: var(--theme-font-family);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 44ch;
  margin-top: 1rem;
}

.flr-delivery__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.flr-delivery__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.05em 2.2em;
  border-radius: 999px;
  font-family: var(--theme-font-family);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.flr-delivery__btn--solid {
  background: var(--theme-surface, #fff9f2);
  color: var(--theme-coffee, #6f4f3a);
}

.flr-delivery__btn--solid:hover {
  background: #fff;
}

.flr-delivery__btn--outline {
  background: transparent;
  color: var(--theme-surface, #fff9f2);
  border-color: rgba(255, 255, 255, 0.55);
}

.flr-delivery__btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 720px) {
  .flr-delivery__cards {
    grid-template-columns: 1fr;
  }

  .flr-delivery__cta-inner {
    grid-template-columns: 1fr;
  }

  .flr-delivery__cta-actions {
    width: 100%;
  }

  .flr-delivery__btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .flr-delivery__subhero {
    min-height: 50vh;
  }
}
