/*
Theme Name: Lebonade
Template:   storefront
Version:    4.0.0
Description: Lebonade — brand-accurate. Full slab design system.
*/

/* ═══════════════════════════════════════════════════════════
   STAGE 1 — TOKENS + GLOBAL RESET
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600;700&display=swap');

:root {
  --pink:   #E6007E;
  --yellow: #FFE500;
  --cream:  #FFF4E0;
  --black:  #111111;
  --font-display: 'Bebas Neue', 'Anton', sans-serif;
  --font-body:    'Inter', 'Work Sans', sans-serif;
}

/* Box model */
*, *::before, *::after { box-sizing: border-box; }

/* Pink is the ground — nuke every white surface */
html,
body {
  background: var(--pink) !important;
  color: var(--cream);
  font-family: var(--font-body);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--yellow); text-decoration: none; }
a:hover { color: var(--cream); }

/* Kill all Storefront white containers */
.site,
.site-content,
.site-main,
.col-full,
.hentry,
.entry-content,
.page,
.storefront-breadcrumb,
.woocommerce-breadcrumb { background: transparent !important; }

.site-main     { padding: 0 !important; margin: 0 !important; }
.col-full      { padding: 0 !important; max-width: 100% !important; }
.hentry        { margin: 0 !important; }
.entry-content { margin: 0 !important; padding: 0 !important; }

/* Kill ALL Storefront chrome globally */
.storefront-primary-navigation,
.storefront-header-container,
.storefront-product-search,
.site-search,
.site-branding,
.site-header-cart,
#secondary,
.storefront-sidebar,
.storefront-handheld-footer-bar,
.storefront-credit,
.storefront-breadcrumb,
.woocommerce-breadcrumb,
.site-header > .col-full > *:not(.lebonade-header) { display: none !important; }

/* Hide search specifically on homepage */
.home .storefront-product-search,
.home form.woocommerce-product-search,
.page-template-template-home .storefront-product-search,
.page-template-template-home form.woocommerce-product-search { display: none !important; }


/* ═══════════════════════════════════════════════════════════
   STAGE 2 — HEADER + NAV
═══════════════════════════════════════════════════════════ */
.site-header {
  background: var(--pink) !important;
  border-bottom: 2px solid rgba(255,229,0,0.25) !important;
  padding: 0 !important;
  position: sticky;
  top: 0;
  z-index: 200;
}

.lebonade-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
}

.lebonade-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
  line-height: 1;
}
.lebonade-logo:hover { color: var(--cream); }

.lebonade-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.lebonade-nav a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  text-transform: uppercase;
  transition: color 0.15s;
}
.lebonade-nav a:hover { color: var(--cream); }

/* Cart pill */
.lebonade-nav .nav-cart a {
  background: var(--yellow);
  color: var(--pink);
  padding: 6px 16px;
  border-radius: 2px;
}
.lebonade-nav .nav-cart a:hover {
  background: var(--cream);
  color: var(--pink);
}

/* Cart link (standalone — nav links removed) */
.lebonade-cart-link {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--pink);
  padding: 6px 16px;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
}
.lebonade-cart-link:hover { background: var(--cream); color: var(--pink); }

/* Hamburger (kept for mobile fallback) */
.lebonade-hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.lebonade-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--yellow); margin: 5px 0;
}


/* ═══════════════════════════════════════════════════════════
   HERO — solid pink field, mascot left, copy right
   NO split panels. NO ghost text. NO decorative effects.
═══════════════════════════════════════════════════════════ */
.lebonade-hero {
  background: var(--pink);
  padding: 40px 0 60px;
  border-bottom: 2px solid var(--yellow);
  overflow: hidden;
}

.lebonade-hero-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  padding: 0 32px;
  gap: 60px;
}

/* LEFT — mascot height-constrained, width auto, centered in column */
.lebonade-hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: none;
  border: none;
  overflow: hidden;
}
.lebonade-hero-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

/* RIGHT — copy column */
.lebonade-hero-text {
  min-width: 0; /* prevents grid blowout */
}

/* Stack: shrinks to LEBONADE's rendered width; sub-elements expand to fill it */
.hero-text-stack {
  display: flex;
  flex-direction: column;
  width: fit-content;
  max-width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,229,0,0.6);
  margin: 0 0 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* LEBONADE — solid yellow, no effects */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(96px, 12vw, 180px);
  line-height: 0.9;
  color: var(--yellow);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.32em;
  color: var(--yellow);
  text-transform: uppercase;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding: 10px 0;
  width: 100%;
  margin: 0 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-flavours {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 16px;
  flex-wrap: wrap;
}
.hero-flavours span {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-transform: uppercase;
}
.hero-flavours .dot {
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
}

/* "24 × 330ML CANS" — not in template, hide in hero */
.hero-spec {
  display: none;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 62px);
  letter-spacing: 0;
  color: var(--yellow);
  margin: 8px 0 16px;
  line-height: 0.95;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}


/* ═══════════════════════════════════════════════════════════
   BUTTONS — yellow bg / pink text / flat / no radius
═══════════════════════════════════════════════════════════ */
.btn,
.button,
button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-block;
  font-family: var(--font-display) !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.1em !important;
  padding: 13px 32px !important;
  border-radius: 2px !important;
  border: 2px solid transparent !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  transition: background 0.15s, color 0.15s, border-color 0.15s !important;
  background: var(--yellow) !important;
  color: var(--pink) !important;
  line-height: 1 !important;
  font-weight: 400 !important;
}
.btn:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--pink) !important;
  color: var(--yellow) !important;
  border-color: var(--yellow) !important;
}

/* Outline variant (on pink) */
.btn-outline {
  background: transparent !important;
  color: var(--yellow) !important;
  border-color: var(--yellow) !important;
}
.btn-outline:hover {
  background: var(--yellow) !important;
  color: var(--pink) !important;
  border-color: var(--yellow) !important;
}


/* ═══════════════════════════════════════════════════════════
   "WHEN LIFE GIVES YOU LEBOS..." MARQUEE STRIP
   Pulled straight from the slab side panel
═══════════════════════════════════════════════════════════ */
.lebo-tagline-strip {
  background: var(--yellow);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--yellow);
}
.lebo-tagline-strip-inner {
  display: inline-block;
  animation: marquee 18s linear infinite;
}
.lebo-tagline-strip span {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.12em;
  color: var(--pink);
  text-transform: uppercase;
  padding: 0 40px;
}
.lebo-tagline-strip span.sep {
  opacity: 0.5;
  padding: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT CARDS — modelled on slab carton top panel
   Dense composition. No border frame. No inner panel.
   Sits directly on the page's pink field.
═══════════════════════════════════════════════════════════ */
.lebonade-products-strip {
  background: var(--pink);
  padding: 60px 32px;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin: 0 0 40px;
  letter-spacing: 0.04em;
  color: var(--yellow);
  line-height: 0.9;
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

/* Card — 2px yellow border, packaging-style, sits on pink */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border: 2px solid var(--yellow);
  border-radius: 0;
}

/* TOP SECTION — mirrors slab carton top panel */
/* Mascot left, wordmark + info right */
.card-top {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
}

.card-mascot {
  display: flex;
  align-items: flex-end;
}
.card-mascot img {
  width: 110px;
  height: auto;
  display: block;
}

.card-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.card-wordmark {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
}
.card-subtitle {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(255,229,0,0.7);
  text-transform: uppercase;
  display: block;
}
.card-flavours {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(255,229,0,0.45);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* Format badge — yellow block, pink text, matches slab */
.card-format-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  margin-top: 6px;
  border-radius: 2px;
  text-transform: uppercase;
  width: fit-content;
}

/* CAN IMAGE — hidden per revision spec */
.card-can { display: none; }

/* FOOTER — price + CTA, separated by solid yellow divider */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 2px solid var(--yellow);
  margin-top: auto;
}
.card-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.02em;
}
.card-footer .button {
  white-space: nowrap;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   BRAND STORY
═══════════════════════════════════════════════════════════ */
.lebonade-brand-story {
  background: var(--pink);
  padding: 70px 32px;
  border-bottom: 2px solid var(--yellow);
}
.brand-story-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.story-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255,229,0,0.4);
  margin: 0 0 14px;
  display: block;
  text-transform: uppercase;
}
.brand-story-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--yellow);
  margin: 0 0 20px;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}
.brand-story-inner p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.8;
  margin: 0 0 28px;
}
.story-flavours {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 0 32px;
  flex-wrap: wrap;
}
.story-flavours span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--yellow);
  text-transform: uppercase;
}
.story-flavours .dot { color: rgba(255,229,0,0.35); }


/* ═══════════════════════════════════════════════════════════
   WHOLESALE CTA BANNER — yellow field, pink type
═══════════════════════════════════════════════════════════ */
.lebonade-wholesale-banner {
  background: var(--yellow);
  padding: 70px 32px;
  text-align: center;
  border-bottom: 2px solid var(--yellow);
}
.wholesale-banner-inner { max-width: 760px; margin: 0 auto; }

.wholesale-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: rgba(230,0,126,0.5);
  margin: 0 0 16px;
  display: block;
  text-transform: uppercase;
}
.lebonade-wholesale-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--pink);
  margin: 0 0 16px;
  letter-spacing: 0.04em;
  line-height: 0.88;
  text-transform: uppercase;
}
.lebonade-wholesale-banner p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--pink);
  opacity: 0.65;
  margin: 0 0 32px;
  line-height: 1.6;
}
.lebonade-wholesale-banner .button {
  background: var(--pink) !important;
  color: var(--yellow) !important;
  border-color: transparent !important;
}
.lebonade-wholesale-banner .button:hover {
  background: var(--black) !important;
  color: var(--yellow) !important;
}


/* ═══════════════════════════════════════════════════════════
   STAGE 5 — FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer { background: var(--black) !important; padding: 0 !important; }

.lebonade-footer {
  background: var(--black);
  padding: 56px 32px 28px;
}
.lebonade-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,229,0,0.1);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255,229,0,0.3);
  font-style: italic;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-content: flex-start;
  padding-top: 6px;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,229,0,0.45);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--yellow); }

.footer-contact p {
  font-size: 0.8rem;
  color: rgba(255,229,0,0.4);
  line-height: 1.8;
  margin: 0 0 10px;
}
.footer-contact a { color: var(--yellow); font-weight: 600; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,229,0,0.07);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,229,0,0.4);
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s;
}
.footer-social a:hover { background: var(--yellow); color: var(--black); }

.footer-bottom {
  max-width: 1280px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: rgba(255,229,0,0.2);
  letter-spacing: 0.06em;
}


/* ═══════════════════════════════════════════════════════════
   KILL DEFAULT WP/WC CHROME — all pages
   Items 6 & 7: no leaked storefront elements, no doubled footer
═══════════════════════════════════════════════════════════ */
/* Default Storefront header elements */
.site-header .site-branding,
.site-header .site-search,
.site-header .storefront-product-search,
.site-header form.woocommerce-product-search,
.site-header .secondary-navigation,
.site-header .handheld-navigation,
.site-header-cart,
.storefront-handheld-footer-bar,
.woocommerce-store-notice,
/* Default WP/Storefront footer */
.site-info,
.storefront-info,
p.site-info,
.powered-by,
#footer-navigation,
.wc-block-mini-cart__footer,
/* Any extra search/account widgets */
.widget_product_search,
.widget_woocommerce_recently_viewed_products,
.storefront-widget-area { display: none !important; }

/* Ensure the site-footer only renders our custom footer */
.site-footer .lebonade-footer { display: block !important; }


/* ═══════════════════════════════════════════════════════════
   SHOP PAGE (WooCommerce archive)
═══════════════════════════════════════════════════════════ */
body.woocommerce-page .site-main,
body.woocommerce .site-main {
  background: var(--pink) !important;
}

.shop-header {
  background: var(--pink);
  padding: 60px 32px 50px;
  text-align: center;
  border-bottom: 2px solid rgba(255,229,0,0.15);
}
.shop-header h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(3.5rem, 9vw, 7rem) !important;
  color: var(--yellow) !important;
  margin: 0 !important;
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.woocommerce-page .woocommerce,
.woocommerce .woocommerce {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 32px !important;
}

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2px !important;
  margin: 0 !important; padding: 0 !important; list-style: none !important;
}
.woocommerce ul.products li.product {
  background: rgba(255,229,0,0.07) !important;
  border: 2px solid rgba(255,229,0,0.2) !important;
  border-radius: 2px !important;
  overflow: hidden !important;
  float: none !important; width: auto !important; margin: 0 !important; padding: 0 !important;
  transition: border-color 0.15s !important;
}
.woocommerce ul.products li.product:hover { border-color: var(--yellow) !important; }

.woocommerce ul.products li.product img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  background: rgba(0,0,0,0.12);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display) !important;
  font-size: 2rem !important;
  color: var(--yellow) !important;
  padding: 20px 24px 0 !important;
  margin: 0 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
}
.woocommerce ul.products li.product .price {
  font-family: var(--font-display) !important;
  font-size: 2rem !important;
  color: var(--yellow) !important;
  padding: 4px 24px 0 !important;
  display: block !important;
  opacity: 0.75;
}
.woocommerce ul.products li.product .button {
  display: block !important;
  margin: 16px 24px 24px !important;
  text-align: center !important;
  width: calc(100% - 48px) !important;
}


/* ═══════════════════════════════════════════════════════════
   SINGLE PRODUCT
═══════════════════════════════════════════════════════════ */
.single-product .woocommerce {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px !important;
}
.woocommerce div.product {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: start !important;
}
.woocommerce div.product .woocommerce-product-gallery {
  background: rgba(0,0,0,0.12);
  border-radius: 2px;
  padding: 40px;
}
.woocommerce div.product .product_title {
  font-family: var(--font-display) !important;
  font-size: clamp(3rem, 5vw, 5rem) !important;
  color: var(--yellow) !important;
  margin: 0 0 8px !important;
  letter-spacing: 0.04em !important;
  line-height: 0.9 !important;
}
.woocommerce div.product p.price {
  font-family: var(--font-display) !important;
  font-size: 3rem !important;
  color: var(--yellow) !important;
  margin: 0 0 24px !important;
  opacity: 0.8;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--cream);
  margin-bottom: 28px;
}


/* ═══════════════════════════════════════════════════════════
   WHOLESALE PAGE
═══════════════════════════════════════════════════════════ */
.page-template-template-wholesale .site-main { background: var(--pink) !important; }

.wholesale-hero {
  background: var(--pink);
  padding: 80px 32px 70px;
  text-align: center;
  border-bottom: 2px solid rgba(255,229,0,0.15);
}
.wholesale-hero .hero-eyebrow { color: rgba(255,229,0,0.5); margin-bottom: 16px; }
.wholesale-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  color: var(--yellow);
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 0.9;
}
.wholesale-hero-sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: rgba(255,229,0,0.5);
  margin: 16px 0 0;
  text-transform: uppercase;
}

.wholesale-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 32px 80px;
}
.wholesale-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--cream);
  margin-bottom: 16px;
  opacity: 0.85;
}
.wholesale-body h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}

/* CF7 on pink */
.wpcf7 label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,229,0,0.5);
  margin: 20px 0 6px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,229,0,0.2);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  transition: border-color 0.15s;
}
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.wpcf7 select option { background: #111; color: var(--cream); }
.wpcf7 input[type="submit"] {
  margin-top: 28px !important;
  width: 100% !important;
  font-size: 1.3rem !important;
  padding: 18px !important;
}


/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.about-hero {
  background: var(--pink);
  padding: 100px 32px;
  text-align: center;
  border-bottom: 2px solid rgba(255,229,0,0.15);
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--yellow);
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 0.88;
}
.about-story {
  background: var(--pink);
  padding: 80px 32px;
}
.about-story-inner {
  max-width: 720px;
  margin: 0 auto;
}
.about-story p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--cream);
  margin-bottom: 20px;
}
.ingredients-card {
  background: rgba(0,0,0,0.15);
  border-left: 4px solid var(--yellow);
  border-radius: 2px;
  padding: 36px 40px;
  margin: 48px auto;
  text-align: center;
}
.ingredients-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--yellow);
  margin: 0 0 12px;
  letter-spacing: 0.12em;
}
.ingredients-card p { font-size: 0.9rem; color: var(--cream); opacity: 0.7; margin: 0 0 6px; }
.ingredients-card .nutritional { font-size: 0.78rem; color: rgba(255,244,224,0.4); margin-top: 10px; }


/* ═══════════════════════════════════════════════════════════
   CART + CHECKOUT
═══════════════════════════════════════════════════════════ */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px !important;
}
.woocommerce table.shop_table { border-collapse: collapse; width: 100%; }
.woocommerce table.shop_table th {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.2);
  color: var(--yellow);
  padding: 12px 16px;
  text-align: left;
}
.woocommerce table.shop_table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255,229,0,0.1);
  color: var(--cream);
}
.woocommerce h3 {
  font-family: var(--font-display) !important;
  font-size: 1.8rem !important;
  letter-spacing: 0.06em !important;
  color: var(--yellow) !important;
}
.woocommerce form .form-row label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,229,0,0.55);
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select {
  background: rgba(0,0,0,0.2) !important;
  border: 1px solid rgba(255,229,0,0.2) !important;
  border-radius: 2px !important;
  padding: 10px 14px !important;
  font-size: 0.95rem !important;
  color: var(--cream) !important;
  transition: border-color 0.15s !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--yellow) !important;
  outline: none !important;
}


/* ═══════════════════════════════════════════════════════════
   LEGAL / STANDARD PAGES
═══════════════════════════════════════════════════════════ */
.page .site-main {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 32px !important;
}
.entry-content h1, .entry-content h2 {
  font-family: var(--font-display);
  color: var(--yellow);
  letter-spacing: 0.04em;
  line-height: 0.95;
}
.entry-content p, .entry-content li {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--cream);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .lebonade-hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 0;
  }
  .lebonade-hero-image {
    padding: 40px 0 0;
    justify-content: center;
  }
  .lebonade-hero-image img { max-height: 260px; }
  .lebonade-hero-text {
    padding: 32px 0 56px;
    text-align: center;
  }
  .hero-eyebrow { white-space: normal; }
  .hero-title { white-space: normal; font-size: clamp(3.5rem, 15vw, 6rem); }
  .hero-subtitle { white-space: normal; }
  .hero-flavours { justify-content: center; }
  .hero-ctas { justify-content: center; }

  .product-cards-grid { grid-template-columns: 1fr; max-width: 480px; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; max-width: 480px; margin: 0 auto !important; }
  .woocommerce div.product { grid-template-columns: 1fr !important; gap: 32px !important; }

  .lebonade-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .lebonade-nav { display: none; }
  .lebonade-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--pink);
    padding: 20px 32px;
    gap: 14px;
    z-index: 200;
    border-top: 2px solid rgba(255,229,0,0.2);
  }
  .lebonade-hamburger { display: block; }
  .lebonade-header { position: relative; }
}

@media (max-width: 480px) {
  .lebonade-header { padding: 0 20px; }
  .hero-ctas .button { width: 100%; text-align: center; }
  .wholesale-body { padding: 40px 20px 60px; }
  .lebo-tagline-strip span { font-size: 1.2rem; }
}


/* ═══════════════════════════════════════════════════════════
   MOBILE OVERRIDES — Revision 4 (≤768px)
   EVERY rule in this block is mobile-only.
   Desktop (≥769px) is completely unaffected.
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── 1. Hero ─────────────────────────────────────────── */

  /* Reduce hero bottom padding so products follow tightly */
  .lebonade-hero { padding-bottom: 40px; }

  /* Mascot: max 220px, centred */
  .lebonade-hero-image img {
    max-width: 220px;
    max-height: none;
  }

  /* Stack container: full width, children centred */
  .hero-text-stack {
    width: 100%;
    align-items: center;
  }

  /* LEBONADE wordmark: single line, mobile-sized */
  .hero-title {
    font-size: clamp(72px, 18vw, 110px);
    text-align: center;
    white-space: nowrap;
  }

  /* "AUTHENTIC LEBANESE LEMONADE":
     override space-between → natural centering;
     yellow border-rules at 80% width */
  .hero-subtitle {
    font-size: 13px;
    letter-spacing: 0.22em;
    justify-content: center;
    gap: 0.4em;
    width: 80%;
    white-space: nowrap;
  }

  /* Flavour trinity: natural word spacing, centred, single line */
  .hero-flavours {
    justify-content: center;
    gap: 0.4em;
    width: auto;
    flex-wrap: nowrap;
  }
  .hero-flavours span,
  .hero-flavours .dot {
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  /* "WHEN LIFE GIVES YOU LEBOS…": centred, can wrap to 2 lines */
  .hero-tagline {
    font-size: clamp(28px, 7vw, 40px);
    justify-content: center;
    gap: 0.3em;
    text-align: center;
    width: auto;
  }

  /* SHOP NOW: centred, natural width (not full-width) */
  .hero-ctas { justify-content: center; }
  .hero-ctas .button {
    width: auto !important;
    text-align: center;
  }

  /* ── 2. Marquee ──────────────────────────────────────── */
  .lebo-tagline-strip { padding: 12px 0; overflow: hidden; }
  .lebo-tagline-strip span { font-size: 20px; }

  /* ── 3. Products section: no gap above ──────────────── */
  .lebonade-products-strip { padding-top: 40px; }

  /* ── 4. Product cards: vertical layout ──────────────── */
  .card-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .card-mascot { justify-content: center; }
  .card-mascot img {
    width: auto;
    max-width: 140px;
  }
  .card-brand {
    align-items: center;
    text-align: center;
  }
  .card-wordmark { text-align: center; width: 100%; }
  .card-subtitle {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-align: center;
  }
  .card-flavours {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-align: center;
  }
  .card-format-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .card-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  /* ── 6. Story flavour trinity: one line ─────────────── */
  .story-flavours {
    flex-wrap: nowrap;
  }
  .story-flavours span,
  .story-flavours .dot {
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  /* ── 7. Story bottom padding ─────────────────────────── */
  .lebonade-brand-story { padding-bottom: 40px; }

  /* ── 8. Footer mobile styling ────────────────────────── */
  .footer-logo {
    font-size: clamp(64px, 14vw, 96px);
    text-decoration: none;
    color: var(--yellow);
    line-height: 1;
  }
  .footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--yellow);
    background: transparent;
    color: var(--yellow);
    border-radius: 2px;
  }
  .footer-social a svg {
    width: 20px;
    height: 20px;
  }
  .footer-nav a {
    text-decoration: none;
    color: var(--cream);
  }
  .footer-nav a:hover { color: var(--yellow); }
  .footer-bottom {
    font-family: var(--font-display);
    color: var(--yellow);
    text-align: center;
    justify-content: center;
    letter-spacing: 0.06em;
    font-size: 0.65rem;
  }
}
