/* =============================================================
   OUYE CHILD THEME — MAIN STYLESHEET v4.0
   Brand: PT Ouye Drink Food
   Design: Fully rounded, organic, animated, parallax
   Fonts: Fredoka (display) + Nunito (body)
   ============================================================= */

/* ── CSS Variables ───────────────────────────────────────────── */
:root {
  --red:           #E8281E;
  --red-dark:      #B01E15;
  --red-light:     #FF5733;
  --yellow:        #FFD600;
  --black:         #1A1A1A;
  --dark:          #222222;
  --white:         #FFFFFF;
  --warm-white:    #FFF8F4;
  --gray:          #F5F5F5;
  --gray-mid:      #E0E0E0;
  --text-dark:     #2D2D2D;
  --text-mid:      #666666;
  --gradient-red:  linear-gradient(135deg, #E8281E 0%, #FF5733 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.16);
  --shadow-red:    0 8px 32px rgba(232,40,30,0.30);
  --shadow-red-lg: 0 20px 60px rgba(232,40,30,0.35);

  /* ── Rounded-everything radii ── */
  --radius-card:   40px;
  --radius-pill:   100px;
  --radius-xl:     60px;
  --radius-lg:     32px;
  --radius-md:     20px;
  --radius-sm:     12px;

  --font-display:  'Fredoka', sans-serif;
  --font-body:     'Nunito', sans-serif;
  --transition:    all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.ouye-theme {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── Astra header/footer suppression ────────────────────────── */
body.ouye-theme #masthead,
body.ouye-theme .site-header,
body.ouye-theme .ast-header-break-point,
body.ouye-theme #ast-fixed-footer,
body.ouye-theme .site-footer,
body.ouye-theme #colophon,
body.ouye-theme .astra-breadcrumbs,
body.ouye-theme .entry-header,
body.ouye-theme .ast-page-title-bar,
body.ouye-theme #page > .ast-container > aside { display: none !important; }

body.ouye-theme #page,
body.ouye-theme .site-content,
body.ouye-theme #content,
body.ouye-theme .ast-container { padding: 0 !important; margin: 0 !important; max-width: 100% !important; }

body.ouye-theme .ouye-page { min-height: 100vh; }

/* ── Page Fade Transition ────────────────────────────────────── */
.ouye-page {
  animation: pageFadeIn 0.5s ease forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* transform removed — any transform on an ancestor breaks position:fixed
   for nav + mobile-menu, making them appear off-screen or unclickable */

body.page-exit { opacity: 0; transform: translateY(-12px); transition: opacity 0.4s ease, transform 0.4s ease; }

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal         { transform: translateY(40px); }
.reveal-left    { transform: translateX(-50px); }
.reveal-right   { transform: translateX(50px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.15s; }
.d3 { transition-delay: 0.25s; }
.d4 { transition-delay: 0.35s; }
.d5 { transition-delay: 0.45s; }

/* ── Skip Link ───────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--red);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ════════════════════════════════════════════════════════════════
   NAV — Floating Pill
   ════════════════════════════════════════════════════════════════ */
#ouye-nav {
  position: fixed;
  top: 16px;
  left: 5%;
  right: 5%;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1000;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 10px 20px 10px 28px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, top 0.4s ease;
}

/* On hero (top) stays glassy */
#ouye-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.12);
  border-color: rgba(232,40,30,0.10);
  top: 12px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  transition: color 0.3s;
}
.nav-logo span { color: var(--yellow); }

#ouye-nav.scrolled .nav-logo { color: var(--black); }

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-right: 0;
}

.nav-links li { list-style: none; }

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

#ouye-nav.scrolled .nav-links a { color: var(--text-dark); }

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current-page-ancestor > a {
  background: rgba(232,40,30,0.12);
  color: var(--red);
}

/* Language switcher */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.nav-cta {
  padding: 9px 20px;
  font-size: 0.88rem;
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 4px;
  transition: var(--transition);
}

#ouye-nav.scrolled .hamburger span { background: var(--black); }

/* Mobile menu (fullscreen overlay) */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  border-radius: 0;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(232,40,30,0.15);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  pointer-events: none;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.mobile-close:hover { background: var(--red); }

.mobile-menu a,
.mobile-menu .mobile-nav-list a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.5px;
  transition: color 0.3s;
  text-transform: uppercase;
}
.mobile-menu a:hover,
.mobile-menu .mobile-nav-list a:hover { color: var(--yellow); }

.mobile-menu .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.mobile-menu .mobile-nav-list li { list-style: none; }
.mobile-menu .current-menu-item > a { color: var(--yellow); }

/* ════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-pill-red {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-pill-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-lg);
}

.btn-pill-white {
  background: #fff;
  color: var(--red);
  box-shadow: var(--shadow-md);
}
.btn-pill-white:hover {
  background: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-pill-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-pill-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════════
   SECTION LABELS & TITLES
   ════════════════════════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,40,30,0.10);
  color: var(--red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-label.light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
}

.section-label.dark-pill {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--black);
  letter-spacing: -0.02em;
}
.section-title.white { color: #fff; }
.section-title .accent { color: var(--red); }
.section-title .accent-yellow { color: var(--yellow); }
.section-title.white .accent-yellow { color: var(--yellow); }

.accent       { color: var(--red); }
.accent-yellow { color: var(--yellow); }

.section-rule {
  height: 4px;
  width: 60px;
  border: none;
  background: var(--red);
  border-radius: var(--radius-pill);
  margin: 1.25rem 0;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.80;
  color: var(--text-mid);
  max-width: 560px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
}

/* Wave divider */
.wave-divider svg {
  width: 100%;
  display: block;
}

/* ════════════════════════════════════════════════════════════════
   FLOATING FOOD EMOJIS
   ════════════════════════════════════════════════════════════════ */
.float-food {
  position: absolute;
  font-size: clamp(2rem, 4vw, 3.5rem);
  pointer-events: none;
  z-index: 3;
  will-change: transform;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
  animation: floatSine 4s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

@keyframes floatSine {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-16px) rotate(5deg); }
  66%       { transform: translateY(8px) rotate(-3deg); }
}

/* ════════════════════════════════════════════════════════════════
   HERO — Section 1
   ════════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: -15%;
  will-change: transform;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.80) 0%,
    rgba(232,40,30,0.35) 60%,
    rgba(26,26,26,0.70) 100%
  );
  z-index: 1;
}

/* Blob decorations in hero */
#hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(ellipse, rgba(232,40,30,0.20) 0%, transparent 70%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  z-index: 2;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: clamp(200px, 35vw, 400px);
  height: clamp(200px, 35vw, 400px);
  background: radial-gradient(ellipse, rgba(255,214,0,0.12) 0%, transparent 70%);
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 5;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 5% 160px; /* 160px bottom clears carousel-nav at bottom:96px */
}

/* Hero content — left */
.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  width: fit-content;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-headline .line-yellow { color: var(--yellow); }

/* Word-by-word animation */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: wordReveal 0.7s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.80;
  color: rgba(255,255,255,0.80);
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero visual — right */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-block {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-card);
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  max-width: 340px;
  width: 100%;
  animation: heroCardFloat 5s ease-in-out infinite;
  box-shadow: 0 24px 80px rgba(0,0,0,0.30);
}

@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

.hero-logo-text {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(232,40,30,0.4);
}

.hero-logo-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-weight: 600;
}

.hero-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-cert {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
}

/* Hero wave divider */
.hero-wave {
  position: relative;
  z-index: 4;
  margin-top: -2px;
  flex-shrink: 0;
}

.hero-wave svg { width: 100%; display: block; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg) translateY(-2px);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%       { transform: translateY(6px); opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════
   STATS STRIP — Section 2
   ════════════════════════════════════════════════════════════════ */
#stats-strip {
  background: var(--gradient-red);
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

#stats-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 0 4rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.stat-circle {
  width: clamp(120px, 18vw, 160px);
  height: clamp(120px, 18vw, 160px);
  background: rgba(255,255,255,0.15);
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.stat-circle:hover { transform: scale(1.05); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════
   ABOUT TEASER — Section 3
   ════════════════════════════════════════════════════════════════ */
#about-teaser {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Blob background decoration */
#about-teaser::before {
  content: '';
  position: absolute;
  top: -5%;
  right: 0;
  width: 45%;
  height: 70%;
  background: rgba(232,40,30,0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  pointer-events: none;
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Photo stack */
.about-photo-stack {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.about-photo-main {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 100%;
}
.about-photo-main img { width: 100%; height: 400px; object-fit: cover; }

.about-photo-badge {
  position: absolute;
  bottom: -20px;
  left: -10px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  animation: heroCardFloat 4s ease-in-out infinite;
  animation-delay: 1s;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* Text side */
.about-teaser-text { display: flex; flex-direction: column; gap: 0; }

/* Story badges */
.story-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.story-badge {
  background: var(--warm-white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ════════════════════════════════════════════════════════════════
   PRODUCTS TEASER — Section 4
   ════════════════════════════════════════════════════════════════ */
#products-teaser {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#products-teaser::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(232,40,30,0.12) 0%, transparent 65%);
  border-radius: 40% 60% 70% 30% / 50% 60% 30% 70%;
  pointer-events: none;
}

.products-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

/* Product cards */
.prod-teaser-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.prod-teaser-card:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,0.25); }

.prod-teaser-card.live { background: var(--gradient-red); }
.prod-teaser-card.dark { background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.08); }

.prod-img-bg {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.prod-img-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prod-teaser-card:hover .prod-img-bg img { transform: scale(1.06); }

.prod-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.prod-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.prod-card-content p { font-size: 0.95rem; color: rgba(255,255,255,0.78); line-height: 1.65; }

/* Live badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
  width: fit-content;
}

/* Photo grid inside coming-soon card */
.photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.photo-grid-item { border-radius: 12px; overflow: hidden; height: 100px; }
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; }

.coming-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.coming-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding-left: 1rem;
  position: relative;
}
.coming-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
}

/* ════════════════════════════════════════════════════════════════
   WHO WE SERVE — Section 5
   ════════════════════════════════════════════════════════════════ */
#serve-strip {
  position: relative;
  overflow: hidden;
  background: var(--red);
  padding: 0;
}

.serve-bg-img {
  position: absolute;
  inset: -15%;
  z-index: 0;
  will-change: transform;
}
.serve-bg-img img { width: 100%; height: 100%; object-fit: cover; }

.serve-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,40,30,0.88) 0%, rgba(176,30,21,0.80) 100%);
  z-index: 1;
}

/* Cover-block version inner container */
#serve-strip .wp-block-cover__inner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
  text-align: center;
  width: 100%;
}

.serve-strip-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
  text-align: center;
}

.serve-strip-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
}

.serve-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.serve-item {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  min-width: 150px;
  flex: 0 1 180px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.serve-item:hover { transform: translateY(-8px); background: rgba(255,255,255,0.20); }

.s-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.serve-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.serve-item p { font-size: 0.80rem; color: rgba(255,255,255,0.70); }

/* ════════════════════════════════════════════════════════════════
   WHY OU-YE — Section 6
   ════════════════════════════════════════════════════════════════ */
#why-ouye {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

#why-ouye::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 70%;
  background: rgba(255,214,0,0.06);
  border-radius: 60% 40% 30% 70% / 40% 50% 60% 50%;
  pointer-events: none;
}

.why-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem;
  align-items: start;
}

.why-features { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2rem; }

.why-feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.why-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-red);
}

.why-feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.35rem;
}
.why-feature-text p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.70; }

/* Grow card */
.grow-card {
  background: var(--gradient-red);
  border-radius: var(--radius-card);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-red-lg);
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
}

.grow-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.08);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  pointer-events: none;
}

.grow-card-emoji { font-size: 4rem; line-height: 1; }

.grow-card-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
}
.grow-card-title span { color: var(--yellow); }

.grow-card-desc { font-size: 0.95rem; color: rgba(255,255,255,0.80); line-height: 1.75; }

/* ════════════════════════════════════════════════════════════════
   CTA BANNER — Section 7
   ════════════════════════════════════════════════════════════════ */
#cta-banner {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(232,40,30,0.12) 0%, transparent 65%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  pointer-events: none;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.cta-title span { color: var(--yellow); }

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.80;
  max-width: 560px;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
#ouye-footer {
  background: var(--black);
  position: relative;
  overflow: hidden;
  margin-top: 0;
  z-index: 1;
}

#ouye-footer::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(232,40,30,0.08) 0%, transparent 65%);
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  pointer-events: none;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5% 2rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.footer-brand-name span { color: var(--yellow); }

.footer-brand-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  transition: var(--transition);
}
.footer-social-link:hover { background: var(--red); color: #fff; border-color: var(--red); }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { list-style: none; }

.footer-links a {
  font-size: 0.90rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a::before { content: '→'; color: var(--red); font-size: 0.8rem; }
.footer-links a:hover   { color: rgba(255,255,255,0.9); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-list li a:hover { color: rgba(255,255,255,0.9); }
.footer-contact-list .icon { font-size: 1rem; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-certs { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.footer-cert-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════════
   PAGE HERO (About/Products/Contact)
   ════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: clamp(350px, 55vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.page-hero-bg {
  position: absolute;
  inset: -15%;
  will-change: transform;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.85) 0%,
    rgba(232,40,30,0.45) 70%,
    rgba(26,26,26,0.75) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 3.5rem;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.3s; }
.page-hero-breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.page-hero-breadcrumb span[aria-current="page"] { color: rgba(255,255,255,0.90); font-weight: 600; }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.page-hero-title span { color: var(--yellow); }

/* ════════════════════════════════════════════════════════════════
   ABOUT PAGE SPECIFIC
   ════════════════════════════════════════════════════════════════ */
#about-story { background: var(--warm-white); padding: 5rem 5%; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
}

#what-we-do { background: var(--gray); padding: 5rem 5%; }

.wwd-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.wwd-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.wwd-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.wwd-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.wwd-icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(232,40,30,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.wwd-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray-mid);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.wwd-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.wwd-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.70; }

#vision-mission { background: var(--black); padding: 5rem 5%; }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.vm-card {
  border-radius: var(--radius-card);
  padding: 3rem;
  position: relative;
}

.vm-card.vision {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
}

.vm-card.mission {
  background: var(--gradient-red);
  box-shadow: var(--shadow-red-lg);
}

.vm-tag {
  display: inline-flex;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.vm-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.vm-card p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.75; }

.mission-list { display: flex; flex-direction: column; gap: 0.75rem; }
.mission-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
}
.mission-list li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════════
   PRODUCTS PAGE SPECIFIC
   ════════════════════════════════════════════════════════════════ */
#current-product { background: var(--black); padding: 5rem 5%; }

.current-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.product-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }

.product-tag {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.04em;
}

.product-img-wrap { position: relative; }

.product-img-main {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.40);
}
.product-img-main img { width: 100%; height: 420px; object-fit: cover; }

.product-float-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-card);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

#coming-soon { background: var(--warm-white); padding: 5rem 5%; }

.coming-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }

.coming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.coming-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.coming-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.coming-card-img { height: 200px; overflow: hidden; }
.coming-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.coming-card:hover .coming-card-img img { transform: scale(1.06); }

.coming-card-body { padding: 1.75rem; }

.soon-tag {
  display: inline-flex;
  background: rgba(232,40,30,0.08);
  color: var(--red);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.coming-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.coming-card-body p { font-size: 0.90rem; color: var(--text-mid); line-height: 1.65; }

#oem-section { background: var(--black); padding: 5rem 5%; }

.oem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.oem-callout {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
  padding: 2.5rem;
}

.oem-callout h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.oem-checklist { display: flex; flex-direction: column; gap: 0.85rem; }
.oem-checklist li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
}
.oem-checklist li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

#distribution { background: var(--gray); padding: 5rem 5%; }

.dist-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.dist-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease;
}
.dist-card:hover { transform: translateY(-6px); }

.dist-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.dist-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--black); margin-bottom: 0.75rem; }
.dist-card p  { font-size: 0.90rem; color: var(--text-mid); line-height: 1.70; }

#growth-plan { background: var(--black); padding: 5rem 5%; }

.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.growth-card {
  border-radius: var(--radius-card);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.growth-card.short {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
}
.growth-card.long {
  background: var(--gradient-red);
  box-shadow: var(--shadow-red-lg);
}

.growth-card h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}
.growth-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.growth-card p { font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.75; }

.city-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.city-pill {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.50);
}
.city-pill.active {
  background: rgba(232,40,30,0.20);
  border-color: var(--red);
  color: #fff;
}
.city-arrow { color: rgba(255,255,255,0.30); font-size: 1.2rem; margin: 0; }
.city-arrow p { margin: 0; }
.city-pill-yellow {
  background: rgba(255,214,0,0.15);
  color: var(--yellow);
  border-color: rgba(255,214,0,0.3);
}

/* Cover block hero (replaces old .page-hero raw HTML) */
.ouye-page-hero {
  padding-top: 64px; /* account for fixed nav */
}
.ouye-page-hero .wp-block-cover__inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 3rem;
  min-height: 480px;
  gap: 0.75rem;
}
.ouye-page-hero .wp-block-cover__inner-container p,
.ouye-page-hero .wp-block-cover__inner-container h1 {
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   CONTACT PAGE SPECIFIC
   ════════════════════════════════════════════════════════════════ */
#contact-main { background: var(--warm-white); padding: 5rem 5%; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,40,30,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-card-text { display: flex; flex-direction: column; gap: 2px; }
.contact-card-text strong { font-weight: 700; font-size: 0.90rem; color: var(--black); }
.contact-card-text span  { font-size: 0.88rem; color: var(--text-mid); }

/* Contact form */
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,40,30,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.form-submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
  margin-top: 0.5rem;
}
.form-submit-btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red-lg); }
.form-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-success,
.form-error {
  margin-top: 1rem;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.90rem;
  display: none;
}
.form-success { background: rgba(76,175,80,0.12); color: #2e7d32; }
.form-error   { background: rgba(232,40,30,0.10); color: var(--red); }

#cert-strip { background: var(--black); padding: 5rem 5%; }

.cert-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.cert-badge {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 140px;
  flex: 0 1 180px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.cert-badge:hover { transform: translateY(-6px); background: rgba(255,255,255,0.10); }

.cert-badge-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cert-badge h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.cert-badge p { font-size: 0.80rem; color: rgba(255,255,255,0.50); }

/* ════════════════════════════════════════════════════════════════
   CONTACT INFO HEADING
   ════════════════════════════════════════════════════════════════ */
.contact-info {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.15;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 2rem; padding: 100px 5% 150px; }
  .hero-visual      { display: none; }
  .wwd-cards        { grid-template-columns: 1fr 1fr; }
  .dist-cards       { grid-template-columns: 1fr 1fr; }
  .vm-grid          { grid-template-columns: 1fr; }
  .growth-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .about-teaser-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .about-story-grid     { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 5%; }
  .products-teaser-grid { grid-template-columns: 1fr; }
  .why-grid             { grid-template-columns: 1fr; }
  .current-product-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .oem-grid             { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top           { grid-template-columns: 1fr 1fr; }
  .stats-row            { grid-template-columns: 1fr 1fr 1fr; }

  /* Reduce section padding when stacked */
  #about-teaser .about-teaser-grid { padding: 3.5rem 5%; }
  #about-story                     { padding: 0; }

  /* Photo stack: left-align + clip overflow so badge can't leak below */
  .about-photo-stack {
    justify-content: flex-start;
    overflow: hidden;
    border-radius: var(--radius-card);
  }

  /* Badge: move inside photo bounds so it doesn't overlap title below */
  .about-photo-badge {
    bottom: 12px;
    left: 12px;
    width: 80px;
    height: 80px;
  }
  .about-photo-badge .badge-num { font-size: 1.1rem; }

  /* Photo height: reduce on tablet */
  .about-photo-main img { height: 300px; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger            { display: flex; }
  #ouye-nav             { padding: 10px 16px; }

  .stats-row            { grid-template-columns: 1fr; gap: 1rem; }
  .stat-circle          { width: 120px; height: 120px; }
  .wwd-cards            { grid-template-columns: 1fr; }
  .dist-cards           { grid-template-columns: 1fr; }
  .coming-grid          { grid-template-columns: 1fr; gap: 1.25rem; padding: 0 4%; }
  .coming-card          { margin-bottom: 0.25rem; }
  .coming-card-body     { padding: 1.25rem; }

  .footer-top           { grid-template-columns: 1fr; }
  .footer-bottom        { flex-direction: column; align-items: flex-start; }

  .hero-headline        { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .page-hero-title      { font-size: clamp(2rem, 7vw, 3rem); }
  .section-title        { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .cta-title            { font-size: clamp(2rem, 8vw, 3.5rem); }

  .about-photo-main img { height: 240px; }
  .product-img-main img { height: 280px; }
  .contact-form-card    { padding: 2rem 1.5rem; }

  /* About teaser & story — tighter padding on mobile */
  #about-teaser .about-teaser-grid { padding: 2.5rem 4%; }
  .about-story-grid                { padding: 2.5rem 4%; gap: 1.5rem; }

  /* Keep badge inside photo bounds on small screens */
  /* Hide badge on small phones — avoids any overlap with title below */
  .about-photo-badge { display: none; }

  .serve-items          { gap: 1rem; }
  .serve-item           { flex: 0 1 calc(50% - 0.5rem); min-width: 130px; }
}

@media (max-width: 400px) {
  .serve-item { flex: 0 1 100%; }
  .coming-card-img { height: 160px; }
}

/* ════════════════════════════════════════════════════════════════
   HERO CAROUSEL
   ════════════════════════════════════════════════════════════════ */

.hero-carousel {
  position: relative;
  flex: 1;
  min-height: 82vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.03);
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* Slide overlay variants */
.hero-overlay-amber {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.82) 0%,
    rgba(200,80,20,0.42) 55%,
    rgba(26,26,26,0.75) 100%
  );
  z-index: 1;
}

.hero-overlay-green {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,30,20,0.88) 0%,
    rgba(20,80,50,0.45) 55%,
    rgba(26,26,26,0.80) 100%
  );
  z-index: 1;
}

/* Carousel navigation */
.carousel-nav {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.12);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-dot.active {
  background: #fff;
  width: 28px;
}

/* Auto-play progress bar */
.carousel-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  z-index: 10;
  width: 0%;
}

/* ── Slide 2: Product Card ──────────────────────────────── */
.hero-product-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  max-width: 340px;
  width: 100%;
  animation: heroCardFloat 5s ease-in-out infinite;
  box-shadow: 0 24px 80px rgba(0,0,0,0.30);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.hero-product-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero-product-features li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Slide 3: Partner Card ──────────────────────────────── */
.hero-partner-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  max-width: 340px;
  width: 100%;
  animation: heroCardFloat 5s ease-in-out infinite;
  animation-delay: 0.8s;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.partner-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
.partner-card-title span { color: var(--yellow); }

.partner-serve-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.partner-serve-list div {
  font-size: 0.90rem;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Yellow pill button */
.btn-pill-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(255,214,0,0.30);
  font-weight: 800;
}
.btn-pill-yellow:hover {
  background: #F0CB00;
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(255,214,0,0.40);
}

/* ════════════════════════════════════════════════════════════════
   MARQUEE STRIP
   ════════════════════════════════════════════════════════════════ */

.marquee-strip {
  background: var(--red);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.75rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-sep {
  color: var(--yellow);
  font-size: 0.7rem;
  margin-left: 0.5rem;
}

/* ════════════════════════════════════════════════════════════════
   ENHANCED ANIMATIONS
   ════════════════════════════════════════════════════════════════ */

/* Glow ripple on active stat circles */
@keyframes statGlow {
  0%, 100% { box-shadow: 0 8px 40px rgba(255,255,255,0.12), 0 0 0 0 rgba(255,255,255,0.15); }
  50%       { box-shadow: 0 8px 40px rgba(255,255,255,0.20), 0 0 0 12px rgba(255,255,255,0); }
}
.stat-circle {
  animation: statGlow 3.5s ease-in-out infinite;
}

/* CTA button glow pulse */
@keyframes ctaGlow {
  0%, 100% { box-shadow: var(--shadow-red); }
  50%       { box-shadow: 0 12px 48px rgba(232,40,30,0.55); }
}
#cta-banner .btn-pill-red {
  animation: ctaGlow 2.5s ease-in-out infinite;
}

/* Why-num pop on reveal */
.why-feature.visible .why-num {
  animation: numPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes numPop {
  from { transform: scale(0.4) rotate(-20deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
.why-feature.d1.visible .why-num { animation-delay: 0.05s; }
.why-feature.d2.visible .why-num { animation-delay: 0.15s; }
.why-feature.d3.visible .why-num { animation-delay: 0.25s; }
.why-feature.d4.visible .why-num { animation-delay: 0.35s; }
.why-feature.d5.visible .why-num { animation-delay: 0.45s; }

/* Serve item emoji bounce on hover */
.serve-item:hover .s-icon {
  animation: iconBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes iconBounce {
  0%   { transform: scale(1) rotate(0deg); }
  40%  { transform: scale(1.3) rotate(-8deg); }
  70%  { transform: scale(0.95) rotate(4deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Grow card shimmer overlay */
.grow-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.06) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: cardShimmer 4s ease-in-out infinite;
  border-radius: inherit;
  pointer-events: none;
}
@keyframes cardShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ── Responsive: carousel ───────────────────────────────── */
@media (max-width: 1024px) {
  .hero-product-card,
  .hero-partner-card { max-width: 280px; padding: 2rem; }
}

@media (max-width: 768px) {
  /* Hide floating emojis — they overlap text on mobile */
  .float-food { display: none; }

  /* Reduce hero padding — bottom must clear carousel-nav at bottom:72px */
  .hero-inner {
    padding: 90px 5% 140px;
    gap: 1.25rem;
  }

  /* Smaller headline on mobile */
  .hero-headline {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    line-height: 1.1;
  }

  /* Slightly smaller eyebrow & description */
  .hero-eyebrow { font-size: 0.78rem; padding: 6px 14px; }
  .hero-desc    { font-size: 0.95rem; line-height: 1.65; }

  /* Stack CTAs vertically */
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Tighten carousel nav */
  .carousel-nav  { bottom: 72px; gap: 0.5rem; }
  .carousel-btn  { width: 36px; height: 36px; }
  .hero-product-card,
  .hero-partner-card { display: none; }
  .carousel-dot  { width: 6px; height: 6px; }
  .carousel-dot.active { width: 22px; }
  .marquee-item  { font-size: 0.75rem; padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  /* Extra-small phones — carousel-nav at bottom:60px so pad 130px */
  .hero-inner { padding: 80px 4% 130px; }
  .hero-headline { font-size: clamp(1.6rem, 9vw, 2.4rem); }
  .hero-desc { font-size: 0.88rem; }
  .carousel-nav { bottom: 60px; }
}

/* ── Native Block Pattern Helpers ─────────────────────────────
   Styles needed when sections are built from wp:heading / wp:paragraph
   native blocks instead of raw HTML with inline styles.
   ──────────────────────────────────────────────────────────── */

/* Dark-section product heading (current-product) */
.product-section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

/* Dark-section OEM heading */
.oem-section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}

/* Product description paragraph on dark background */
.product-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 1.5rem;
}

/* OEM description paragraph on dark background */
.oem-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
  max-width: 480px;
  margin-bottom: 2rem;
}

/* Product tag pills — rendered as <p> via wp:paragraph */
p.product-tag  { margin: 0; }

/* Soon tag pills — rendered as <p> via wp:paragraph */
p.soon-tag     { margin: 0; }

/* Prevent WP block default list bullets on OEM checklist */
ul.wp-block-list.oem-checklist { list-style: none; padding-left: 0; }

/* Stat number/label paragraphs — reset margins inside stat circle */
.stat-circle p { margin: 0; }

/* Why-feature number — rendered as <p> via wp:paragraph */
.why-num.wp-block-paragraph,
p.why-num { margin: 0; }

/* ════════════════════════════════════════════════════════════════
   WP BLOCK BUTTON — aggressive override of WordPress defaults
   Targets .wp-element-button / .wp-block-button__link inside
   our custom pill button wrappers. Uses high specificity + 
   !important to beat block-library/style.min.css
   ════════════════════════════════════════════════════════════════ */

/* Step 1 — strip ALL WordPress default styles from inner <a> */
body .wp-block-button.btn .wp-block-button__link,
body .wp-block-button.btn .wp-element-button,
body .btn-pill-red > .wp-block-button__link,
body .btn-pill-red > .wp-element-button,
body .btn-pill-white > .wp-block-button__link,
body .btn-pill-white > .wp-element-button,
body .btn-pill-outline > .wp-block-button__link,
body .btn-pill-outline > .wp-element-button,
body .btn-pill-yellow > .wp-block-button__link,
body .btn-pill-yellow > .wp-element-button {
  background: transparent !important;
  background-color: transparent !important;
  color: inherit !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  border: none !important;
  display: inline !important;
  text-decoration: none !important;
  height: auto !important;
  width: auto !important;
}

/* Step 2 — apply all styling on the wrapper div instead */
body .wp-block-button.btn-pill-red {
  background: var(--red) !important;
  background-color: var(--red) !important;
  color: #fff !important;
  box-shadow: var(--shadow-red) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: var(--radius-pill) !important;
  padding: 13px 28px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  transition: var(--transition) !important;
  border: 2px solid transparent !important;
  cursor: pointer !important;
  text-decoration: none !important;
  min-height: 48px !important; /* mobile tap target */
}
body .wp-block-button.btn-pill-red:hover {
  background: var(--red-dark) !important;
  background-color: var(--red-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-lg) !important;
}

body .wp-block-button.btn-pill-white {
  background: #fff !important;
  background-color: #fff !important;
  color: var(--red) !important;
  box-shadow: var(--shadow-md) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: var(--radius-pill) !important;
  padding: 13px 28px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  transition: var(--transition) !important;
  border: 2px solid transparent !important;
  cursor: pointer !important;
  min-height: 48px !important;
}
body .wp-block-button.btn-pill-white:hover {
  background: var(--warm-white) !important;
  background-color: var(--warm-white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg) !important;
}

body .wp-block-button.btn-pill-outline {
  background: transparent !important;
  background-color: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.6) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: var(--radius-pill) !important;
  padding: 13px 28px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  transition: var(--transition) !important;
  cursor: pointer !important;
  min-height: 48px !important;
}
body .wp-block-button.btn-pill-outline:hover {
  background: rgba(255,255,255,0.15) !important;
  background-color: rgba(255,255,255,0.15) !important;
  border-color: #fff !important;
  transform: translateY(-2px);
}

body .wp-block-button.btn-pill-yellow {
  background: var(--yellow) !important;
  background-color: var(--yellow) !important;
  color: var(--dark) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: var(--radius-pill) !important;
  padding: 13px 28px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  transition: var(--transition) !important;
  border: 2px solid transparent !important;
  box-shadow: 0 8px 30px rgba(255,214,0,0.30) !important;
  cursor: pointer !important;
  min-height: 48px !important;
}
body .wp-block-button.btn-pill-yellow:hover {
  background: #F0CB00 !important;
  background-color: #F0CB00 !important;
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(255,214,0,0.40) !important;
}

/* ════════════════════════════════════════════════════════════════
   MOBILE BUTTON FIXES
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Stack hero CTAs vertically on small screens */
  .hero-ctas {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
  }
  .hero-ctas .btn,
  .hero-ctas .wp-block-button {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Ensure all pill buttons are full-width and have proper tap targets on mobile */
  body .wp-block-button.btn-pill-red,
  body .wp-block-button.btn-pill-white,
  body .wp-block-button.btn-pill-outline,
  body .wp-block-button.btn-pill-yellow {
    width: 100% !important;
    font-size: 1rem !important;
    padding: 14px 24px !important;
    min-height: 52px !important;
  }

  /* wp-block-buttons wrapper on mobile */
  .wp-block-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .wp-block-buttons > .wp-block-button {
    display: flex !important;
    width: 100% !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   WOOCOMMERCE PRODUCT CATALOG — Live Products Grid
   ════════════════════════════════════════════════════════════════ */

.ouye-products-section {
  padding: 5rem 5%;
  background: #fff;
}
.ouye-coming-section { background: var(--warm-white); }

.products-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.products-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* 3-col grid on desktop */
.ouye-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ouye-product-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ouye-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.product-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--gray);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ouye-product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-img .live-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.product-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gray);
}

.product-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.product-card-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

.product-card-cta {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
  padding-top: 0.5rem;
  transition: color 0.3s;
}
.ouye-product-card:hover .product-card-cta { color: var(--red-dark); }

/* ════════════════════════════════════════════════════════════════
   WOOCOMMERCE — Single Product Detail Page
   ════════════════════════════════════════════════════════════════ */

.ouye-product-detail {
  padding: 3rem 5% 5rem;
  background: var(--warm-white);
}

.product-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.product-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.product-detail-breadcrumb a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}
.product-detail-breadcrumb a:hover { text-decoration: underline; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-detail-main-img {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.product-detail-main-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.product-detail-img-placeholder {
  width: 100%;
  height: 420px;
  background: var(--gray);
}

.product-detail-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.product-detail-gallery {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.product-gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.product-gallery-thumb:hover { border-color: var(--red); cursor: pointer; }
.product-gallery-thumb.active-thumb { border-color: var(--red); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

#main-product-img { transition: opacity 0.18s ease; }

.product-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin: 0;
}

.product-detail-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 1.5rem 0;
}
.product-detail-desc p { margin-bottom: 1rem; }
.product-detail-desc ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.product-detail-desc li { margin-bottom: 0.4rem; }

.product-detail-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* More Products (single product page) */
.more-products-wave { display: block; line-height: 0; }
.more-products-wave svg { display: block; width: 100%; }

.ouye-more-products {
  background: var(--black);
  padding: 4rem 5% 5rem;
}
.more-products-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.more-products-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.more-products-header .section-label { color: rgba(255,255,255,0.55); }
.more-products-header .section-title { color: #fff; }
.more-products-header .section-title .accent { color: var(--yellow); }
.ouye-more-products .ouye-products-grid { gap: 1.75rem; }
.ouye-more-products .ouye-product-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
.ouye-more-products .product-card-title { color: #fff; }
.ouye-more-products .product-card-desc { color: rgba(255,255,255,0.65); }
.ouye-more-products .product-card-cta { color: var(--yellow); }
.ouye-more-products .product-tag { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.75); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ouye-products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-detail-main-img img,
  .product-detail-img-placeholder { height: 300px; }
}

@media (max-width: 640px) {
  .ouye-products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 4%;
  }
  .product-card-img { height: 200px; }
  .product-card-body { padding: 1.25rem; }
  .product-detail-main-img img,
  .product-detail-img-placeholder { height: 240px; }
  .product-detail-ctas { flex-direction: column; }
  .product-detail-ctas .btn { width: 100%; justify-content: center; }
  .product-detail-grid { gap: 2rem; }
}

/* ════════════════════════════════════════════════════════════════
   BLOG POSTS PATTERN
   ════════════════════════════════════════════════════════════════ */
.ouye-blog-section {
  background: var(--warm-white);
  padding: 5rem 5%;
}

.ouye-blog-grid .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ouye-blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ouye-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.ouye-blog-card-img .wp-block-post-featured-image,
.ouye-blog-card-img .wp-block-post-featured-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin: 0;
}
.ouye-blog-card-img .wp-block-post-featured-image a {
  display: block;
  height: 220px;
  overflow: hidden;
}

.ouye-blog-card-body {
  padding: 1.5rem;
}

.ouye-blog-date {
  font-size: 0.78rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.ouye-blog-title .wp-block-post-title,
.ouye-blog-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.ouye-blog-title a { color: inherit; text-decoration: none; }
.ouye-blog-title a:hover { color: var(--red); }

.ouye-blog-excerpt .wp-block-post-excerpt__excerpt {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.ouye-blog-excerpt .wp-block-post-excerpt__more-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.ouye-blog-excerpt .wp-block-post-excerpt__more-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .ouye-blog-grid .wp-block-post-template {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .ouye-blog-grid .wp-block-post-template {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════════
   FAQ PATTERN
   ════════════════════════════════════════════════════════════════ */
.ouye-faq-section {
  background: var(--white);
  padding: 5rem 5%;
}

.ouye-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ouye-faq-item {
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ouye-faq-item.is-open {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

/* Question acts as the clickable header */
.ouye-faq-question {
  padding: 1.25rem 1.5rem !important;
  font-family: var(--font-display) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: var(--black) !important;
  cursor: pointer !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 1rem !important;
  user-select: none;
  transition: background 0.2s ease;
}
.ouye-faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.ouye-faq-item.is-open .ouye-faq-question::after {
  transform: rotate(45deg);
}
.ouye-faq-question:hover {
  background: rgba(232,40,30,0.04);
}

/* Answer hidden by default, shown when open */
.ouye-faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem !important;
  color: var(--text-mid) !important;
  line-height: 1.75 !important;
  font-size: 0.98rem !important;
  margin: 0 !important;
}
.ouye-faq-item.is-open .ouye-faq-answer {
  display: block;
}
