/* ============================================================
   Branch's — Menu Page Styles (menu.css)
   Extends style.css — do not import separately
   ============================================================ */

/* ---------- Menu Hero ---------- */
.menu-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('../images/brownie-sundae.jpg') center 40% / cover no-repeat;
  margin-top: 68px;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,26,0,0.7) 0%, rgba(44,26,0,0.85) 100%);
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.menu-hero-title {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--white);
  line-height: 1.0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  margin-bottom: 16px;
}

.menu-hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Intro Strip ---------- */
.menu-intro-strip {
  background: var(--navy);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid rgba(200,134,10,0.15);
}

.menu-intro-strip span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  white-space: nowrap;
}

/* ---------- Category Tabs ---------- */
.menu-tabs-wrap {
  position: sticky;
  top: 68px;
  z-index: 900;
  background: rgba(44,26,0,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,134,10,0.09);
}

.menu-tabs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--gray);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn:hover { color: var(--white); }

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ---------- Main Menu Area ---------- */
.menu-main {
  background: var(--navy-dark);
  min-height: 60vh;
}

.menu-section-block {
  display: none;
  padding: 80px 0 100px;
}

.menu-section-block.active { display: block; }

.section-intro {
  max-width: 800px;
  margin: 0 auto 64px;
  padding: 0 24px;
  text-align: center;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- Item Shared ---------- */
.item-tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.item-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.item-desc {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.flavor-tags span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,134,10,0.35);
  padding: 5px 12px;
  background: rgba(200,134,10,0.06);
}

.ingredients-block {
  background: rgba(200,134,10,0.07);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 24px 0;
}

.ingredients-block h5 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.ingredients-block ul { display: flex; flex-direction: column; gap: 8px; }

.ingredients-block li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gold);
}

.ing-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   FEATURED SECTION
   ============================================================ */
.featured-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Featured Hero Card */
.featured-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--navy);
  margin-bottom: 3px;
  overflow: hidden;
}

.featured-hero-img {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.featured-hero-img img {
  transition: transform 0.6s ease;
}

.featured-hero-card:hover .featured-hero-img img { transform: scale(1.04); }

.featured-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  z-index: 2;
}

.featured-hero-text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-hero-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}

/* Featured Secondary Grid */
.featured-secondary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 3px;
}

.feat-card {
  background: var(--navy);
  overflow: hidden;
  transition: transform 0.3s;
}

.feat-card:hover { transform: translateY(-4px); }

.feat-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.feat-card-img img { transition: transform 0.5s; }
.feat-card:hover .feat-card-img img { transform: scale(1.07); }

.feat-card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(44,26,0,0.85);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(200,134,10,0.3);
}

.feat-card-body {
  padding: 24px;
}

.feat-card-body h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.feat-card-body p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ============================================================
   KING MILKSHAKES SECTION
   ============================================================ */
.king-shakes-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.king-card {
  display: grid;
  grid-template-columns: 480px 1fr;
  background: var(--navy);
  overflow: hidden;
  min-height: 480px;
}

.king-card--reverse {
  grid-template-columns: 1fr 480px;
}

.king-card--reverse .king-card-img { order: 2; }
.king-card--reverse .king-card-body { order: 1; }

.king-card-img {
  overflow: hidden;
  position: relative;
}

.king-card-img img { transition: transform 0.6s; }
.king-card:hover .king-card-img img { transform: scale(1.04); }

.king-card-body {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.king-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(200,134,10,0.12);
  line-height: 1;
  margin-bottom: -16px;
  letter-spacing: -0.02em;
}

.king-card-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.king-card-body .item-desc {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ============================================================
   GOURMET SUNDAES SECTION
   ============================================================ */
.sundae-showcase {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.sundae-card {
  background: var(--navy);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.sundae-card:hover { transform: translateY(-4px); }

.sundae-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sundae-card-img {
  overflow: hidden;
  min-height: 280px;
}

.sundae-card-img img { transition: transform 0.5s; }
.sundae-card:hover .sundae-card-img img { transform: scale(1.06); }

.sundae-card-body {
  padding: 32px;
  flex: 1;
}

.sundae-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200,134,10,0.15);
  line-height: 1;
  display: block;
  margin-bottom: -8px;
}

.sundae-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 6px;
}

.sundae-card-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.sundae-card--build {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  border: 1px dashed rgba(200,134,10,0.25);
}

.build-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.6;
}

.sundae-card--build h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 8px;
}

.sundae-card--build p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ============================================================
   MILKSHAKES SECTION
   ============================================================ */
.shake-flavor-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.shake-flavor-card {
  background: var(--navy);
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.shake-flavor-card:hover { transform: translateY(-4px); }

.shake-img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.shake-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--navy));
}

.shake-img-wrap img { transition: transform 0.5s; }
.shake-flavor-card:hover .shake-img-wrap img { transform: scale(1.06); }

.shake-body {
  padding: 28px;
  flex: 1;
}

.shake-body h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 6px;
}

.shake-body p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.shake-custom-card {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  border: 1px dashed rgba(200,134,10,0.25);
}

.custom-shake-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.6;
}

.shake-custom-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 6px;
}

.shake-custom-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ============================================================
   CLASSIC SUNDAES SECTION
   ============================================================ */
.classic-sundae-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.classic-card {
  background: var(--navy);
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.classic-card:hover { transform: translateY(-4px); }

.classic-img {
  height: 200px;
  overflow: hidden;
}

.classic-img img { transition: transform 0.5s; }
.classic-card:hover .classic-img img { transform: scale(1.06); }

.classic-body {
  padding: 24px;
  flex: 1;
}

.classic-body h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.classic-body p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.classic-card--build {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  border: 1px dashed rgba(200,134,10,0.25);
}

.classic-card--build h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 6px;
}

.classic-card--build p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ============================================================
   BROWNIES SECTION
   ============================================================ */
.brownie-showcase {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.brownie-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  overflow: hidden;
  margin-bottom: 3px;
  min-height: 520px;
}

.brownie-hero-img {
  overflow: hidden;
}

.brownie-hero-img img { transition: transform 0.6s; }
.brownie-hero:hover .brownie-hero-img img { transform: scale(1.04); }

.brownie-hero-text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brownie-hero-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}

.brownie-secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.brownie-card {
  background: var(--navy);
  overflow: hidden;
  display: grid;
  grid-template-columns: 260px 1fr;
  transition: transform 0.3s;
}

.brownie-card:hover { transform: translateY(-3px); }

.brownie-card-img {
  overflow: hidden;
}

.brownie-card-img img { transition: transform 0.5s; }
.brownie-card:hover .brownie-card-img img { transform: scale(1.06); }

.brownie-card-body {
  padding: 32px;
}

.brownie-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 6px;
}

.brownie-card-body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--navy);
  border-top: 1px solid rgba(200,134,10,0.15);
  border-bottom: 1px solid rgba(200,134,10,0.15);
  padding: 60px 24px;
}

.cta-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 0.95rem;
  color: var(--gray);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ============================================================
   RESPONSIVE — MENU PAGE
   ============================================================ */
@media (max-width: 1100px) {
  .featured-secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .king-card { grid-template-columns: 1fr 1fr; }
  .king-card--reverse { grid-template-columns: 1fr 1fr; }
  .shake-flavor-grid { grid-template-columns: repeat(2, 1fr); }
  .classic-sundae-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .featured-hero-card { grid-template-columns: 1fr; }
  .featured-hero-img { min-height: 320px; }
  .featured-hero-text { padding: 40px 32px; }
  .king-card { grid-template-columns: 1fr; min-height: auto; }
  .king-card--reverse { grid-template-columns: 1fr; }
  .king-card--reverse .king-card-img { order: 0; }
  .king-card--reverse .king-card-body { order: 0; }
  .king-card-img { min-height: 300px; }
  .king-card-body { padding: 36px 28px; }
  .sundae-showcase { grid-template-columns: 1fr 1fr; }
  .sundae-card--wide { grid-column: span 2; grid-template-columns: 1fr; }
  .brownie-hero { grid-template-columns: 1fr; min-height: auto; }
  .brownie-hero-img { min-height: 300px; }
  .brownie-hero-text { padding: 40px 32px; }
  .brownie-secondary-grid { grid-template-columns: 1fr; }
  .brownie-card { grid-template-columns: 200px 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .menu-tabs { padding: 0 12px; }
  .tab-btn { padding: 16px 16px; font-size: 0.72rem; }
  .featured-secondary-grid { grid-template-columns: 1fr; }
  .sundae-showcase { grid-template-columns: 1fr; }
  .sundae-card--wide { grid-column: span 1; grid-template-columns: 1fr; }
  .shake-flavor-grid { grid-template-columns: 1fr; }
  .classic-sundae-grid { grid-template-columns: 1fr 1fr; }
  .brownie-card { grid-template-columns: 1fr; }
  .brownie-card-img { min-height: 220px; }
}

@media (max-width: 480px) {
  .classic-sundae-grid { grid-template-columns: 1fr; }
  .menu-intro-strip { gap: 12px; }
  .cta-actions { flex-direction: column; }
}

/* Option 1 overrides */
.menu-page { background: #FFF8EE !important; }
.menu-hero { background: linear-gradient(135deg, rgba(44,26,0,0.85), rgba(61,36,0,0.75)), url('../images/brownie-sundae.jpg') center/cover !important; }
.menu-tabs { background: #FFF0D6 !important; border-bottom: 2px solid #F0D9A8 !important; }
.tab-btn { color: #6B4200 !important; }
.tab-btn.active, .tab-btn:hover { color: #C8860A !important; border-bottom-color: #C8860A !important; }
.menu-section-content { background: #FFF8EE !important; }
.item-card { background: #ffffff !important; border: 1px solid #F0D9A8 !important; }
.item-card:hover { border-color: #C8860A !important; box-shadow: 0 8px 32px rgba(200,134,10,0.15) !important; }
.item-name { color: #2C1A00 !important; }
.item-desc { color: #6B4200 !important; }
.item-price { color: #C8860A !important; }
.ingredient-block { background: #FFF0D6 !important; border-left-color: #C8860A !important; }
.ingredient-block h5 { color: #2C1A00 !important; }
.ingredient-block li { color: #6B4200 !important; }
.king-card { background: #2C1A00 !important; }
.king-card .item-name, .king-card .item-desc { color: #ffffff !important; }
.king-card .item-price { color: #C8860A !important; }
.featured-section { background: #FFF0D6 !important; }
.hero-item-card { background: #2C1A00 !important; }

/* Menu page contrast fixes */
.menu-hero-title, .menu-hero-subtitle { color: #ffffff!important; }
.tab-btn { color: #2C1A00!important; background: #FFF0D6!important; border-color: #C8860A!important; }
.tab-btn.active { color: #ffffff!important; background: #C8860A!important; }
.section-label, .section-intro { color: #2C1A00!important; }
.item-card h3, .item-card p, .item-card .item-desc { color: #2C1A00!important; }
.flavor-tag { color: #C8860A!important; background: #FFF0D6!important; }
.featured-hero-card h2, .featured-hero-card p { color: #ffffff!important; }
.featured-secondary-card h3, .featured-secondary-card p { color: #2C1A00!important; }
.king-milkshake-card h2, .king-milkshake-card p, .king-milkshake-card .king-number { color: #ffffff!important; }
.ingredient-list li, .ingredient-list h4 { color: #2C1A00!important; }
.sundae-item h3, .sundae-item p { color: #2C1A00!important; }
.milkshake-item h3, .milkshake-item p { color: #2C1A00!important; }
.brownie-item h3, .brownie-item p { color: #2C1A00!important; }

.tab-btn { color: #2C1A00!important; background: #FFF0D6!important; border-color: #C8860A!important; }
.tab-btn.active { color: #ffffff!important; background: #C8860A!important; }
.section-label, .section-intro { color: #2C1A00!important; }
.menu-section-intro, .menu-section-title, .menu-item-title, .menu-item-description { color: #2C1A00!important; }


/* ============================================================
   MENU PAGE — DEFINITIVE CONTRAST FIX
   ============================================================ */

/* Menu tab bar — dark bg */
.menu-tabs { background: #2C1A00 !important; }
.tab-btn { color: rgba(255,255,255,0.7) !important; background: transparent !important; }
.tab-btn.active, .tab-btn:hover { color: #C8860A !important; background: rgba(200,134,10,0.15) !important; }

/* Featured section — light bg */
.featured-section { background: #FFF8EE !important; }
.featured-section .section-eyebrow { color: #C8860A !important; }
.featured-section .section-title { color: #2C1A00 !important; }
.featured-section .section-intro { color: #5A3800 !important; }

/* Featured hero card — dark bg */
.featured-hero-card { background: rgba(44,26,0,0.92) !important; }
.featured-hero-card h2, .featured-hero-card h3 { color: #ffffff !important; }
.featured-hero-card p { color: rgba(255,255,255,0.85) !important; }
.featured-hero-card .item-price { color: #C8860A !important; }
.featured-hero-card .flavor-tag { background: rgba(200,134,10,0.2) !important; color: #C8860A !important; }

/* Secondary featured cards — light bg */
.secondary-card { background: #ffffff !important; border-color: #F0D9A8 !important; }
.secondary-card h3, .secondary-card h4 { color: #2C1A00 !important; }
.secondary-card p { color: #5A3800 !important; }
.secondary-card .item-price { color: #C8860A !important; }
.secondary-card .flavor-tag { background: #FFF0D6 !important; color: #C8860A !important; }

/* King milkshakes section — dark bg */
.king-section { background: #2C1A00 !important; }
.king-section .section-eyebrow { color: #C8860A !important; }
.king-section .section-title { color: #ffffff !important; }
.king-section .section-intro { color: rgba(255,255,255,0.82) !important; }
.king-card { background: rgba(255,255,255,0.07) !important; border-color: rgba(200,134,10,0.25) !important; }
.king-number { color: rgba(200,134,10,0.3) !important; }
.king-card .item-name { color: #ffffff !important; }
.king-card .item-desc { color: rgba(255,255,255,0.82) !important; }
.king-card .item-price { color: #C8860A !important; }
.king-card .flavor-tag { background: rgba(200,134,10,0.2) !important; color: #C8860A !important; }
.ingredient-callout { background: rgba(200,134,10,0.1) !important; border-left-color: #C8860A !important; }
.ingredient-callout h4 { color: #ffffff !important; }
.ingredient-callout li { color: rgba(255,255,255,0.82) !important; }

/* Regular item sections — light bg */
.menu-items-section { background: #FFF8EE !important; }
.menu-items-section .section-eyebrow { color: #C8860A !important; }
.menu-items-section .section-title { color: #2C1A00 !important; }
.menu-items-section .section-intro { color: #5A3800 !important; }
.item-card { background: #ffffff !important; border-color: #F0D9A8 !important; }
.item-card .item-name { color: #2C1A00 !important; }
.item-card .item-desc { color: #5A3800 !important; }
.item-card .item-price { color: #C8860A !important; }
.item-card .flavor-tag { background: #FFF0D6 !important; color: #C8860A !important; border-color: #F0D9A8 !important; }

/* Menu CTA — dark bg */
.menu-cta { background: #2C1A00 !important; }
.menu-cta .section-eyebrow { color: #C8860A !important; }
.menu-cta h2 { color: #ffffff !important; }
.menu-cta p { color: rgba(255,255,255,0.82) !important; }

/* ===== WHITE TEXT OVERRIDES FOR DARK SECTIONS ===== */
.menu-hero-sub { color: rgba(255,255,255,0.7) !important; }
.menu-stats .mstat-label { color: rgba(255,255,255,0.6) !important; }
.menu-stats .mstat-num { color: #C8860A !important; }

