/* FlowersStore — Menu page */

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

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

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

.flr-menu__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-menu__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-menu__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-menu__crumb a {
  color: inherit;
  text-decoration: none;
}

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

.flr-menu__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-menu__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;
}

/* ── Menu grid section ────────────────────────────────────── */
.flr-menu__section {
  background: var(--theme-surface-high, #fcf3f0);
  padding-block: var(--theme-section-spacing, clamp(64px, 9vw, 132px));
}

.flr-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 5vw, 72px) clamp(40px, 7vw, 110px);
  max-width: 960px;
  margin: 0 auto;
}

.flr-menu__cat {
  font-family: var(--theme-font-family);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme-mocha-deep, #8a6450);
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--theme-border, rgba(74, 58, 48, 0.14));
}

.flr-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flr-menu__item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 0.55em 0;
}

.flr-menu__name {
  font-family: var(--theme-font-display);
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--theme-text, #2a2320);
  line-height: 1.3;
}

.flr-menu__name small {
  display: block;
  font-family: var(--theme-font-family);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--theme-text-muted, #726a62);
  margin-top: 2px;
}

.flr-menu__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(74, 58, 48, 0.3);
  transform: translateY(-5px);
  min-width: 16px;
}

.flr-menu__price {
  font-family: var(--theme-font-family);
  font-weight: 600;
  font-size: 1rem;
  color: var(--theme-coffee, #6f4f3a);
  white-space: nowrap;
  flex-shrink: 0;
}

.flr-menu__note {
  text-align: center;
  margin-top: clamp(32px, 5vw, 52px);
  font-family: var(--theme-font-family);
  font-size: 0.95rem;
  color: var(--theme-text-muted, #726a62);
  font-style: italic;
}

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

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

.flr-menu__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-menu__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-menu__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-menu__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ── Buttons ──────────────────────────────────────────────── */
.flr-menu__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-menu__btn--solid {
  background: var(--theme-surface, #fff9f2);
  color: var(--theme-coffee, #6f4f3a);
  border-color: transparent;
}

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

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

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

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

@media (max-width: 700px) {
  .flr-menu__cta-inner {
    grid-template-columns: 1fr;
  }

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

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

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