/*
Theme Name: Ex-Christian Wear
Description: Frutiger Aero-inspired storefront for Ex-Christian Wear. WooCommerce ready.
Author: Ex-Christian Wear
Version: 1.1.0
Requires at least: 6.4
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: ex-christian-wear
*/

/* ============================================================
   FRUTIGER AERO DESIGN SYSTEM
   Palette: vivid sky blues · aqua · lime green · chrome white
   ============================================================ */
:root {
  /* Sky Blues — the foundation */
  --sky-0:   #f0f8ff;
  --sky-1:   #d8eeff;
  --sky-2:   #a8d8f5;
  --sky-3:   #6ab8e8;
  --sky-4:   #2a80cc;
  --sky-5:   #0e58a8;
  --sky-6:   #083880;
  --sky-7:   #041850;
  --sky-8:   #020c34;

  /* Aqua — primary accent */
  --aqua-1:  #ccf5ff;
  --aqua-2:  #7ae8fa;
  --aqua-3:  #00caf5;
  --aqua-4:  #009ad8;
  --aqua-5:  #0068b0;

  /* Lime Green — signature Frutiger Aero accent */
  --lime-1:  #e4ffa0;
  --lime-2:  #b8f040;
  --lime-3:  #78c800;
  --lime-4:  #4a9000;
  --lime-5:  #2c5800;

  /* Gold — brand accent, subverted religious motif */
  --gold-1:  #fff3aa;
  --gold-2:  #ffe554;
  --gold-3:  #ffd700;
  --gold-4:  #c89800;

  /* Chrome white (Frutiger Aero gloss) */
  --chrome-hi:   rgba(255, 255, 255, 0.95);
  --chrome-mid:  rgba(255, 255, 255, 0.65);
  --chrome-dim:  rgba(255, 255, 255, 0.28);

  /* Glass — light variant (over sky/light backgrounds) */
  --glass-l-bg:      linear-gradient(145deg, rgba(255,255,255,0.6) 0%, rgba(200,238,255,0.22) 45%, rgba(255,255,255,0.42) 100%);
  --glass-l-border:  rgba(255, 255, 255, 0.85);
  --glass-l-shadow:
    0 10px 48px rgba(0, 50, 130, 0.2),
    0 2px  8px  rgba(0, 0, 0, 0.1),
    inset 0  2px 0 rgba(255,255,255,0.96),
    inset 0 -1px 0 rgba(0, 60, 150, 0.06),
    inset 2px 0 0 rgba(255,255,255,0.55),
    inset -1px 0 0 rgba(255,255,255,0.2);

  /* Glass — dark variant (over deep blue backgrounds) */
  --glass-d-bg:     linear-gradient(145deg, rgba(255,255,255,0.2) 0%, rgba(160,210,255,0.07) 45%, rgba(255,255,255,0.14) 100%);
  --glass-d-border: rgba(255, 255, 255, 0.35);
  --glass-d-shadow:
    0 14px 56px rgba(0, 5, 40, 0.5),
    0 3px  12px rgba(0, 0, 0, 0.28),
    inset 0  2px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(0, 30, 130, 0.2);

  /* Depth shadows */
  --depth-sm:  0 2px 8px  rgba(0,40,110,0.18), 0 1px 3px rgba(0,0,0,0.12);
  --depth-md:  0 8px 36px rgba(0,40,110,0.22), 0 2px 8px rgba(0,0,0,0.14);
  --depth-lg:  0 16px 64px rgba(0,40,110,0.3),  0 4px 16px rgba(0,0,0,0.18);

  /* Glows */
  --glow-aqua:  0 0 40px rgba(0, 200, 245, 0.55);
  --glow-lime:  0 0 32px rgba(100, 200, 0, 0.55);
  --glow-gold:  0 0 32px rgba(255, 210, 0, 0.6);
  --glow-white: 0 0 30px rgba(255, 255, 255, 0.55);

  /* Text */
  --text-sky:   #0a2a50;
  --text-light: #e8f4ff;
  --text-muted: rgba(232, 244, 255, 0.52);

  /* Shapes */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   36px;
  --r-pill: 9999px;

  /* Typography */
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:      all 0.28s var(--ease);
  --t-slow: all 0.62s var(--ease);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--sky-8);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.08;
  letter-spacing: -0.026em;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.ecw-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   GLASS UTILITIES
   ============================================================ */

/* Light glass — use over sky or pale backgrounds */
.glass {
  background: var(--glass-l-bg);
  backdrop-filter: blur(28px) saturate(210%);
  -webkit-backdrop-filter: blur(28px) saturate(210%);
  border: 1px solid var(--glass-l-border);
  border-bottom-color: rgba(255,255,255,0.32);
  border-right-color:  rgba(255,255,255,0.32);
  border-radius: var(--r-lg);
  box-shadow: var(--glass-l-shadow);
  position: relative;
}
/* Iridescent thin-film sheen — the unmistakable Frutiger Aero detail */
.glass::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255, 170, 220, 0.07) 0%,
    rgba(170, 220, 255, 0.09) 25%,
    rgba(200, 255, 220, 0.06) 55%,
    rgba(255, 245, 170, 0.05) 80%,
    transparent 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

/* Dark glass — use over deep blue backgrounds */
.glass-dark {
  background: var(--glass-d-bg);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-d-border);
  border-bottom-color: rgba(255,255,255,0.1);
  border-right-color:  rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  box-shadow: var(--glass-d-shadow);
  position: relative;
}
.glass-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg,
    rgba(255,255,255,0.0) 0%,
    rgba(180,230,255,0.05) 40%,
    rgba(255,255,255,0.0) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

/* ============================================================
   3D CONVEX BUTTONS — Frutiger Aero glossy pill style
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--t);
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}
/* Top-half gloss highlight — the convex lens effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 52%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.7) 0%,
    rgba(255,255,255,0.06) 100%
  );
  border-radius: var(--r-pill) var(--r-pill) 45% 45%;
  pointer-events: none;
  z-index: 1;
}
.btn:active { transform: translateY(1px) scale(0.985); }

/* — Primary (Aqua/Sky) — */
.btn-primary {
  background: linear-gradient(180deg,
    #44d8ff 0%,
    #00b8ee 38%,
    #008ccc 60%,
    #0064aa 100%
  );
  border: 1px solid rgba(0, 80, 160, 0.6);
  border-top-color:    rgba(0, 160, 220, 0.8);
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.38);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.65) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset,
    0 5px 22px rgba(0, 148, 220, 0.6),
    0 1px 5px rgba(0,0,0,0.28);
}
.btn-primary:hover {
  background: linear-gradient(180deg,
    #66e2ff 0%,
    #22ceff 38%,
    #009ee0 60%,
    #0078c8 100%
  );
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset,
    0 8px 32px rgba(0, 168, 255, 0.72),
    0 2px 8px rgba(0,0,0,0.3);
  transform: translateY(-2px);
  color: #fff;
}

/* — Secondary (Frosted Glass) — */
.btn-secondary {
  background: linear-gradient(180deg,
    rgba(255,255,255,0.55) 0%,
    rgba(200,230,255,0.22) 45%,
    rgba(255,255,255,0.35) 100%
  );
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.8);
  border-bottom-color: rgba(255,255,255,0.3);
  color: var(--sky-7);
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 rgba(0,50,100,0.08) inset,
    var(--depth-sm);
}
.btn-secondary:hover {
  background: linear-gradient(180deg,
    rgba(255,255,255,0.75) 0%,
    rgba(210,238,255,0.38) 45%,
    rgba(255,255,255,0.55) 100%
  );
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 -1px 0 rgba(0,50,100,0.08) inset,
    var(--depth-md);
  transform: translateY(-2px);
}
/* Secondary on dark backgrounds */
.on-dark .btn-secondary,
.hero-cta .btn-secondary,
.products-section .btn-secondary,
.cta-banner .btn-secondary {
  color: var(--text-light);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  background: linear-gradient(180deg,
    rgba(255,255,255,0.3) 0%,
    rgba(160,210,255,0.1) 45%,
    rgba(255,255,255,0.2) 100%
  );
  border-color: rgba(255,255,255,0.45);
}

/* — Gold — */
.btn-gold {
  background: linear-gradient(180deg,
    #ffe96a 0%,
    #ffd700 40%,
    #daa800 60%,
    #a87800 100%
  );
  border: 1px solid rgba(120, 80, 0, 0.5);
  border-top-color: rgba(255,230,80,0.9);
  color: #3a2000;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255,240,100,0.4);
  box-shadow:
    0 1px 0 rgba(255,255,180,0.8) inset,
    0 -1px 0 rgba(0,0,0,0.2) inset,
    0 5px 22px rgba(220, 170, 0, 0.6),
    0 1px 5px rgba(0,0,0,0.25);
}
.btn-gold:hover {
  background: linear-gradient(180deg,
    #fff080 0%,
    #ffe020 40%,
    #f0b800 60%,
    #c08800 100%
  );
  box-shadow:
    0 1px 0 rgba(255,255,200,0.9) inset,
    0 -1px 0 rgba(0,0,0,0.2) inset,
    0 8px 30px rgba(255, 190, 0, 0.72),
    0 2px 8px rgba(0,0,0,0.28),
    var(--glow-gold);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.08rem; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--t);
}
.site-header.scrolled {
  background: rgba(6, 20, 50, 0.82);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid rgba(100, 200, 255, 0.2);
  padding: 0.62rem 0;
  box-shadow:
    0 4px 32px rgba(0, 10, 50, 0.4),
    0 1px 0 rgba(255,255,255,0.07) inset;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 1rem;
}
.site-branding { flex-shrink: 0; }
.site-title-link { display: block; line-height: 1; }
.brand-name {
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow:
    0 0 24px rgba(0, 200, 255, 0.5),
    0 1px 2px rgba(0,0,0,0.3);
}
.site-logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(0, 210, 255, 0.45));
}

/* Nav */
.main-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.main-nav .nav-menu a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(232, 244, 255, 0.82);
  padding: 0.48rem 0.9rem;
  border-radius: var(--r-pill);
  transition: var(--t);
  position: relative;
}
.main-nav .nav-menu a:hover,
.main-nav .nav-menu .current-menu-item > a {
  background: rgba(0, 180, 255, 0.18);
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 210, 255, 0.5);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.cart-link {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.38);
  color: rgba(232,244,255,0.9);
  transition: var(--t);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.4);
}
.cart-link:hover {
  background: linear-gradient(145deg, rgba(0,200,255,0.35), rgba(0,150,220,0.2));
  border-color: rgba(0,210,255,0.55);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.5), var(--glow-aqua);
  color: #fff;
}
.cart-link svg { width: 19px; height: 19px; }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: linear-gradient(180deg, #ffe554 0%, #ffd700 50%, #c89800 100%);
  color: #3a2000;
  font-size: 0.62rem;
  font-weight: 700;
  font-family: var(--font-head);
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(200,160,0,0.55), inset 0 1px 0 rgba(255,255,180,0.7);
  border: 1px solid rgba(150,100,0,0.3);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  background: none; border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: rgba(232,244,255,0.9);
  border-radius: 2px;
  transition: var(--t);
  display: block;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO — Frutiger Aero Sky
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 7rem 2rem 5rem;
}

/* Hero background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/homepage-banner-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* Bottom fade into the product section */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(2, 12, 54, 0.96) 0%, transparent 100%);
  pointer-events: none;
}

/* ── Sunlight god-rays ─────────────────────────────────────────── */
/* Each ray is a clip-path triangle: tip at upper-left (2% 0%),     */
/* base spanning positions along the bottom center of the hero.     */
/* This is geometrically exact — no rotation math needed.           */

.hero-sunlight {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

/* Soft radial glow at the sun source (upper-left corner) */
.hero-sunlight::before {
  content: '';
  position: absolute;
  top: -8%;
  left: -4%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle,
    rgba(255, 248, 180, 0.32)  0%,
    rgba(255, 230,  90, 0.12) 38%,
    rgba(255, 200,  60, 0.03) 62%,
    transparent 75%
  );
  animation: sunGlow 11s ease-in-out infinite;
}
@keyframes sunGlow {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.10); }
}

/* Base: each ray fills the whole container, then clip-path cuts it  */
/* into a triangle. Gradient fades from the source outward.          */
/* --bl / --br: base-left and base-right x% at the hero bottom       */
/* --d: how many % the base drifts rightward over the animation      */
.sun-ray {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

/* Tip of every ray is at (2%, 0%) — upper-left corner of hero.      */
/* Base positions spread from ~10% (hard left) to ~50% (center),     */
/* so the overall cone goes from top-left → bottom-center.           */

.ray-1 {
  --bl: 7%; --br: 12%; --d: 3%;
  background: radial-gradient(ellipse 80% 90% at 0% 0%,
    rgba(255, 245, 160, 0.40) 0%, rgba(255, 225, 80, 0.12) 50%, transparent 80%);
  animation: rayBeam 10s ease-in-out infinite 0s;
}
.ray-2 {
  --bl: 11%; --br: 28%; --d: 4%;
  background: radial-gradient(ellipse 80% 90% at 0% 0%,
    rgba(255, 255, 210, 0.28) 0%, rgba(255, 245, 160, 0.08) 50%, transparent 80%);
  animation: rayBeam 13s ease-in-out infinite 2.6s;
}
.ray-3 {
  --bl: 24%; --br: 30%; --d: 3%;
  background: radial-gradient(ellipse 80% 90% at 0% 0%,
    rgba(255, 220, 80, 0.36) 0%, rgba(255, 200, 50, 0.11) 50%, transparent 80%);
  animation: rayBeam 8.5s ease-in-out infinite 1.1s;
}
.ray-4 {
  --bl: 28%; --br: 42%; --d: 4%;
  background: radial-gradient(ellipse 80% 90% at 0% 0%,
    rgba(255, 242, 140, 0.32) 0%, rgba(255, 220, 80, 0.10) 50%, transparent 80%);
  animation: rayBeam 11.5s ease-in-out infinite 4.2s;
}
.ray-5 {
  --bl: 38%; --br: 41%; --d: 3%;
  background: radial-gradient(ellipse 80% 90% at 0% 0%,
    rgba(255, 252, 200, 0.24) 0%, rgba(255, 240, 140, 0.07) 50%, transparent 80%);
  animation: rayBeam 9.2s ease-in-out infinite 0.5s;
}
.ray-6 {
  --bl: 39%; --br: 52%; --d: 4%;
  background: radial-gradient(ellipse 80% 90% at 0% 0%,
    rgba(255, 255, 215, 0.26) 0%, rgba(255, 248, 170, 0.08) 50%, transparent 80%);
  animation: rayBeam 12s ease-in-out infinite 3.1s;
}
.ray-7 {
  --bl: 49%; --br: 58%; --d: 3%;
  background: radial-gradient(ellipse 80% 90% at 0% 0%,
    rgba(255, 218, 80, 0.30) 0%, rgba(255, 198, 48, 0.09) 50%, transparent 80%);
  animation: rayBeam 10.8s ease-in-out infinite 1.9s;
}

/* Fade in → base drifts slowly right → fade out                     */
/* clip-path animates the base of each triangle across --d percent   */
/* Tip at -12% -30%: well off-canvas above and left, so the visible  */
/* entry into the hero looks like rays coming from a sky source,      */
/* not a corner. The hero-sunlight overflow:hidden clips the top.     */
/* Rays drift right → left over their lifespan: base starts offset   */
/* rightward by --d, then slowly slides back left as they fade out.  */
@keyframes rayBeam {
  0% {
    opacity: 0;
    clip-path: polygon(-12% -30%, calc(var(--bl) + var(--d)) 100%, calc(var(--br) + var(--d)) 100%);
  }
  18% {
    opacity: 1;
    clip-path: polygon(-12% -30%, calc(var(--bl) + var(--d) * 0.7) 100%, calc(var(--br) + var(--d) * 0.7) 100%);
  }
  62% {
    opacity: 0.65;
    clip-path: polygon(-12% -30%, calc(var(--bl) + var(--d) * 0.3) 100%, calc(var(--br) + var(--d) * 0.3) 100%);
  }
  100% {
    opacity: 0;
    clip-path: polygon(-12% -30%, var(--bl) 100%, var(--br) 100%);
  }
}

/* Hero content — glass panel floating above the XP landscape */
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 860px;
  padding: 3rem 3.5rem 3.5rem;
  background: rgba(4, 16, 50, 0.52);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow:
    0 28px 90px rgba(0, 5, 40, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 40, 120, 0.12);
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.32);
  border-radius: var(--r-pill);
  padding: 0.32rem 1.1rem;
  margin-bottom: 1.7rem;
  box-shadow: 0 0 20px rgba(255,200,0,0.2), inset 0 1px 0 rgba(255,255,180,0.3);
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.038em;
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 40px rgba(0,40,100,0.38);
}
/* Gradient text — aqua to lime to gold, very Frutiger Aero */
.hero-headline .grad {
  background: linear-gradient(135deg,
    #00d8ff  0%,
    #44f0a0 38%,
    #a8f020 65%,
    #ffd700 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(0,210,255,0.42));
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(232,244,255,0.8);
  margin: 0 auto 2.7rem;
  font-weight: 300;
  line-height: 1.58;
  max-width: 600px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 150, 255, 0.12) 0%, transparent 70%),
    linear-gradient(90deg, #04102e, #081a40, #04102e);
  border-top:    1px solid rgba(0, 190, 255, 0.28);
  border-bottom: 1px solid rgba(0, 190, 255, 0.28);
  padding: 0.92rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
}
.marquee-strip::before { left: 0;  background: linear-gradient(90deg,  #04102e, transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(-90deg, #04102e, transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua-3);
  white-space: nowrap;
  padding: 0 2rem;
  text-shadow: 0 0 12px rgba(0,200,245,0.35);
}
.marquee-dot { color: var(--gold-3); font-size: 0.46rem; vertical-align: middle; opacity: 0.7; }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--aqua-3);
  margin-bottom: 0.82rem;
  text-shadow: 0 0 14px rgba(0,200,245,0.35);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.85rem;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.62;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-sub { max-width: 500px; margin: 0 auto; }

/* ============================================================
   PRODUCTS SECTION — deep vibrant blue ocean
   ============================================================ */
.products-section {
  padding: 6rem 0 7rem;
  background:
    radial-gradient(ellipse at 8%  50%, rgba(0, 160, 255, 0.1) 0%, transparent 48%),
    radial-gradient(ellipse at 92% 50%, rgba(0, 100, 220, 0.1) 0%, transparent 48%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 60, 180, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, #021448 0%, #031060 50%, #020c48 100%);
  position: relative;
}
.products-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.5), transparent);
}
/* Faint caustic light pattern — depth */
.products-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 200px 100px at 20% 30%, rgba(0,200,255,0.04) 0%, transparent 100%),
    radial-gradient(ellipse 180px  90px at 75% 60%, rgba(0,180,255,0.04) 0%, transparent 100%),
    radial-gradient(ellipse 140px  70px at 50% 20%, rgba(0,220,255,0.03) 0%, transparent 100%);
  pointer-events: none;
}

/* ============================================================
   WOOCOMMERCE PRODUCT GRID — glass tiles floating in the deep
   ============================================================ */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.75rem !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.18) 0%,
    rgba(160,215,255,0.06) 45%,
    rgba(255,255,255,0.12) 100%
  ) !important;
  backdrop-filter: blur(32px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(32px) saturate(200%) !important;
  border: 1px solid rgba(255,255,255,0.32) !important;
  border-bottom-color: rgba(255,255,255,0.1) !important;
  border-right-color:  rgba(255,255,255,0.1) !important;
  border-radius: var(--r-lg) !important;
  overflow: hidden !important;
  transition: var(--t) !important;
  float: none !important; width: auto !important;
  margin: 0 !important; padding: 0 !important;
  position: relative !important;
  box-shadow:
    0 14px 56px rgba(0, 5, 40, 0.5),
    0 3px  12px rgba(0, 0, 0, 0.28),
    inset 0 2px 0 rgba(255,255,255,0.44),
    inset 0 -1px 0 rgba(0, 30, 130, 0.2) !important;
}
/* Top edge highlight on card */
.woocommerce ul.products li.product::before {
  content: '' !important;
  position: absolute !important;
  top: 0; left: 0; right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}
/* Iridescent overlay on cards */
.woocommerce ul.products li.product::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(145deg,
    rgba(200, 240, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.0) 40%,
    rgba(180, 255, 220, 0.04) 100%
  ) !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  z-index: 1 !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(0, 200, 255, 0.38) !important;
  border-bottom-color: rgba(0,200,255,0.12) !important;
  box-shadow:
    0 24px 70px rgba(0, 5, 40, 0.6),
    0 6px  20px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(0, 50, 180, 0.25),
    0 0 40px rgba(0, 200, 255, 0.12) !important;
}
.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 280px !important;
  object-fit: cover !important;
  display: block !important;
  transition: var(--t-slow) !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product:hover a img {
  transform: scale(1.07) !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-head) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--text-light) !important;
  padding: 1.15rem 1.3rem 0.3rem !important;
  margin: 0 !important;
  line-height: 1.32 !important;
  position: relative !important;
  z-index: 2 !important;
}
.woocommerce ul.products li.product .price {
  display: block !important;
  font-family: var(--font-head) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--aqua-3) !important;
  padding: 0 1.3rem 0.85rem !important;
  margin: 0 !important;
  text-shadow: 0 0 12px rgba(0,200,245,0.38) !important;
  position: relative !important;
  z-index: 2 !important;
}
.woocommerce ul.products li.product .price del {
  color: rgba(232,244,255,0.28) !important;
  font-size: 0.84rem !important;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none !important;
  color: var(--lime-2) !important;
  text-shadow: 0 0 10px rgba(120,200,0,0.4) !important;
}

/* Add to Cart — Frutiger Aero lime green 3D button */
.woocommerce ul.products li.product .button {
  display: block !important;
  width: calc(100% - 2.6rem) !important;
  margin: 0 1.3rem 1.3rem !important;
  padding: 0.72rem 1rem !important;
  border-radius: var(--r-pill) !important;
  font-family: var(--font-head) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-align: center !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border: 1px solid rgba(30, 80, 0, 0.55) !important;
  border-top-color: rgba(180, 240, 20, 0.7) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: var(--t) !important;
  background: linear-gradient(180deg,
    #b0ee22 0%,
    #7cc800 42%,
    #5ca000 58%,
    #3a7800 100%
  ) !important;
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0, 50, 0, 0.45) !important;
  box-shadow:
    0 1px 0 rgba(255,255,180,0.55) inset,
    0 -1px 0 rgba(0,0,0,0.2) inset,
    0 4px 18px rgba(90, 180, 0, 0.52),
    0 1px 5px rgba(0,0,0,0.25) !important;
  z-index: 2 !important;
}
/* Top gloss on add-to-cart */
.woocommerce ul.products li.product .button::before {
  content: '' !important;
  position: absolute !important;
  top: 0; left: 0; right: 0 !important;
  height: 52% !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.05) 100%) !important;
  border-radius: var(--r-pill) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}
.woocommerce ul.products li.product .button:hover {
  background: linear-gradient(180deg,
    #c8f030 0%,
    #96dc10 42%,
    #70b800 58%,
    #4a9000 100%
  ) !important;
  box-shadow:
    0 1px 0 rgba(255,255,200,0.65) inset,
    0 -1px 0 rgba(0,0,0,0.2) inset,
    0 8px 28px rgba(110, 210, 0, 0.62),
    0 2px 8px rgba(0,0,0,0.28),
    var(--glow-lime) !important;
  transform: none !important;
}

/* WooCommerce pagination */
.woocommerce nav.woocommerce-pagination ul {
  display: flex !important;
  gap: 0.5rem !important;
  justify-content: center !important;
  margin-top: 3.5rem !important;
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a {
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06)) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: var(--text-light) !important;
  border-radius: var(--r-sm) !important;
  min-width: 42px !important; height: 42px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  transition: var(--t) !important;
  font-family: var(--font-head) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.18) !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: linear-gradient(180deg, #44d8ff 0%, #00b4e8 42%, #0080c0 100%) !important;
  border-color: rgba(0,160,220,0.5) !important;
  color: #fff !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.55) inset,
    0 4px 14px rgba(0,160,220,0.5),
    var(--glow-aqua) !important;
}

/* ============================================================
   BRAND STORY — mid blue sky section
   ============================================================ */
.brand-story {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(0, 180, 255, 0.1) 0%, transparent 48%),
    radial-gradient(ellipse at 15% 80%, rgba(0, 120, 220, 0.08) 0%, transparent 48%),
    linear-gradient(145deg, #083460 0%, #062548 50%, #041848 100%);
  position: relative;
}
.brand-story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.38), transparent);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-text .section-title,
.story-text .section-eyebrow { text-align: left; }
.story-text p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: rgba(232,244,255,0.74);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.story-card {
  padding: 2.5rem 2.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.story-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 55%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.6), transparent);
}
.story-emblem {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  filter:
    drop-shadow(0 0 20px rgba(255,215,0,0.45))
    drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  display: block;
}
.story-motto {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.38;
  margin-bottom: 1rem;
}
.story-motto em {
  font-style: italic;
  background: linear-gradient(135deg, var(--aqua-3), var(--lime-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.story-sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   VALUES — same deep blue as products
   ============================================================ */
.values-section {
  padding: 4.5rem 0 5.5rem;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 120, 255, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, #020c48 0%, #03103c 100%);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--t);
}
.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 200, 255, 0.3) !important;
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1.1rem;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,200,245,0.3));
}
.value-title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.55rem;
}
.value-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 5.5rem 2rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 200, 255, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 120, 255, 0.15) 0%, transparent 55%),
    linear-gradient(180deg, #030e40 0%, #020a34 100%);
  border-top:    1px solid rgba(0, 190, 255, 0.22);
  border-bottom: 1px solid rgba(0, 190, 255, 0.22);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Glowing halo behind CTA */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,200,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.8rem; }
.cta-banner .section-sub   { max-width: 440px; margin: 0 auto 2rem; }

/* ============================================================
   WOOCOMMERCE SHOP / PRODUCT / CART PAGES
   ============================================================ */
.woo-page-wrapper {
  padding: 8rem 0 5.5rem;
  min-height: 70vh;
  background:
    radial-gradient(ellipse at 12% 30%, rgba(0,180,255,0.07) 0%, transparent 45%),
    linear-gradient(180deg, #031040 0%, #020c34 100%);
}
.woocommerce,
.woocommerce-page { color: var(--text-light); }

.woocommerce div.product .product_title {
  font-family: var(--font-head) !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  font-weight: 700 !important;
  color: var(--text-light) !important;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--font-head) !important;
  font-size: 1.65rem !important;
  font-weight: 700 !important;
  color: var(--aqua-3) !important;
  text-shadow: 0 0 14px rgba(0,200,245,0.35) !important;
  display: block !important;
  margin-bottom: 1.2rem !important;
  padding-bottom: 0.5rem !important;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  color: rgba(232,244,255,0.73) !important;
  line-height: 1.75 !important;
}

/* Single product / cart buttons */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce div.product form.cart .single_add_to_cart_button {
  background: linear-gradient(180deg, #44d8ff 0%, #00b8ee 38%, #008ccc 60%, #0064aa 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(0,80,160,0.6) !important;
  border-top-color: rgba(0,160,220,0.8) !important;
  border-radius: var(--r-pill) !important;
  font-family: var(--font-head) !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.38) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.65) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset,
    0 5px 22px rgba(0,148,220,0.6),
    0 1px 5px rgba(0,0,0,0.28) !important;
  transition: var(--t) !important;
  position: relative !important;
  overflow: hidden !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: linear-gradient(180deg, #66e2ff 0%, #22ceff 38%, #009ee0 60%, #0078c8 100%) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset,
    0 8px 32px rgba(0,168,255,0.72),
    0 2px 8px rgba(0,0,0,0.3) !important;
  transform: translateY(-1px) !important;
}

.woocommerce-breadcrumb {
  font-size: 0.84rem !important; color: var(--text-muted) !important; padding: 1rem 0 !important;
}
.woocommerce-breadcrumb a { color: var(--aqua-3) !important; }
.woocommerce-ordering select,
.woocommerce .quantity input.qty {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  color: var(--text-light) !important;
  border-radius: var(--r-sm) !important;
  padding: 0.45rem 0.9rem !important;
  font-family: var(--font-body) !important;
}
.woocommerce-result-count {
  color: var(--text-muted) !important;
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
}
.woocommerce table.shop_table {
  border-collapse: collapse !important;
  width: 100% !important;
  color: var(--text-light) !important;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border: 1px solid rgba(255,255,255,0.08) !important;
  padding: 0.88rem 1rem !important;
}
.woocommerce table.shop_table th {
  background: rgba(0,180,255,0.1) !important;
  font-family: var(--font-head) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

/* ============================================================
   GENERIC PAGES
   ============================================================ */
.page-body {
  padding: 8rem 0 5rem;
  min-height: 70vh;
  background:
    radial-gradient(ellipse at 15% 35%, rgba(0,180,255,0.07) 0%, transparent 45%),
    linear-gradient(180deg, #031040 0%, #020c34 100%);
}
.page-body .entry-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.page-body .entry-content {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(232,244,255,0.74);
  line-height: 1.78;
  max-width: 760px;
}
.page-body .entry-content h2,
.page-body .entry-content h3 { color: var(--text-light); margin: 2rem 0 1rem; }
.page-body .entry-content p  { margin-bottom: 1.25rem; }
.page-body .entry-content a  { color: var(--aqua-3); text-decoration: underline; text-underline-offset: 3px; }
.page-body .entry-content ul,
.page-body .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.page-body .entry-content li { list-style: disc; margin-bottom: 0.4rem; }

/* ============================================================
   404
   ============================================================ */
.not-found-body {
  display: flex; align-items: center; justify-content: center;
  min-height: 90vh;
  text-align: center;
  padding: 2rem;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(0,160,255,0.1) 0%, transparent 55%),
    linear-gradient(180deg, #031040 0%, #020c34 100%);
}
.four-oh-four-num {
  font-family: var(--font-head);
  font-size: clamp(7rem, 22vw, 16rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0,195,255,0.38);
  line-height: 1;
  margin-bottom: -1rem;
  text-shadow: 0 0 100px rgba(0,180,255,0.1);
}
.four-oh-four-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.four-oh-four-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 380px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #050f28 0%, #020810 100%);
  border-top: 1px solid rgba(0,180,255,0.14);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.65rem;
  text-shadow: 0 0 22px rgba(0,210,255,0.32);
}
.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.66;
  margin-bottom: 1.5rem;
}
.social-row { display: flex; gap: 0.7rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--t);
  font-family: var(--font-head);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.social-btn:hover {
  background: linear-gradient(145deg, rgba(0,200,255,0.3), rgba(0,150,220,0.15));
  border-color: rgba(0,210,255,0.45);
  color: var(--aqua-3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.2), var(--glow-aqua);
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,244,255,0.3);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--t);
}
.footer-links a:hover {
  color: var(--aqua-3);
  text-shadow: 0 0 10px rgba(0,200,245,0.3);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(232,244,255,0.22);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(232,244,255,0.22);
  transition: var(--t);
}
.footer-legal a:hover { color: var(--aqua-3); }

/* ============================================================
   SHOP PAGE — toolbar & grid fixes
   ============================================================ */

/* Flex toolbar: result count left, ordering dropdown right */
.ecw-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  min-height: 2.5rem;
  width: 100%;
}

/* Reset WC float defaults so toolbar children sit in flex flow */
.woocommerce-result-count,
form.woocommerce-ordering {
  float: none !important;
  clear: none !important;
  margin: 0 !important;
}

/* Upgraded ordering select */
.woocommerce-ordering select {
  background: linear-gradient(180deg, rgba(0,180,255,0.18) 0%, rgba(0,100,200,0.12) 100%) !important;
  border: 1px solid rgba(0,200,255,0.35) !important;
  color: var(--text-light) !important;
  border-radius: var(--r-sm) !important;
  padding: 0.5rem 2rem 0.5rem 0.9rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  appearance: auto !important;
  -webkit-appearance: auto !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.12) !important;
}

/* Hide any empty ghost li that WooCommerce may inject */
.woocommerce ul.products li.product:empty,
.woocommerce-page ul.products li.product:empty {
  display: none !important;
}

/* ============================================================
   SINGLE PRODUCT — variations / select contrast fix
   ============================================================ */
.woocommerce div.product .variations select,
.woocommerce div.product form.cart select,
.woocommerce-variation-add-to-cart select {
  background: linear-gradient(180deg,
    rgba(8, 40, 100, 0.85) 0%,
    rgba(4, 25, 70, 0.9) 100%
  ) !important;
  border: 1.5px solid rgba(0, 200, 255, 0.45) !important;
  border-radius: var(--r-sm) !important;
  color: #e8f4ff !important;
  padding: 0.6rem 2.2rem 0.6rem 1rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  appearance: auto !important;
  -webkit-appearance: auto !important;
  cursor: pointer !important;
  min-width: 160px !important;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 0 transparent !important;
  transition: var(--t) !important;
}
.woocommerce div.product .variations select:hover,
.woocommerce div.product form.cart select:hover,
.woocommerce div.product .variations select:focus,
.woocommerce div.product form.cart select:focus {
  border-color: rgba(0, 200, 255, 0.75) !important;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 0 3px rgba(0, 200, 255, 0.18) !important;
  outline: none !important;
}

/* Style native dropdown options — helps Firefox/Windows Chrome */
.woocommerce div.product .variations select,
.woocommerce div.product form.cart select,
.woocommerce-variation-add-to-cart select {
  color-scheme: dark !important;
}
.woocommerce div.product .variations select option,
.woocommerce div.product form.cart select option,
.woocommerce-variation-add-to-cart select option {
  background-color: #082060 !important;
  color: #e8f4ff !important;
}

/* Variation labels */
.woocommerce div.product .variations th.label label,
.woocommerce div.product .variations td.label label {
  color: rgba(232, 244, 255, 0.9) !important;
  font-family: var(--font-head) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* Variations table layout */
.woocommerce div.product table.variations {
  border: none !important;
  background: transparent !important;
}
.woocommerce div.product table.variations td,
.woocommerce div.product table.variations th {
  border: none !important;
  padding: 0.5rem 0.8rem 0.5rem 0 !important;
  background: transparent !important;
  vertical-align: middle !important;
}

/* ============================================================
   SINGLE PRODUCT — glossy green Frutiger Aero tabs
   ============================================================ */
.woocommerce div.product .woocommerce-tabs.wc-tabs-wrapper {
  margin-top: 3rem !important;
  border-top: 1px solid rgba(0, 200, 255, 0.15) !important;
  padding-top: 2rem !important;
}

/* Tab nav bar */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none !important;
  display: flex !important;
  gap: 0.5rem !important;
  padding: 0 !important;
  margin: 0 0 0 !important;
  border-bottom: 2px solid rgba(80, 200, 0, 0.3) !important;
  position: relative !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none !important;
}

/* Individual tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: linear-gradient(180deg,
    rgba(90, 190, 0, 0.42) 0%,
    rgba(50, 140, 0, 0.32) 100%
  ) !important;
  border: 1px solid rgba(100, 200, 0, 0.38) !important;
  border-bottom: none !important;
  border-radius: 10px 10px 0 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  overflow: visible !important;
  flex-shrink: 0 !important;
  transition: var(--t) !important;
  box-shadow:
    inset 0 1px 0 rgba(200, 255, 80, 0.3),
    0 -2px 6px rgba(80, 200, 0, 0.12) !important;
  clip-path: inset(0 0 -10px 0 round 10px 10px 0 0) !important;
}

/* Kill WooCommerce's default curved-corner notch artifacts */
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

/* Top gloss on inactive tab */
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  content: '' !important;
  position: absolute !important;
  top: 0; left: 0; right: 0 !important;
  height: 50% !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.04) 100%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
  border-radius: 10px 10px 0 0 !important;
  overflow: hidden !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block !important;
  padding: 0.7rem 1.4rem !important;
  font-family: var(--font-head) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(180, 240, 80, 0.85) !important;
  text-decoration: none !important;
  position: relative !important;
  z-index: 2 !important;
  text-shadow: 0 0 10px rgba(120, 220, 0, 0.35) !important;
}

/* Active tab — bright glossy lime green */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: linear-gradient(180deg,
    #a0e820 0%,
    #6ab800 42%,
    #4e9200 58%,
    #306800 100%
  ) !important;
  border-color: rgba(120, 220, 0, 0.55) !important;
  border-top-color: rgba(200, 255, 40, 0.7) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 220, 0.55),
    0 -4px 16px rgba(100, 200, 0, 0.35) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.06) 100%) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0, 50, 0, 0.5) !important;
}

/* Hover on inactive tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active):hover {
  background: linear-gradient(180deg,
    rgba(130, 220, 0, 0.32) 0%,
    rgba(80, 170, 0, 0.22) 100%
  ) !important;
  border-color: rgba(120, 220, 0, 0.45) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active):hover a {
  color: rgba(200, 255, 80, 1) !important;
}

/* Tab panel content */
.woocommerce div.product .woocommerce-Tabs-panel,
.woocommerce div.product #tab-description,
.woocommerce div.product #tab-additional_information,
.woocommerce div.product #tab-reviews {
  background: linear-gradient(180deg,
    rgba(28, 88, 0, 0.72) 0%,
    rgba(14, 56, 0, 0.82) 100%
  ) !important;
  border: 1px solid rgba(90, 210, 0, 0.32) !important;
  border-top: none !important;
  border-radius: 0 12px 12px 12px !important;
  padding: 2rem 2.2rem !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow:
    inset 0 1px 0 rgba(160, 255, 40, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 8px 32px rgba(0, 0, 0, 0.45) !important;
}

/* Top iridescent sheen on tab panel */
.woocommerce div.product .woocommerce-Tabs-panel::before,
.woocommerce div.product #tab-description::before,
.woocommerce div.product #tab-additional_information::before,
.woocommerce div.product #tab-reviews::before {
  content: '' !important;
  position: absolute !important;
  top: 0; left: 0; right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(160, 255, 40, 0.5), transparent) !important;
  pointer-events: none !important;
}

/* Tab panel headings */
.woocommerce div.product .woocommerce-Tabs-panel h2,
.woocommerce div.product #tab-description h2,
.woocommerce div.product #tab-additional_information h2,
.woocommerce div.product #tab-reviews h2 {
  font-family: var(--font-head) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: rgba(200, 255, 80, 0.9) !important;
  margin-bottom: 1rem !important;
  text-shadow: 0 0 14px rgba(120, 220, 0, 0.35) !important;
}

/* Tab panel body text */
.woocommerce div.product .woocommerce-Tabs-panel p,
.woocommerce div.product #tab-description p,
.woocommerce div.product #tab-additional_information p {
  color: rgba(220, 255, 190, 0.82) !important;
  font-family: var(--font-body) !important;
  line-height: 1.76 !important;
}

/* Additional info table */
.woocommerce div.product .woocommerce-product-attributes {
  width: 100% !important;
  border-collapse: collapse !important;
}
.woocommerce div.product .woocommerce-product-attributes th,
.woocommerce div.product .woocommerce-product-attributes td {
  border: 1px solid rgba(80, 200, 0, 0.18) !important;
  padding: 0.7rem 1rem !important;
  color: rgba(220, 255, 190, 0.82) !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
}
.woocommerce div.product .woocommerce-product-attributes th {
  font-weight: 600 !important;
  color: rgba(200, 255, 80, 0.9) !important;
  background: rgba(40, 120, 0, 0.2) !important;
  width: 38% !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .story-grid  { gap: 2.5rem; }
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-card  { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .header-inner  { padding: 0 1rem; }
  .ecw-container { padding: 0 1.25rem; }
  .main-nav {
    display: none;
    position: fixed; inset: 0;
    background: rgba(3, 12, 40, 0.96);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    z-index: 999;
    flex-direction: column; align-items: center; justify-content: center;
    padding: 5rem 2rem 2rem;
  }
  .main-nav.open { display: flex; }
  .main-nav .nav-menu { flex-direction: column; align-items: center; gap: 0.5rem; }
  .main-nav .nav-menu a { font-size: 1.6rem; padding: 0.8rem 1.6rem; }
  .nav-toggle { display: flex; }
  .footer-top   { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { justify-content: center; }
  .hero-sunlight { display: none; }
}
@media (max-width: 768px) {
  /* Tab strip scrolls horizontally instead of overflowing/clipping */
  .woocommerce div.product .woocommerce-tabs ul.tabs {
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    flex-wrap: nowrap !important;
    scrollbar-width: none !important;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs::-webkit-scrollbar {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: 1fr !important; }
  .values-grid   { grid-template-columns: 1fr; }
  .hero-cta      { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; }

  /* Reduce hero outer and glass panel padding on small screens */
  .hero          { padding: 5.5rem 0.75rem 3.5rem; }
  .hero-content  { padding: 1.75rem 1.25rem 2rem; }

  /* Reduce container side padding sitewide on mobile */
  .ecw-container { padding: 0 0.75rem; }
}
