/*
Theme Name: JerseyWala
Theme URI: http://example.com/jerseywala
Author: Rafiqul Islam
Author URI: http://example.com
Description: A custom premium WooCommerce theme for authentic football jerseys.
Version: 1.0.0
Text Domain: jerseywala
Tags: woocommerce, dark-theme, e-commerce, custom-colors
*/

/* ===== TOKENS ===== */
:root {
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-accent: 'Playfair Display', serif;

  --gold: #f5e075;
  --gold-rgb: 245, 224, 117;
  --gold-dark: #b5a64e;
  --gold-dark-rgb: 181, 166, 78;
  --pitch: #080c06;
  --turf: #0d1a0a;
  --turf2: #0f1e0c;
  --chalk: #f0ede4;
  --mist: #b8b3a0;
  --dim: #6e6a5e;
  --card-bg: #101908;
  --card-border: rgba(var(--gold-rgb), 0.08);
  --wc-red: #c0392b;
  --wc-blue: #1a3a6e;
  
  --btn-text: #080c06;
  --btn-bg: #f5e075;
  --btn-border: #f5e075;
  --btn-text-hover: #080c06;
  --btn-bg-hover: #ffffff;
  --btn-border-hover: #ffffff;
  
  --nav-h: 72px;
  --expo: cubic-bezier(0.16,1,0.3,1);
  --ease: cubic-bezier(0.65,0,0.35,1);
}


*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  background:var(--pitch);color:var(--chalk);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button{cursor:pointer;border:none;background:none;font-family:inherit;color:inherit}

/* Apply custom cursor ONLY on devices with a mouse */
@media (pointer: fine) {
  body, button, select { cursor: none !important; }
}

/* Dynamic Typography Overrides */
h1, h2, h3, h4, h5, h6, 
.hero-h1, .section-title, .sp-title, .cat-card-title, 
.story-stat-num, .wc26-year, .wc26-super, .mobile-menu a, 
.marquee-track span, .woocommerce-loop-product__title,
.wc-page-title, .widget-title, .spost-title, .cart_totals h2 {
  font-family: var(--font-heading) !important;
}

/* ===== CURSOR ===== */
.cursor{display:none;position:fixed;top:0;left:0;z-index:9999;pointer-events:none;mix-blend-mode:normal;}
@media (pointer: fine) {
  .cursor { display:block; }
}
.cursor-ball{position:absolute;top:0;left:0;width:18px;height:18px;transform:translate(-50%,-50%);will-change:transform;transition:width .2s,height .2s;}
.cursor-ball svg{width:100%;height:100%;display:block;filter:drop-shadow(0 0 5px rgba(245,224,117,.55));animation:ball-spin 3.5s linear infinite;}
@keyframes ball-spin{to{transform:rotate(360deg);}}
.cursor-ring{
  position:absolute;top:0;left:0;width:36px;height:36px;border-radius:50%;
  border:1.5px solid var(--gold);
  transform:translate(-50%,-50%);
  transition:width .3s,height .3s,opacity .3s;
  box-shadow:0 0 8px rgba(245,224,117,0.4);
  will-change:transform, width, height;
}
body.c-hover .cursor-ring{width:54px;height:54px;opacity:.55}
body.c-hover .cursor-ball{width:24px;height:24px;}

/* ===== NOISE ===== */
body::before{
  content:'';position:fixed;inset:0;z-index:9998;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity:.3;
}

/* ===== REVEAL ===== */
.reveal{
  opacity:0;transform:translateY(28px);
  transition:opacity .6s var(--expo),transform .6s var(--expo);
}
.reveal.in{opacity:1;transform:none}
.reveal-left{opacity:0;transform:translateX(-32px);transition:opacity .6s var(--expo),transform .6s var(--expo)}
.reveal-left.in{opacity:1;transform:none}
.reveal-right{opacity:0;transform:translateX(32px);transition:opacity .6s var(--expo),transform .6s var(--expo)}
.reveal-right.in{opacity:1;transform:none}

/* ===== PAGE TRANSITION ===== */
.page-transition{
  position:fixed;inset:0;z-index:99999;
  background:var(--pitch);
  opacity:1;pointer-events:none;
  transition:opacity .25s var(--expo);
}
body.loaded .page-transition{opacity:0}
body.leaving .page-transition{opacity:1;pointer-events:all}

/* ===== PROMO BAR ===== */
.promo-bar{
  position:absolute;top:0;left:0;right:0;height:34px;z-index:1001;
  background:var(--chalk);color:var(--pitch);
  display:flex;align-items:center;justify-content:center;gap:2.5rem;
  font-size:.65rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
}
.promo-bar span{display:flex;align-items:center;gap:6px}

/* ===== NAVBAR ===== */
#navbar{
  position:fixed;top:34px;left:0;right:0;z-index:1000;height:var(--nav-h);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 clamp(1.2rem,4vw,3.5rem);
  transition:background .4s var(--ease),box-shadow .4s,backdrop-filter .4s;
}
#navbar.scrolled{
  top:0;
  background:rgba(8,12,6,.9);
  backdrop-filter:blur(20px) saturate(1.5);
  box-shadow:0 1px 0 rgba(245,224,117,.1);
}
.nav-logo img{height:42px;width:auto;object-fit:contain}
.nav-links{display:flex;align-items:center;gap:clamp(1rem,2.5vw,2.2rem);list-style:none}
.nav-links a{
  font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;
  font-weight:600;color:var(--mist);
  position:relative;padding-bottom:2px;transition:color .3s;
}
.nav-links a::after{
  content:'';position:absolute;bottom:0;left:0;width:0;height:1px;
  background:var(--gold);transition:width .35s var(--expo);
}
.nav-links a:hover{color:var(--gold)}
.nav-links a:hover::after{width:100%}
.nav-right{display:flex;align-items:center;gap:1rem}
.wc26-badge{
  display:flex;align-items:center;gap:6px;
  font-size:.65rem;letter-spacing:.15em;text-transform:uppercase;font-weight:700;
  background:linear-gradient(135deg,var(--wc-red),var(--wc-blue));
  color:#fff;padding:4px 12px;border-radius:2px;
}
.nav-icon{position:relative;color:var(--mist);transition:color .3s;display:flex;align-items:center}
.nav-icon:hover{color:var(--gold)}
.cart-count{
  position:absolute;top:-6px;right:-8px;
  width:16px;height:16px;border-radius:50%;
  background:var(--gold);color:var(--pitch);
  font-size:.55rem;font-weight:700;
  display:flex;align-items:center;justify-content:center;
}
.hamburger{display:none;flex-direction:column;gap:5px}
.hamburger span{display:block;width:22px;height:1.5px;background:var(--chalk);transition:transform .3s,opacity .3s}

/* ===== MOBILE MENU ===== */
.mobile-menu{
  display:none;position:fixed;inset:0;z-index:999;
  background:rgba(8,12,6,.97);
  flex-direction:column;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .4s;
}
.mobile-menu.open{opacity:1;pointer-events:all;display:flex}
.mobile-menu ul{display:flex;flex-direction:column;align-items:center;gap:2rem;list-style:none;padding:0;margin:0}
.mobile-menu a{font-family:'Bebas Neue',sans-serif;font-size:clamp(2rem,8vw,3.5rem);letter-spacing:.1em;color:var(--chalk);transition:color .3s}
.mobile-menu a:hover{color:var(--gold)}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-h) + 34px); /* nav-h(72) + promo-bar(34) */
  overflow: hidden;
}



.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-pitch-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--gold-rgb), 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--gold-rgb), 0.065) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, black 15%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, black 15%, transparent 80%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.05) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: stadiumBreath 4s ease-in-out infinite;
}

@keyframes stadiumBreath {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
  50%       { transform: translate(-50%, -50%) scale(1.55); opacity: 1; }
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 80, 30, 0.08) 0%, transparent 70%);
  bottom: 5%;
  right: -8%;
  pointer-events: none;
  animation: stadiumBreath 5.5s ease-in-out infinite reverse;
}

.confetti-p {
  position: absolute;
  top: -8px;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  background: var(--color);
  border-radius: 1px;
  opacity: 0;
  pointer-events: none;
  animation: confettiFall var(--dur) var(--delay) linear infinite;
}

@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  5%   { opacity: 0.75; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(100vh) rotate(var(--rot)); opacity: 0; }
}

/* Hero inner */
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.25rem 1.25rem 1.5rem;
  gap: 1rem;
}

.hero-label {
  font-family: var(--font-heading);
  font-size: clamp(0.55rem, 2.2vw, 0.7rem);
  letter-spacing: .22em;
  color: var(--gold);
  opacity: 0.65;
  text-transform: uppercase;
}

/* H1 */
.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 19vw, 9rem);
  line-height: .9;
  letter-spacing: .01em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.h1-line {
  overflow: hidden;
  display: block;
}

.h1-inner { display: block; }

.hero-h1-gold {
  font-style: italic;
  color: var(--gold);
  animation: goldPulse 3s ease-in-out infinite;
}

@keyframes goldPulse {
  0%, 100% { text-shadow: 0 0 30px rgba(var(--gold-rgb), 0.2); }
  50%       { text-shadow: 0 0 55px rgba(var(--gold-rgb), 0.5), 0 0 100px rgba(var(--gold-rgb), 0.18); }
}

/* Football divider */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 280px;
}

.hero-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.3), transparent);
}

.hero-divider-icon {
  font-size: 1rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(var(--gold-rgb), 0.4));
}

/* Glass countdown */
.hero-countdown {
  display: flex;
  align-items: center;
  gap: .35rem;
  width: 100%;
  max-width: 380px;
}

.cd-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 10px;
  padding: .65rem .4rem .5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.cd-block.cd-pulse {
  box-shadow: 0 0 22px rgba(var(--gold-rgb), 0.5), 0 0 44px rgba(var(--gold-rgb), 0.15);
  border-color: rgba(var(--gold-rgb), 0.5);
}

.cd-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.35), transparent);
}

.cd-num {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 6vw, 3rem);
  line-height: 1;
  color: var(--gold);
  display: block;
  will-change: transform;
}

.cd-label {
  font-family: var(--font-heading);
  font-size: clamp(0.4rem, 1.4vw, 0.52rem);
  letter-spacing: .18em;
  color: var(--mist);
  margin-top: .15rem;
}

.cd-sep {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 4.5vw, 2.2rem);
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  padding-bottom: .85rem;
  flex-shrink: 0;
}

/* Sub */
.hero-sub {
  font-size: clamp(0.72rem, 2.8vw, 0.88rem);
  color: var(--mist);
  letter-spacing: .02em;
  max-width: 30ch;
  line-height: 1.55;
}

.hero-cta { margin-top: .1rem; }

/* Flag marquee */
.hero-flags {
  position: relative;
  z-index: 2;
  width: 100%;
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.07);
}

.hero-flags-track {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: flagScroll 45s linear infinite;
  font-size: clamp(2rem, 7vw, 3rem);
}

.hero-flags-track span {
  display: inline-block;
  transition: transform .25s var(--expo);
  cursor: default;
}

.hero-flags-track span:hover,
.hero-flags-track span:active { transform: scale(1.45); }

@keyframes flagScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (min-width: 768px) {
  .hero-inner { padding: 3rem 2.5rem 2rem; gap: 1.35rem; }
  .hero-countdown { max-width: 460px; gap: .55rem; }
  .cd-block { padding: .85rem .65rem .65rem; border-radius: 12px; }
}

@media (min-width: 1024px) {
  .hero-inner { padding: 3.5rem 4rem 2.5rem; }
  .hero-countdown { max-width: 540px; gap: .7rem; }
  .hero-h1 { font-size: clamp(5.5rem, 11vw, 10rem); }
}

/* ===== GENERAL / CLASSIC HERO ===== */
#hero-general {
  position: relative;
  height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-h) + 34px);
  overflow: hidden;
  background-color: var(--pitch, #080c06);
  background-image:
    radial-gradient(ellipse at 28% 48%, rgba(var(--gold-rgb), 0.05) 0%, transparent 52%),
    radial-gradient(ellipse at 72% 56%, rgba(220, 80, 30, 0.04) 0%, transparent 48%);
}

#hero-general .hg-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#hero-general .hg-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

#hero-general .hg-overlay {
  position: absolute;
  inset: 0;
  background: var(--hg-overlay-color, #080c06);
  opacity: var(--hg-overlay-opacity, 0.55);
  pointer-events: none;
}

#hero-general .hg-glow {
  position: absolute;
  width: 80vmax;
  height: 80vmax;
  background: radial-gradient(circle, var(--hg-accent, var(--gold)) 0%, transparent 65%);
  opacity: 0.10;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: stadiumBreath 5s ease-in-out infinite;
  pointer-events: none;
}

#hero-general .hg-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.25rem 1.25rem 1.5rem;
  gap: 1rem;
}

#hero-general .hg-label {
  color: var(--hg-accent, var(--gold));
  font-size: clamp(0.55rem, 2.2vw, 0.7rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0.75;
}

#hero-general .hg-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 19vw, 9rem);
  line-height: 0.9;
  letter-spacing: .02em;
  color: var(--chalk);
  margin: 0;
}

#hero-general .hg-h1-accent {
  font-style: italic;
  color: var(--hg-accent, var(--gold));
  animation: hgAccentPulse 3s ease-in-out infinite;
}

@keyframes hgAccentPulse {
  0%, 100% { text-shadow: 0 0 30px rgba(var(--hg-accent-rgb, 212, 175, 55), 0.25); }
  50%       { text-shadow: 0 0 55px rgba(var(--hg-accent-rgb, 212, 175, 55), 0.5), 0 0 100px rgba(var(--hg-accent-rgb, 212, 175, 55), 0.18); }
}

#hero-general .hg-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: 240px;
  width: 100%;
}

#hero-general .hg-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hg-accent, var(--gold)), transparent);
  opacity: 0.4;
}

#hero-general .hg-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hg-accent, var(--gold));
  opacity: 0.55;
  flex-shrink: 0;
}

#hero-general .hg-sub {
  font-size: clamp(0.72rem, 2.8vw, 0.88rem);
  color: var(--mist);
  max-width: 30ch;
  line-height: 1.6;
  opacity: 0.75;
}

#hero-general .hg-cta-group {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .1rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .85rem 1.9rem;
  background: transparent;
  color: var(--mist);
  border: 1px solid rgba(200, 195, 176, 0.4);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--expo);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--chalk);
  border-color: rgba(200, 195, 176, 0.75);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  #hero-general .hg-inner { padding: 3rem 2.5rem 2rem; gap: 1.35rem; }
}
@media (min-width: 1024px) {
  #hero-general .hg-inner { padding: 3.5rem 4rem 2.5rem; }
  #hero-general .hg-h1 { font-size: clamp(5.5rem, 11vw, 10rem); }
}

/* ===== MARQUEE ===== */
.marquee-wrap{overflow:hidden;background:var(--gold);padding:.7rem 0;position:relative;z-index:1}
.marquee-track{display:flex;gap:2.5rem;white-space:nowrap;animation:marquee 25s linear infinite}
.marquee-track span{font-family:'Bebas Neue',sans-serif;font-size:1rem;letter-spacing:.15em;color:var(--pitch);flex-shrink:0}
.marquee-track span.dot{color:var(--gold-dark)}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ===== SINGLE PRODUCT PAGE ===== */
.sp-container{padding:calc(var(--nav-h) + 4rem) clamp(1.2rem,5vw,4.5rem) 4rem;max-width:1300px;margin:0 auto}
.sp-breadcrumbs{font-size:.75rem;color:var(--dim);margin-bottom:2rem;letter-spacing:.05em}
.sp-breadcrumbs a{color:var(--mist);transition:color .3s}
.sp-breadcrumbs a:hover{color:var(--gold)}
.sp-breadcrumbs span{margin:0 8px;opacity:.5}

.sp-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,6vw,5rem);align-items:start}
.sp-image-wrap{background:#050806;padding:clamp(1.5rem,4vw,3rem);display:flex;flex-direction:column;gap:2rem;position:sticky;top:100px;align-self:flex-start;border-radius:8px;box-shadow:0 25px 50px rgba(0,0,0,0.6);z-index:10}
.sp-main-img{position:relative;display:flex;align-items:center;justify-content:center;width:100%}
.sp-main-img::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at center,rgba(245,224,117,.08) 0%,transparent 70%);pointer-events:none}
.sp-main-img img{width:100%;max-height:550px;object-fit:contain;position:relative;z-index:1;filter:drop-shadow(0 20px 40px rgba(0,0,0,.6));transition:opacity .2s ease}
.sp-thumbnails{display:flex;gap:1rem;justify-content:center;overflow-x:auto;padding-bottom:.5rem;scrollbar-width:thin;scrollbar-color:rgba(245,224,117,.2) transparent}
.sp-thumbnails::-webkit-scrollbar{height:4px}
.sp-thumbnails::-webkit-scrollbar-thumb{background:rgba(245,224,117,.3);border-radius:4px}
.sp-thumb{flex-shrink:0;width:75px;height:75px;border-radius:6px;border:2px solid transparent;background:rgba(255,255,255,.02);padding:6px;transition:all .3s}
.sp-thumb img{width:100%;height:100%;object-fit:contain;border-radius:2px;filter:brightness(.5);transition:filter .3s}
.sp-thumb:hover, .sp-thumb.active{border-color:var(--gold);background:rgba(245,224,117,.08)}
.sp-thumb:hover img, .sp-thumb.active img{filter:brightness(1)}

.sp-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(2.5rem,5vw,4.5rem);letter-spacing:.04em;line-height:1;margin-bottom:.5rem;color:var(--chalk)}
.sp-price-wrap{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem}
.sp-price{font-size:2rem;color:var(--gold);font-weight:700}
.sp-old-price{color:var(--dim);text-decoration:line-through;font-size:1.1rem;font-weight:300}
.sp-desc{color:var(--mist);line-height:1.8;margin-bottom:2rem;font-size:1rem}
.sp-action-row{display:flex;gap:1rem;margin-top:1.5rem;align-items:stretch}
.sp-qty{display:flex;align-items:center;border:1px solid rgba(245,224,117,.3);border-radius:4px;background:rgba(255,255,255,.02)}
.sp-qty button{padding:0 1rem;height:100%;color:var(--chalk);font-size:1.2rem;transition:color .3s,background .3s}
.sp-qty button:hover{color:var(--gold);background:rgba(245,224,117,.08)}
.sp-qty span{width:36px;text-align:center;font-weight:700;font-size:1.1rem;color:var(--chalk)}
@media(max-width:600px){.sp-action-row{flex-direction:column}}
@media(max-width:600px){.sp-qty{height:54px;justify-content:space-between}}

.sp-meta{margin-top:2rem;padding-top:1.5rem;border-top:1px solid rgba(245,224,117,.1);font-size:.8rem;color:var(--dim);display:flex;flex-direction:column;gap:.6rem}
.sp-meta strong{color:var(--mist);font-weight:600;margin-right:6px}
.sp-meta a{color:var(--chalk);transition:color .3s}
.sp-meta a:hover{color:var(--gold)}

/* Single Product Tabs */
.sp-tabs-section{margin-top:5rem}
.sp-tab-nav{display:flex;gap:2rem;border-bottom:1px solid rgba(245,224,117,.15);margin-bottom:2rem;overflow-x:auto;scrollbar-width:none}
.sp-tab-nav::-webkit-scrollbar{display:none}
.sp-tab-btn{background:none;border:none;color:var(--dim);font-size:1.1rem;font-family:'Bebas Neue',sans-serif;letter-spacing:.08em;padding-bottom:1rem;position:relative;cursor:pointer;transition:color .3s;white-space:nowrap}
.sp-tab-btn:hover{color:var(--chalk)}
.sp-tab-btn.active{color:var(--gold)}
.sp-tab-btn::after{content:'';position:absolute;bottom:-1px;left:0;width:0;height:2px;background:var(--gold);transition:width .3s var(--expo)}
.sp-tab-btn.active::after{width:100%}
.sp-tab-content{display:none;animation:fadeIn .5s ease forwards}
.sp-tab-content.active{display:block}
.sp-tab-content p{color:var(--mist);line-height:1.9;margin-bottom:1.2rem;font-size:.95rem}
.sp-related{margin-top:6rem}

/* ===== SIZE CHART ACCORDION ===== */
.size-chart{margin-bottom:1.5rem;border:1px solid var(--card-border);border-radius:6px;background:rgba(255,255,255,.02);overflow:hidden;}
.size-chart-header{padding:1rem;display:flex;justify-content:space-between;align-items:center;font-size:.85rem;font-weight:600;color:var(--chalk);transition:background .3s;}
.size-chart-header:hover{background:rgba(245,224,117,.04);}
.size-chart-arrow{font-size:.7rem;transition:transform .4s var(--expo);color:var(--dim);}
.size-chart-header.active .size-chart-arrow{transform:rotate(-180deg);color:var(--gold);}
.size-chart-content{max-height:0;opacity:0;transition:max-height .5s var(--expo),opacity .4s ease,padding .4s;overflow:hidden;}
.size-chart-content.active{max-height:400px;opacity:1;padding:0 1rem 1rem;}
.size-chart table{width:100%;border-collapse:collapse;text-align:left;font-size:.8rem;color:var(--mist);}
.size-chart th{padding:.6rem .5rem;border-bottom:1px solid rgba(245,224,117,.15);color:var(--chalk);font-weight:600;}
.size-chart td{padding:.6rem .5rem;border-bottom:1px solid rgba(255,255,255,.05);}
.size-chart tr:last-child td{border-bottom:none;}

/* ===== COMMON SECTION ===== */
section{padding:clamp(4rem,8vw,7rem) clamp(1.2rem,5vw,4.5rem)}
.section-label{
  font-size:.68rem;letter-spacing:.28em;text-transform:uppercase;
  color:var(--gold-dark);font-weight:600;
  display:flex;align-items:center;gap:10px;margin-bottom:.8rem;
}
.section-label::before{content:'';width:22px;height:1px;background:var(--gold-dark)}
.section-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(2.2rem,5.5vw,4.5rem);line-height:.95;letter-spacing:.04em;
}

/* ===== BUTTONS ===== */
.btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  padding:.9rem 2rem;
  background:var(--btn-bg);color:var(--btn-text);border:1px solid var(--btn-border);
  font-weight:700;font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;
  clip-path:polygon(0 0,calc(100% - 10px) 0,100% 100%,10px 100%);
  transition:background .3s,transform .3s var(--expo),box-shadow .3s;
  position:relative;overflow:hidden;
}
.btn-primary:hover{background:var(--btn-bg-hover);color:var(--btn-text-hover);border-color:var(--btn-border-hover);transform:translateY(-2px);box-shadow:0 10px 36px rgba(245,224,117,.2)}
.btn-ghost{
  display:inline-flex;align-items:center;gap:6px;
  font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;font-weight:600;
  color:var(--mist);border-bottom:1px solid rgba(200,195,176,.25);padding-bottom:2px;
  transition:color .3s,border-color .3s;
}
.btn-ghost:hover{color:var(--gold);border-color:var(--gold)}

/* ===== WC2026 BANNER ===== */
#wc-banner{
  padding:clamp(3rem,6vw,5rem) clamp(1.2rem,5vw,4.5rem);
  position:relative;overflow:hidden;
}
.wc-banner-grid{
  display:grid;grid-template-columns:1fr 1.15fr;align-items:center;gap:clamp(2rem, 4vw, 4rem);
}
.wc-banner-bg{
  position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 50% 100% at 80% 50%,rgba(192,57,43,.12) 0%,transparent 60%),
    radial-gradient(ellipse 40% 80% at 10% 50%,rgba(26,58,110,.15) 0%,transparent 60%);
}
.wc-banner-bg::after{
  content:'';position:absolute;inset:0;
  background-image:repeating-linear-gradient(90deg,transparent,transparent 79px,rgba(245,224,117,.01) 79px,rgba(245,224,117,.01) 80px),
    repeating-linear-gradient(0deg,transparent,transparent 79px,rgba(245,224,117,.01) 79px,rgba(245,224,117,.01) 80px);
}
.wc26-super{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(3.5rem,10vw,8rem);
  line-height:.85;letter-spacing:.04em;
  background:linear-gradient(90deg,var(--wc-red) 0%,var(--gold) 50%,var(--wc-blue) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.wc26-line-wrap{display:block;overflow:hidden}
.wc26-line{display:block}
.wc26-sub{font-size:clamp(.85rem,1.4vw,1rem);color:var(--mist);line-height:1.8;max-width:480px;margin:.8rem 0 1.5rem}
.host-cities{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:1.8rem}
.city-pill{
  font-size:.68rem;letter-spacing:.15em;text-transform:uppercase;font-weight:600;
  padding:5px 14px;border:1px solid rgba(245,224,117,.2);color:var(--mist);
  transition:border-color .3s,color .3s;
}
.city-pill:hover{border-color:var(--gold);color:var(--gold)}
.woocommerce ul.products.wc-banner-products { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; background: transparent; }
.woocommerce ul.products.wc-banner-products li.product { border-radius: 6px; overflow: hidden; border: 1px solid var(--card-border); }
@media(max-width: 600px) { .woocommerce ul.products.wc-banner-products { gap: 1rem; } }

.wc-banner-more { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.08); }
.woocommerce ul.products.wc-banner-more-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; background: transparent; }
.woocommerce ul.products.wc-banner-more-products li.product { border-radius: 6px; overflow: hidden; border: 1px solid var(--card-border); }
@media(max-width: 1024px) { .woocommerce ul.products.wc-banner-more-products { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 600px) { .woocommerce ul.products.wc-banner-more-products { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
.wc-banner-more-cta { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ===== SHOP SECTION ===== */
#shop{position:relative;isolation:isolate}
.shop-header{
  display:flex;align-items:flex-end;justify-content:space-between;
  flex-wrap:wrap;gap:1.5rem;margin-bottom:2.5rem;
}
/* ---- Category Nav ---- */
.cat-nav{
  display:flex;gap:0;overflow-x:auto;scrollbar-width:none;
  border-bottom:1px solid var(--card-border);
  margin-bottom:2.5rem;
}
.cat-nav::-webkit-scrollbar{display:none}
.cat-tab{
  padding:.8rem 1.4rem;
  font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;font-weight:600;
  color:var(--mist);white-space:nowrap;
  border-bottom:2px solid transparent;margin-bottom:-1px;
  transition:color .3s,border-color .3s;
}
.cat-tab.active{color:var(--gold);border-bottom-color:var(--gold)}
.cat-tab:hover{color:var(--chalk)}

/* ---- Filter/Sort bar ---- */
.filter-bar{
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:1rem;margin-bottom:2rem;
}
.filter-chips{display:flex;gap:.5rem;flex-wrap:wrap}
.filter-chip{
  font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;font-weight:600;
  padding:4px 12px;border:1px solid var(--card-border);color:var(--dim);
  transition:all .3s;
}
.filter-sort-group{display:flex;align-items:center;gap:1rem;flex-wrap:wrap}
.filter-chip.active,.filter-chip:hover{border-color:var(--gold);color:var(--gold);background:rgba(245,224,117,.04)}
.sort-select{
  background:var(--card-bg);border:1px solid var(--card-border);
  color:var(--mist);padding:6px 12px;font-family:inherit;font-size:.75rem;
  outline:none;cursor:none;
}
.product-count{font-size:.75rem;color:var(--dim);letter-spacing:.06em}

/* Mobile Responsive Filters */
@media(max-width:768px){
  .filter-chips{flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none;width:100%;padding-bottom:.4rem}
  .filter-chips::-webkit-scrollbar{display:none}
  .filter-chip{white-space:nowrap;flex-shrink:0}
  .filter-sort-group{justify-content:space-between;width:100%}
}

/* ---- Product Grid ---- */
/* WooCommerce: ul.products */
.woocommerce ul.products{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(min(100%,240px),1fr));
  gap:1px; /* pitch-line joints */
  list-style:none;
}
/* WooCommerce: li.product */
.woocommerce ul.products li.product{
  background:var(--card-bg);
  position:relative;display:flex;flex-direction:column;
  transition:transform .5s var(--expo);
  /* WC class hooks: .type-product .status-publish */
}
.woocommerce ul.products li.product.hide-filter {
  opacity: 0 !important;
  transform: scale(0.92) translateY(10px) !important;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease !important;
}
.woocommerce ul.products li.product:hover{transform:translateY(-4px) scale(1.015);z-index:2;box-shadow:0 20px 60px rgba(0,0,0,.5)}

/* Shop Skeleton Loader */
.skeleton-card { pointer-events: none; }
.skeleton-img { width: 100%; aspect-ratio: 4/5; background: rgba(255,255,255,.02); position: relative; overflow: hidden; }
.skeleton-text { background: rgba(255,255,255,.04); border-radius: 2px; position: relative; overflow: hidden; }
.skeleton-img::after, .skeleton-text::after { content: ''; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent); animation: shimmer 1.5s infinite; }

/* WC: .woocommerce-loop-product__link */
.woocommerce ul.products li.product .product-link{display:block;position:relative;overflow:hidden;aspect-ratio:4/5}
.woocommerce ul.products li.product .product-link img{
  width:100%;height:100%;object-fit:cover;
  filter:saturate(.8) brightness(.95);
  transition:transform .7s var(--expo),filter .5s;
}
.woocommerce ul.products li.product:hover .product-link img{transform:scale(1.1);filter:saturate(1.1) brightness(1.05)}
/* WC: .onsale */
.woocommerce span.onsale{
  position:absolute;top:.8rem;left:.8rem;z-index:2;
  background:var(--wc-red);color:#fff;
  font-size:.58rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  padding:3px 10px;
  clip-path:polygon(0 0,calc(100% - 5px) 0,100% 100%,5px 100%);
}
.badge-new{
  position:absolute;top:.8rem;left:.8rem;z-index:2;
  background:var(--gold);color:var(--pitch);
  font-size:.58rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  padding:3px 10px;
  clip-path:polygon(0 0,calc(100% - 5px) 0,100% 100%,5px 100%);
}
.badge-wc{
  position:absolute;top:.8rem;right:.8rem;z-index:2;
  background:linear-gradient(135deg,var(--wc-red),var(--wc-blue));
  color:#fff;font-size:.55rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  padding:3px 8px;border-radius:2px;
}
/* Product action overlay */
.woocommerce ul.products li.product .product-actions{
  position:absolute;inset:0;z-index:3;
  display:flex;flex-direction:column;align-items:center;justify-content:flex-end;
  padding:1.2rem;gap:.5rem;
  background:linear-gradient(to top,rgba(8,12,6,.85) 0%,transparent 55%);
  opacity:0;transition:opacity .4s;
}
.woocommerce ul.products li.product:hover .product-actions{opacity:1}
/* WC: .add_to_cart_button */
.woocommerce a.button.add_to_cart_button{
  width:100%;padding:.65rem 1rem;
  background:var(--btn-bg);color:var(--btn-text);border:1px solid var(--btn-border);
  font-weight:700;font-size:.72rem;letter-spacing:.15em;text-transform:uppercase;
  clip-path:polygon(0 0,calc(100% - 7px) 0,100% 100%,7px 100%);
  transition:background .3s,transform .3s;
  display:inline-block;
  text-align:center;
}
.woocommerce a.button.add_to_cart_button:hover{background:var(--btn-bg-hover);color:var(--btn-text-hover);border-color:var(--btn-border-hover);transform:translateY(-2px)}
.btn-quick-view{
  width:100%;padding:.5rem 1rem;
  background:var(--btn-qv-bg);
  border:1px solid var(--btn-qv-border);
  color:var(--btn-qv-text);
  font-size:.68rem;letter-spacing:.15em;text-transform:uppercase;font-weight:600;
  transition:border-color .3s,background .3s,color .3s;
}
.btn-quick-view:hover{
  border-color:var(--btn-qv-border-hover);
  background:var(--btn-qv-bg-hover);
  color:var(--btn-qv-text-hover);
}

/* WC: .woocommerce-loop-product__title + .price */
.product-info{
  padding:1rem 1.1rem .8rem;border-top:1px solid var(--card-border);
  flex:1;display:flex;flex-direction:column;
}
.product-category-tag{
  font-size:.6rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--gold-dark);font-weight:600;margin-bottom:.3rem;
}
/* WC: woocommerce-loop-product__title */
.woocommerce-loop-product__title{
  font-family:'Bebas Neue',sans-serif;font-size:1.05rem;
  letter-spacing:.06em;color:var(--chalk);line-height:1.1;
}
.product-sub{font-size:.7rem;color:var(--dim);margin:.2rem 0 .5rem}
/* WC: .price */
.price{
  display:flex;align-items:center;gap:.4rem;margin-top:auto;padding-top:.5rem;
}
.price ins{font-weight:700;color:var(--gold);font-size:.95rem;text-decoration:none}
.price del{color:var(--dim);font-size:.78rem;font-weight:300}
/* WC: star-rating */
.star-rating{
  display:flex;gap:1px;margin:.3rem 0 0;
}
.star-rating span{color:var(--gold);font-size:.6rem}
.star-rating span.empty{color:rgba(181,166,78,.25)}
.review-count{font-size:.6rem;color:var(--dim);margin-left:.3rem}

/* ===== CATEGORY CARDS ===== */

.categories-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;margin-top:2.5rem;
  perspective:1200px;
}
.cat-card{
  position:relative;overflow:hidden;
  aspect-ratio:1/1;cursor:none;
  display:block;text-decoration:none;
}
.cat-card:first-child{grid-row:auto;aspect-ratio:1/1}
.cat-card img{
  position:absolute;
  inset:-7%;
  width:114%;height:114%;
  object-fit:cover;
  filter:saturate(.6) brightness(.65);
  transition:filter .6s;
  will-change:transform;
}
.cat-card:hover img{filter:saturate(.95) brightness(.8)}
.cat-card-badge{
  position:absolute;top:1rem;right:1rem;z-index:2;
  background:rgba(var(--gold-rgb),.1);
  border:1px solid rgba(var(--gold-rgb),.3);
  color:var(--gold);
  font-size:.58rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  padding:3px 10px;border-radius:20px;
  backdrop-filter:blur(6px);
  transition:background .3s,border-color .3s;
}
.cat-card:hover .cat-card-badge{background:rgba(var(--gold-rgb),.2);border-color:var(--gold)}
.cat-card-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.92) 0%,rgba(0,0,0,.3) 44%,transparent 70%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:1.5rem 1.2rem;gap:.55rem;
  transition:background .5s;
}
.cat-card:hover .cat-card-overlay{
  background:linear-gradient(to top,rgba(0,0,0,.97) 0%,rgba(0,0,0,.55) 55%,rgba(0,0,0,.15) 100%);
}
.cat-card-title{
  font-family:'Bebas Neue',sans-serif;font-size:clamp(1.4rem,3vw,2.2rem);
  letter-spacing:.06em;color:var(--chalk);line-height:1.05;
}
.cat-card-link{
  display:inline-flex;align-items:center;gap:6px;
  font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;font-weight:700;
  color:var(--gold);
  opacity:0;transform:translateY(8px);
  transition:opacity .3s .05s,transform .3s .05s,gap .3s;
}
.cat-card:hover .cat-card-link{opacity:1;transform:translateY(0)}
.cat-card:hover .cat-card-link:hover{gap:12px}

/* Section overlay — controllable tint layer via Customizer, sits above section bg, below all content */
.section-overlay{position:absolute;inset:0;pointer-events:none;z-index:-1}
#wc-banner,#story,#reviews{isolation:isolate}

/* ===== STORY ===== */
#story{
  position:relative;overflow:hidden;
}
.story-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(3rem,7vw,7rem);align-items:center;
}
.story-img-wrap{position:relative}
.story-img-main{
  aspect-ratio:.8;overflow:hidden;position:relative;
}
.story-img-main img{width:100%;height:100%;object-fit:cover;filter:saturate(.75)}
.story-img-accent{
  position:absolute;bottom:-1.5rem;right:-1.5rem;
  width:48%;aspect-ratio:1;overflow:hidden;
  border:3px solid var(--pitch);z-index:2;
}
.story-img-accent img{width:100%;height:100%;object-fit:cover}
.story-stat{
  position:absolute;top:1.5rem;left:-1.5rem;z-index:3;
  background:var(--gold);color:var(--pitch);padding:1rem 1.2rem;
}
.story-stat-num{font-family:'Bebas Neue',sans-serif;font-size:2.2rem;line-height:1}
.story-stat-label{font-size:.6rem;letter-spacing:.15em;font-weight:700;text-transform:uppercase}
.story-body{padding:1rem 0}
.story-quote{
  font-family:'Playfair Display',serif;font-style:italic;
  font-size:clamp(1.1rem,2vw,1.6rem);color:var(--gold);line-height:1.5;
  border-left:2px solid var(--gold);padding-left:1.4rem;
  margin:1.2rem 0;
}
.story-text{font-size:.9rem;line-height:1.9;color:var(--mist);font-weight:300;margin-bottom:1rem}
.story-badges{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.5rem}
.story-badge{
  font-size:.65rem;letter-spacing:.15em;text-transform:uppercase;font-weight:600;
  padding:.35rem .9rem;border:1px solid rgba(245,224,117,.2);color:var(--gold);
  transition:background .3s;
}
.story-badge:hover{background:rgba(245,224,117,.08)}

/* ===== REVIEWS ===== */
#reviews{position:relative}
.reviews-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem;margin-top:2.5rem}
.review-card{
  position:relative;overflow:hidden;
  background:var(--card-bg);
  border:1px solid var(--card-border);border-left:3px solid rgba(var(--gold-rgb),.4);
  padding:2rem;border-radius:6px;
  display:flex;flex-direction:column;gap:1.2rem;
  transition:transform .3s,box-shadow .3s,border-left-color .3s
}
.review-card::before{
  content:'\201C';position:absolute;top:-.5rem;right:1.2rem;
  font-family:'Bebas Neue',sans-serif;font-size:7rem;line-height:1;
  color:var(--gold);opacity:.07;pointer-events:none
}
.review-card:hover{transform:translateY(-5px);box-shadow:0 15px 30px rgba(0,0,0,.4);border-left-color:var(--gold)}
.review-text{font-size:.88rem;line-height:1.8;color:var(--chalk);font-style:italic;flex:1}
.review-footer{display:flex;align-items:center;gap:.8rem;margin-top:auto;padding-top:1.2rem;border-top:1px solid var(--card-border)}
.review-avatar{
  width:38px;height:38px;border-radius:50%;flex-shrink:0;
  background:rgba(var(--gold-rgb),.1);border:1px solid rgba(var(--gold-rgb),.25);
  color:var(--gold);font-size:.65rem;font-weight:700;letter-spacing:.05em;
  display:flex;align-items:center;justify-content:center
}
.review-author-info{flex:1;min-width:0}
.review-author-name{font-size:.75rem;font-weight:700;color:var(--chalk);letter-spacing:.05em}
.review-stars{color:var(--gold);font-size:.65rem;letter-spacing:2px;margin-top:2px}
.verified{
  font-size:.55rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--gold);border:1px solid rgba(var(--gold-rgb),.3);
  padding:3px 9px;border-radius:20px;white-space:nowrap;flex-shrink:0
}

/* ===== NEWSLETTER ===== */
#newsletter{
  position:relative;overflow:hidden;
  padding:clamp(4rem,8vw,7rem) clamp(1.2rem,5vw,4.5rem);
}
/* pitch center circle BG decoration */
#newsletter::before{
  content:'';position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:600px;height:600px;border-radius:50%;
  border:1px solid rgba(245,224,117,.04);pointer-events:none;
}
#newsletter::after{
  content:'';position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:300px;height:300px;border-radius:50%;
  border:1px solid rgba(245,224,117,.06);pointer-events:none;
}
.newsletter-inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:center;
}
.newsletter-left .section-title{margin-bottom:.8rem}
.newsletter-left p{font-size:.9rem;color:var(--mist);line-height:1.8}
.newsletter-perks{list-style:none;margin-top:1.5rem;display:flex;flex-direction:column;gap:.6rem}
.newsletter-perks li{
  display:flex;align-items:center;gap:.7rem;
  font-size:.82rem;color:var(--mist);
}
.newsletter-perks li::before{content:'⚽';font-size:.65rem}
.newsletter-form-wrap{}
.newsletter-form{display:flex;flex-direction:column;gap:.8rem}
.form-group{display:flex;flex-direction:column;gap:.3rem}
.form-group label{font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-dark);font-weight:600}
.form-group input{
  padding:.9rem 1.2rem;
  background:rgba(255,255,255,.04);border:1px solid rgba(245,224,117,.15);
  color:var(--chalk);font-family:inherit;font-size:.88rem;
  outline:none;transition:border-color .3s;
}
.form-group input:focus{border-color:var(--gold)}
.form-group input::placeholder{color:var(--dim)}
.newsletter-form button{
  padding:1rem 1.5rem;
  background:var(--gold);color:var(--pitch);
  font-weight:700;font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;
  clip-path:polygon(0 0,calc(100% - 10px) 0,100% 100%,10px 100%);
  transition:background .3s,transform .3s;
}
.newsletter-form button:hover{background:#fff;transform:translateY(-2px)}
.newsletter-note{font-size:.68rem;color:var(--dim);margin-top:.4rem}

/* ===== FOOTER ===== */
footer{
  background:#040705;
  padding:clamp(3rem,7vw,5rem) clamp(1.2rem,5vw,4.5rem) 1.5rem;
}
.footer-top{
  display:grid;grid-template-columns:1.8fr 1fr 1fr 1fr;
  gap:2.5rem;padding-bottom:2.5rem;
  border-bottom:1px solid rgba(245,224,117,.06);
  margin-bottom:1.5rem;
}
.footer-brand img{height:38px;margin-bottom:1rem}
.footer-brand p{font-size:.83rem;line-height:1.8;color:var(--mist);max-width:260px;margin-bottom:1.2rem}
.footer-socials{display:flex;gap:.6rem}
.social-link{
  width:34px;height:34px;border:1px solid rgba(245,224,117,.12);
  display:flex;align-items:center;justify-content:center;
  color:var(--mist);font-size:.7rem;transition:all .3s;
}
.social-link:hover{border-color:var(--gold);color:var(--gold);background:rgba(245,224,117,.05)}
.social-link svg{width:14px;height:14px;fill:currentColor}
.footer-col h4{
  font-size:.65rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold-dark);font-weight:700;margin-bottom:1.1rem;
}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.55rem}
.footer-col ul a{font-size:.83rem;color:var(--mist);transition:color .3s}
.footer-col ul a:hover{color:var(--gold)}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;
}
.footer-copy{font-size:.72rem;color:rgba(200,195,176,.35)}
.footer-pay{display:flex;gap:.5rem;align-items:center}
.pay-chip{
  font-size:.58rem;letter-spacing:.1em;text-transform:uppercase;font-weight:700;
  border:1px solid rgba(245,224,117,.1);color:var(--dim);
  padding:3px 8px;
}

/* ===== MODAL ===== */
.modal-overlay{
  position:fixed;inset:0;z-index:2000;
  background:rgba(4,7,5,.93);backdrop-filter:blur(14px);
  display:flex;align-items:center;justify-content:center;padding:2rem;
  opacity:0;pointer-events:none;transition:opacity .4s;
}
.modal-overlay.open{opacity:1;pointer-events:all}
.modal{
  background:var(--card-bg);max-width:820px;width:100%;
  display:grid;grid-template-columns:1fr 1fr;
  position:relative;transform:scale(.93);transition:transform .4s var(--expo);
  max-height:90vh;border-radius:6px;overflow:hidden;box-shadow:0 25px 50px rgba(0,0,0,0.6);
}
.modal-overlay.open .modal{transform:scale(1)}
.modal-img{
  background:#050806;display:flex;align-items:center;justify-content:center;
  padding:2.5rem;position:relative;
}
/* Premium Glow Effect Behind Jersey */
.modal-img::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at center,rgba(245,224,117,.08) 0%,transparent 70%);pointer-events:none;}
.modal-img img{width:100%;height:100%;max-height:450px;object-fit:contain;position:relative;z-index:1;filter:drop-shadow(0 15px 30px rgba(0,0,0,.5))}
.skeleton-img-loader{position:absolute;inset:2.5rem;background:rgba(255,255,255,.03);border-radius:8px;z-index:2;overflow:hidden;transition:opacity .4s ease;}
.skeleton-img-loader::after{content:'';position:absolute;inset:0;transform:translateX(-100%);background:linear-gradient(90deg,transparent,rgba(255,255,255,.05),transparent);animation:shimmer 1.5s infinite;}
@keyframes shimmer{100%{transform:translateX(100%);}}
.modal-body{
  padding:2rem 1.8rem;display:flex;flex-direction:column;justify-content:flex-start;
  overflow-y:auto;scrollbar-width:thin;scrollbar-color:rgba(245,224,117,.3) transparent;
}
.modal-body::-webkit-scrollbar{width:4px}
.modal-body::-webkit-scrollbar-thumb{background:rgba(245,224,117,.3);border-radius:4px}
.modal-close{
  position:absolute;top:.8rem;right:.8rem;
  width:30px;height:30px;background:rgba(245,224,117,.08);
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;color:var(--chalk);transition:background .3s;z-index:10;
}
.modal-close:hover{background:var(--gold);color:var(--pitch)}
.modal-body h3{font-family:'Bebas Neue',sans-serif;font-size:1.8rem;letter-spacing:.06em}
.modal-price{font-size:1.3rem;color:var(--gold);font-weight:700;margin:.4rem 0 .8rem}
.modal-desc{font-size:.85rem;line-height:1.8;color:var(--mist);margin-bottom:1.2rem}
.modal-sizes{display:flex;gap:.4rem;flex-wrap:wrap;margin-bottom:1.2rem}
.sz{
  padding:.35rem .8rem;border:1px solid rgba(245,224,117,.18);
  font-size:.72rem;color:var(--mist);transition:all .3s;
}
.sz.active,.sz:hover{border-color:var(--gold);color:var(--gold);background:rgba(245,224,117,.05)}
.modal-actions{display:flex;gap:.6rem;flex-direction:column}

/* ===== MODAL CUSTOMIZATION ===== */
.modal-customization{margin-bottom:1.5rem;border-top:1px solid var(--card-border);padding-top:1.2rem}
.custom-title{font-size:.65rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold-dark);margin-bottom:.8rem}
/* Checkbox */
.custom-checkbox{display:flex;align-items:center;gap:8px;cursor:pointer;font-size:.75rem;color:var(--chalk);margin-bottom:1rem;font-weight:600}
.custom-checkbox input{display:none}
.checkmark{width:18px;height:18px;border:1px solid rgba(245,224,117,.3);display:inline-flex;align-items:center;justify-content:center;transition:all .2s;position:relative;border-radius:3px}
.custom-checkbox:hover .checkmark{border-color:var(--gold)}
.custom-checkbox input:checked + .checkmark{background:var(--gold);border-color:var(--gold)}
.custom-checkbox input:checked + .checkmark::after{content:'✓';color:var(--pitch);font-size:.7rem;font-weight:900}
/* Name/Num Input */
.name-num-input{margin-bottom:1.2rem;display:grid;grid-template-columns:2fr 1fr;gap:8px}
.name-num-input input{width:100%;padding:.8rem 1rem;background:rgba(255,255,255,.03);border:1px solid rgba(245,224,117,.15);color:var(--chalk);font-family:inherit;font-size:.85rem;outline:none;transition:border-color .3s;border-radius:4px}
.name-num-input input:focus{border-color:var(--gold)}
/* Badge Selector (Cards) */
.badge-selector{display:flex;gap:.8rem;overflow-x:auto;padding-bottom:.8rem;scrollbar-width:thin;scrollbar-color:rgba(245,224,117,.3) transparent}
.badge-selector::-webkit-scrollbar{height:4px}
.badge-selector::-webkit-scrollbar-thumb{background:rgba(245,224,117,.3);border-radius:4px}
.badge-option{cursor:pointer;flex-shrink:0}
.badge-option input{display:none}
.badge-card{
  border:1px solid var(--card-border);padding:.8rem .6rem;width:85px;
  display:flex;flex-direction:column;align-items:center;text-align:center;
  background:rgba(255,255,255,.02);transition:all .3s;border-radius:6px;
}
.badge-option:hover .badge-card{border-color:rgba(245,224,117,.4)}
.badge-option input:checked + .badge-card{border-color:var(--gold);background:rgba(245,224,117,.08)}
.badge-card img, .badge-img-placeholder{width:42px;height:42px;object-fit:contain;margin-bottom:.6rem;border-radius:4px;filter:drop-shadow(0 2px 4px rgba(0,0,0,0.3))}
.badge-img-placeholder{display:flex;align-items:center;justify-content:center;font-size:1.5rem;background:rgba(255,255,255,.05);color:var(--mist);border-radius:50%}
.badge-name{font-size:.58rem;color:var(--chalk);line-height:1.2;margin-bottom:.3rem;height:16px;overflow:hidden;text-transform:uppercase;letter-spacing:.05em}
.badge-price{font-size:.65rem;color:var(--gold);font-weight:700}

/* ===== TOAST ===== */
.toast{
  position:fixed;bottom:2rem;left:50%;transform:translateX(-50%) translateY(20px);
  background:var(--gold);color:var(--pitch);
  padding:.75rem 1.8rem;font-weight:700;font-size:.82rem;letter-spacing:.1em;
  opacity:0;pointer-events:none;z-index:3000;
  clip-path:polygon(0 0,calc(100% - 10px) 0,100% 100%,10px 100%);
  transition:opacity .3s,transform .35s var(--expo);
}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

/* ===== SEARCH OVERLAY ===== */
.search-overlay{
  position:fixed;inset:0;z-index:4000;
  background:rgba(4,7,5,.96);backdrop-filter:blur(16px);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .4s ease;
}
.search-overlay.open{opacity:1;pointer-events:all}
.search-close{
  position:absolute;top:2rem;right:clamp(1.2rem,5vw,3.5rem);
  width:44px;height:44px;background:rgba(245,224,117,.08);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;color:var(--chalk);transition:all .3s;
}
.search-close:hover{background:var(--gold);color:var(--pitch);transform:rotate(90deg)}
.search-content{width:100%;max-width:800px;padding:2rem;transform:translateY(20px);transition:transform .5s var(--expo)}
.search-overlay.open .search-content{transform:translateY(0)}
.search-input-wrap{position:relative;display:flex;align-items:center;border-bottom:2px solid rgba(245,224,117,.3);transition:border-color .3s;padding-bottom:.5rem}
.search-input-wrap:focus-within{border-color:var(--gold)}
.search-input-wrap svg{position:absolute;left:0;color:var(--gold)}
.search-input-wrap input{
  width:100%;background:transparent;border:none;
  padding:1rem 1rem 0 3.5rem;color:var(--chalk);
  font-family:'Bebas Neue',sans-serif;font-size:clamp(2.5rem,6vw,4.5rem);
  outline:none;letter-spacing:.03em;
}
.search-input-wrap input::placeholder{color:rgba(184,179,160,.25)}
.search-trending{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;margin-top:1.5rem;font-size:.75rem;color:var(--dim)}
.search-trending a{color:var(--mist);border:1px solid rgba(245,224,117,.15);padding:4px 14px;border-radius:20px;transition:all .3s;letter-spacing:.05em}
.search-trending a:hover{color:var(--pitch);background:var(--gold);border-color:var(--gold)}

/* ===== CART DRAWER ===== */
.cart-overlay{
  position:fixed;inset:0;z-index:5000;
  background:rgba(4,7,5,.85);backdrop-filter:blur(10px);
  opacity:0;pointer-events:none;transition:opacity .4s ease;
}
.cart-overlay.open{opacity:1;pointer-events:all}
.cart-drawer{
  position:absolute;top:0;right:0;bottom:0;width:100%;max-width:420px;
  background:var(--pitch);border-left:1px solid rgba(245,224,117,.1);
  box-shadow:-15px 0 40px rgba(0,0,0,.7);display:flex;flex-direction:column;
  transform:translateX(100%);transition:transform .5s var(--expo);
}
.cart-overlay.open .cart-drawer{transform:translateX(0)}
.cart-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.5rem;border-bottom:1px solid var(--card-border);
}
.cart-header h3{font-family:'Bebas Neue',sans-serif;font-size:1.6rem;letter-spacing:.06em;color:var(--chalk)}
.cart-close{
  width:38px;height:38px;background:rgba(245,224,117,.08);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;color:var(--chalk);transition:all .3s;
}
.cart-close:hover{background:var(--gold);color:var(--pitch);transform:rotate(90deg)}
.cart-items{flex:1;overflow-y:auto;padding:1.5rem;scrollbar-width:thin;scrollbar-color:rgba(245,224,117,.3) transparent}
.cart-items::-webkit-scrollbar{width:4px}
.cart-items::-webkit-scrollbar-thumb{background:rgba(245,224,117,.3);border-radius:4px}
.empty-cart-msg{text-align:center;color:var(--dim);margin-top:2rem;font-size:.9rem}
.cart-footer{padding:1.5rem;border-top:1px solid var(--card-border);background:var(--card-bg)}
.cart-subtotal{display:flex;justify-content:space-between;align-items:center;font-weight:700;font-size:1.1rem;margin-bottom:.5rem}
.cart-subtotal .gold{color:var(--gold)}
.cart-tax-note{font-size:.7rem;color:var(--dim);margin-bottom:1.2rem}
.btn-clear-cart{
  width:100%;margin-top:1.2rem;background:none;border:none;
  color:var(--dim);font-size:.75rem;letter-spacing:.1em;
  text-transform:uppercase;font-weight:600;
  transition:color .3s;text-decoration:underline;text-underline-offset:4px;
}
.btn-clear-cart:hover{color:var(--wc-red)}

/* ===== CART ITEMS & ANIMATION ===== */
.cart-item{
  display:flex;gap:1rem;align-items:center;
  padding-bottom:1rem;margin-bottom:1rem;
  border-bottom:1px solid rgba(245,224,117,.1);
  animation:cartItemIn .5s var(--expo) forwards;
  opacity:0;transform:translateX(30px);
}
@keyframes cartItemIn{to{opacity:1;transform:translateX(0)}}
.cart-item img{
  width:65px;height:65px;object-fit:contain;
  background:rgba(255,255,255,.02);border-radius:4px;padding:4px;
}
.cart-item-info{flex:1}
.cart-item-title{font-family:'Bebas Neue',sans-serif;font-size:1.15rem;color:var(--chalk);letter-spacing:.05em;line-height:1.1;margin-bottom:.2rem}
.cart-item-meta{font-size:.65rem;color:var(--dim);margin-bottom:.4rem;line-height:1.4}
.cart-item-price{font-size:.85rem;font-weight:700;color:var(--gold)}

/* Cart Item Quantity Selector */
.cart-item-qty{
  display:flex;align-items:center;border:1px solid rgba(245,224,117,.15);
  border-radius:4px;margin-top:.6rem;width:fit-content;background:rgba(255,255,255,.02);
}
.qty-btn{
  background:none;color:var(--chalk);border:none;
  padding:4px 10px;cursor:pointer;font-size:1rem;
  transition:color .3s,background .3s;
}
.qty-btn:hover{color:var(--gold);background:rgba(245,224,117,.08)}
.qty-num{
  font-size:.8rem;padding:0 8px;color:var(--chalk);
  min-width:28px;text-align:center;font-weight:600;
  pointer-events:none;
}

/* Cart Remove Button */
.cart-item-remove{
  background:none;border:none;color:var(--dim);padding:6px;
  display:flex;align-items:center;justify-content:center;
  transition:color .3s,transform .3s;
}
.cart-item-remove:hover{color:var(--wc-red);transform:scale(1.1)}
@keyframes cartItemOut{from{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(30px)}}

/* ===== FLOATING WHATSAPP ===== */
.float-wa{
  position:fixed;bottom:2rem;right:2rem;z-index:9000;
  width:54px;height:54px;background:#25D366;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(37,211,102,.4);
  transition:transform .3s var(--expo),box-shadow .3s;
}
.float-wa:hover{transform:translateY(-4px) scale(1.05);box-shadow:0 12px 32px rgba(37,211,102,.6)}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
.story-grid{grid-template-columns:1fr}
  .story-img-wrap{display:none}
  .categories-grid{grid-template-columns:1fr 1fr}
  .cat-card:first-child{grid-row:auto;aspect-ratio:3/4}
  .wc-banner-grid{grid-template-columns:1fr}
  .newsletter-inner{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .promo-bar{gap:1rem;font-size:.55rem}
  .promo-bar span{gap:4px}
  .nav-links,.wc26-badge{display:none}
  .hamburger{display:flex}
  .categories-grid{grid-template-columns:1fr}
  .cat-card:first-child{grid-row:auto}
  .modal{grid-template-columns:1fr}
  .sp-grid{grid-template-columns:1fr;gap:2.5rem}
  .sp-image-wrap{padding:2rem}
  .sp-image-wrap{position:relative;top:0} /* Disable sticky on mobile */
  .modal-img{aspect-ratio:16/9;padding:1.5rem}
  .modal-img img{max-height:220px}
  .modal-body{padding:1.5rem 1.5rem 0;overflow-x:hidden}
  .modal-actions{
    position:-webkit-sticky;position:sticky;bottom:0;
    background:rgba(16,25,8,0.98);backdrop-filter:blur(10px);
    padding:1rem 1.5rem 1.5rem;margin:0 -1.5rem 0;
    border-top:1px solid rgba(245,224,117,.15);z-index:20;
    box-shadow:0 -15px 30px rgba(0,0,0,0.6);
  }
}
@media(max-width:600px){
  .footer-top{grid-template-columns:1fr}
  .products{grid-template-columns:repeat(2,1fr)}
  .hero-countries{display:none}
  .float-wa{bottom:1.5rem;right:1.5rem;width:48px;height:48px}
}

/* ===== WOOCOMMERCE CART & CHECKOUT PAGES ===== */
.wc-page-container{padding:calc(var(--nav-h) + 4rem) clamp(1.2rem,5vw,4.5rem) 4rem;max-width:1300px;margin:0 auto;min-height:70vh}
.wc-page-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(2.5rem,5vw,4rem);letter-spacing:.04em;color:var(--chalk);margin-bottom:2rem;border-bottom:1px solid rgba(245,224,117,.15);padding-bottom:1rem}
.wc-layout-grid{display:grid;grid-template-columns:1.8fr 1fr;gap:clamp(2rem,4vw,4rem);align-items:start}
@media(max-width:900px){.wc-layout-grid{grid-template-columns:1fr}}

/* Cart Table */
.wc-table-wrap{overflow:auto; scrollbar-width:thin;scrollbar-color:rgba(245,224,117,.3) transparent;margin-bottom:2rem}
.wc-table{width:100%;border-collapse:collapse;text-align:left;min-width:600px}
.wc-table th{padding:1rem;border-bottom:1px solid rgba(245,224,117,.15);color:var(--dim);font-size:.75rem;text-transform:uppercase;letter-spacing:.1em}
.wc-table td{padding:1.5rem 1rem;border-bottom:1px solid rgba(255,255,255,.05);vertical-align:middle}
.wc-table .product-remove{width:40px;min-width:40px;max-width:40px;text-align:center}
.wc-table .product-remove a{color:var(--dim);font-size:1.2rem;transition:color .3s}
.wc-table .product-remove a:hover{color:var(--wc-red)}
.wc-table .product-thumbnail img{width:80px;height:80px;object-fit:contain;background:rgba(255,255,255,.02);border-radius:4px;padding:4px}
.wc-table .product-name a{color:var(--chalk);font-weight:600;font-size:1.1rem;transition:color .3s}
.wc-table .product-name a:hover{color:var(--gold)}
.wc-table .product-meta{font-size:.75rem;color:var(--dim);margin-top:.4rem;line-height:1.4}
.wc-table .product-price, .wc-table .product-subtotal{color:var(--gold);font-weight:700}
.wc-table .sp-qty{display:inline-flex;height:42px}

/* Mobile Responsive Cart Table */
@media(max-width:768px){
  .wc-table-wrap{overflow-x:hidden}
  .wc-table{min-width:100%}
  .wc-table thead{display:none}
  .wc-table tr{display:block;padding:1.5rem 0;border-bottom:1px solid rgba(245,224,117,.15);position:relative}
  .wc-table td{display:flex;align-items:center;justify-content:space-between;padding:.8rem 0;border:none;text-align:right}
  .wc-table td::before{content:attr(data-title);font-size:.75rem;color:var(--dim);text-transform:uppercase;letter-spacing:.1em;font-weight:600;padding-right:1rem}
  .wc-table .product-remove{position:absolute;top:1rem;right:0;width:auto;padding:0}
  .wc-table .product-thumbnail{justify-content:center;padding-top:0;margin-bottom:1rem}
  .wc-table .product-name{flex-direction:column;align-items:flex-end;gap:.4rem}
}

/* Checkout Forms */
.wc-checkout-fields h3, .woocommerce-billing-fields h3{font-family:'Bebas Neue',sans-serif;font-size:1.8rem;margin-bottom:1.5rem;letter-spacing:.05em}
.wc-form-row{margin-bottom:1.5rem}
.wc-form-row label{display:block;font-size:.8rem;color:var(--mist);margin-bottom:.5rem;font-weight:600}
.wc-form-row input, .wc-form-row select, .wc-form-row textarea{width:100%;padding:1rem 1.2rem;background:rgba(255,255,255,.02);border:1px solid rgba(245,224,117,.15);color:var(--chalk);border-radius:4px;font-family:inherit;font-size:.9rem;transition:border-color .3s}
.wc-form-row input:focus, .wc-form-row select:focus, .wc-form-row textarea:focus{border-color:var(--gold);outline:none;background:rgba(255,255,255,.05)}
.wc-form-row textarea{resize:vertical;min-height:120px}
.form-row-half{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
@media(max-width:600px){.form-row-half{grid-template-columns:1fr;gap:0}}

/* Order Summary Box */
.wc-order-summary{background:var(--card-bg);border:1px solid var(--card-border);padding:2.5rem;border-radius:6px;position:sticky;top:calc(var(--nav-h) + 2rem);box-shadow:0 20px 50px rgba(0,0,0,.4);max-height:calc(100vh - var(--nav-h) - 3rem);overflow-y:auto;scrollbar-width:thin;scrollbar-color:rgba(245,224,117,.3) transparent;}
.wc-order-summary::-webkit-scrollbar{width:4px}
.wc-order-summary::-webkit-scrollbar-thumb{background:rgba(245,224,117,.3);border-radius:4px}
.wc-order-summary h2,.wc-order-summary h3{font-family:'Bebas Neue',sans-serif;font-size:1.8rem;letter-spacing:.05em;margin-bottom:1.5rem;border-bottom:1px solid rgba(245,224,117,.15);padding-bottom:.8rem;color:var(--chalk)}
.order-total-row{display:flex;justify-content:space-between;padding:1rem 0;border-bottom:1px solid rgba(255,255,255,.05);font-size:.9rem;color:var(--mist);line-height:1.4}
.order-total-row.total{font-size:1.2rem;font-weight:700;color:var(--chalk);border-bottom:none;margin-top:.5rem}
.btn-checkout-full{width:100%;justify-content:center;padding:1.2rem;margin-top:2rem}
.order-total-row .amount{color:var(--gold)}
.payment-methods{margin:2rem 0;display:flex;flex-direction:column;gap:1rem}
.payment-method{border:1px solid rgba(245,224,117,.15);padding:1.2rem;border-radius:4px;background:rgba(255,255,255,.01);cursor:pointer;transition:border-color .3s,background .3s;display:block;}
.payment-method:hover, .payment-method:has(input:checked){border-color:var(--gold);background:rgba(245,224,117,.04)}
.payment-method input{margin-right:10px;accent-color:var(--gold)}
.payment-method label{font-size:.9rem;font-weight:600;color:var(--chalk);cursor:pointer}
.payment-method p{font-size:.75rem;color:var(--dim);margin-top:.5rem;line-height:1.6}

/* ===== WOOCOMMERCE MY ACCOUNT PAGE ===== */
.wc-account-layout{display:grid;grid-template-columns:1fr 3fr;gap:clamp(2rem,4vw,3.5rem);align-items:start}
.wc-account-nav{display:flex;flex-direction:column;gap:.5rem;position:sticky;top:calc(var(--nav-h) + 2rem)}
.wc-account-nav a{padding:1.2rem 1.4rem;background:rgba(255,255,255,.01);border:1px solid rgba(245,224,117,.15);border-radius:4px;color:var(--mist);font-size:.85rem;font-weight:600;letter-spacing:.05em;transition:all .3s var(--expo);display:flex;align-items:center;gap:12px;text-decoration:none;box-shadow:inset 0 0 0 transparent}
.wc-account-nav a svg{width:18px;height:18px;opacity:0.6;transition:all .3s var(--expo)}
.wc-account-nav a:hover svg, .wc-account-nav a.active svg{opacity:1;transform:translateX(3px)}
.wc-account-nav a:hover{background:rgba(255,255,255,.03);color:var(--chalk);transform:translateX(4px)}
.wc-account-nav a.active{border-color:var(--gold);background:linear-gradient(90deg, rgba(245,224,117,.08) 0%, transparent 100%);color:var(--gold);font-weight:700;box-shadow:inset 3px 0 0 var(--gold)}
.wc-account-nav a.logout-link{color:var(--wc-red);border-color:rgba(192,57,43,.15)}
.wc-account-nav a.logout-link:hover{color:var(--wc-red);background:linear-gradient(90deg, rgba(192,57,43,.08) 0%, transparent 100%);border-color:var(--wc-red);box-shadow:inset 3px 0 0 var(--wc-red);transform:translateX(4px)}
.wc-account-nav a.logout-link:hover svg{transform:translateX(3px)}
.wc-account-content{background:var(--card-bg);border:1px solid var(--card-border);padding:clamp(1.5rem,4vw,3rem);border-radius:6px;color:var(--mist);line-height:1.8}
.wc-account-content h3{font-family:'Bebas Neue',sans-serif;font-size:2rem;letter-spacing:.05em;margin-bottom:1.5rem;color:var(--chalk);border-bottom:1px solid rgba(245,224,117,.15);padding-bottom:1rem}
.wc-account-content strong{color:var(--chalk);font-weight:600}
.wc-account-content a.content-link{color:var(--gold);border-bottom:1px solid rgba(245,224,117,.4);transition:border-color .3s;padding-bottom:1px}
.wc-account-content a.content-link:hover{border-color:var(--gold)}
.wc-status-pill{font-size:.65rem;letter-spacing:.1em;text-transform:uppercase;font-weight:700;padding:5px 12px;border-radius:4px;background:rgba(255,255,255,.05);color:var(--mist)}
.wc-status-pill.processing{background:rgba(245,224,117,.15);color:var(--gold)}
.wc-status-pill.completed{background:rgba(37,211,102,.15);color:#25d366}

/* Account Welcome Card */
.account-welcome{display:flex;align-items:center;gap:1.5rem;background:rgba(255,255,255,.01);padding:2rem;border-radius:6px;border:1px solid rgba(245,224,117,.1);margin-bottom:2.5rem;box-shadow:inset 0 0 40px rgba(0,0,0,.2)}
.account-avatar{width:64px;height:64px;background:linear-gradient(135deg,var(--gold),var(--gold-dark));border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:2rem;color:var(--pitch);font-weight:700;font-family:'Bebas Neue',sans-serif;box-shadow:0 10px 20px rgba(245,224,117,.15);flex-shrink:0}
.account-welcome-text h2{font-family:'Bebas Neue',sans-serif;font-size:2.2rem;color:var(--chalk);letter-spacing:.05em;line-height:1;margin-bottom:.4rem}
.account-welcome-text p{font-size:.85rem;color:var(--mist);margin:0;line-height:1.4}
@media(max-width:600px){.account-welcome{flex-direction:column;text-align:center;gap:1rem;padding:1.5rem}}

/* Account Tabs & Forms */
.account-tab{display:none;animation:fadeIn .4s ease forwards}
.account-tab.active{display:block}
.wc-table .table-actions{text-align:right}
.address-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:1.5rem}
@media(max-width:768px){.address-grid{grid-template-columns:1fr}}
.address-card{background:rgba(255,255,255,.01);border:1px solid rgba(245,224,117,.15);padding:1.5rem;border-radius:6px}
.address-card h4{font-family:'Bebas Neue',sans-serif;font-size:1.5rem;letter-spacing:.05em;color:var(--chalk);margin-bottom:1rem;border-bottom:1px solid rgba(245,224,117,.1);padding-bottom:.5rem}
.address-card address{font-style:normal;color:var(--mist);line-height:1.8;font-size:.9rem;margin-bottom:1rem}

/* Mobile responsive My Account Navigation */
@media(max-width:900px){
  .wc-account-layout{grid-template-columns:1fr}
  .wc-account-nav{flex-direction:row;overflow-x:auto;scrollbar-width:none;padding-bottom:.5rem;margin-bottom:1rem;border-bottom:1px solid rgba(245,224,117,.15);position:relative;top:0}
  .wc-account-nav::-webkit-scrollbar{display:none}
  .wc-account-nav a{white-space:nowrap;flex-shrink:0;box-shadow:inset 0 -3px 0 transparent}
  .wc-account-nav a:hover{transform:translateY(-3px);box-shadow:inset 0 -3px 0 transparent}
  .wc-account-nav a.active{box-shadow:inset 0 -3px 0 var(--gold);background:linear-gradient(0deg, rgba(245,224,117,.08) 0%, transparent 100%)}
  .wc-account-nav a.logout-link:hover{box-shadow:inset 0 -3px 0 var(--wc-red);background:linear-gradient(0deg, rgba(192,57,43,.08) 0%, transparent 100%);transform:translateY(-3px)}
}

/* ===== AUTH MODAL ===== */
.auth-overlay{position:fixed;inset:0;z-index:6000;background:rgba(4,7,5,.93);backdrop-filter:blur(14px);display:flex;align-items:center;justify-content:center;padding:1rem;opacity:0;pointer-events:none;transition:opacity .4s ease;}
.auth-overlay.open{opacity:1;pointer-events:all;}
.auth-modal{background:var(--card-bg);width:100%;max-width:420px;border-radius:6px;padding:2.5rem;position:relative;transform:translateY(20px);transition:transform .4s var(--expo);border:1px solid var(--card-border);box-shadow:0 25px 50px rgba(0,0,0,.6);}
.auth-overlay.open .auth-modal{transform:translateY(0);}
.auth-tabs{display:flex;gap:1.5rem;border-bottom:1px solid rgba(245,224,117,.15);margin-bottom:2rem;}
.auth-tab-btn{background:none;border:none;color:var(--dim);font-family:'Bebas Neue',sans-serif;font-size:1.6rem;letter-spacing:.05em;padding-bottom:.8rem;position:relative;cursor:pointer;transition:color .3s;}
.auth-tab-btn:hover{color:var(--chalk);}
.auth-tab-btn.active{color:var(--gold);}
.auth-tab-btn::after{content:'';position:absolute;bottom:-1px;left:0;width:0;height:2px;background:var(--gold);transition:width .3s var(--expo);}
.auth-tab-btn.active::after{width:100%;}
.auth-content{display:none;animation:fadeIn .4s ease forwards;}
.auth-content.active{display:block;}

/* Confirm Modal */
.confirm-modal.auth-modal { max-width: 380px; text-align: center; padding: 2.5rem 2rem; }
.confirm-modal .confirm-icon { color: var(--wc-red); font-size: 3rem; margin-bottom: 1rem; line-height: 1; }
.confirm-modal .confirm-msg { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--chalk); letter-spacing: .05em; margin-bottom: 1.5rem; }
.confirm-modal .confirm-actions { display: flex; gap: 1rem; justify-content: center; align-items: center; }
.btn-danger { display:inline-flex; align-items:center; justify-content:center; padding: .8rem 1.5rem; background: var(--wc-red); color: #fff; font-weight: 700; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%); transition: background .3s, transform .3s var(--expo); cursor: pointer; border: none; }
.btn-danger:hover { background: #e74c3c; transform: translateY(-2px); }

/* Auth Validation Errors */
.input-error{border-color:var(--wc-red) !important;background:rgba(192,57,43,.05) !important;}
.auth-error-msg{background:rgba(192,57,43,.1);border:1px solid rgba(192,57,43,.3);color:#ff6b6b;padding:.8rem 1rem;border-radius:4px;font-size:.8rem;margin-bottom:1.5rem;display:none;animation:fadeIn .3s ease;}

/* ===== WOOCOMMERCE PAGINATION ===== */
.woocommerce-pagination{margin-top:4rem;display:flex;justify-content:center}
.woocommerce-pagination ul{display:flex;gap:.5rem;list-style:none;padding:0;margin:0;align-items:center;flex-wrap:wrap;justify-content:center}
.woocommerce-pagination ul li a, .woocommerce-pagination ul li span{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:40px;height:40px;padding:0 .8rem;
  font-size:.9rem;font-weight:600;color:var(--mist);
  border:1px solid rgba(245,224,117,.15);border-radius:4px;
  transition:all .3s ease;
}
.woocommerce nav.woocommerce-pagination { margin-top: 4rem; display: flex; justify-content: center; width: 100%; }
.woocommerce nav.woocommerce-pagination ul { display: flex; gap: .6rem; list-style: none; padding: 0; margin: 0; align-items: center; flex-wrap: wrap; justify-content: center; border: none; }
.woocommerce nav.woocommerce-pagination ul li { border: none; padding: 0; margin: 0; }
.woocommerce nav.woocommerce-pagination ul li a, 
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 .8rem;
  font-size: .95rem; font-weight: 600; color: var(--mist);
  background: rgba(255,255,255,.02); border: 1px solid rgba(245,224,117,.15); border-radius: 6px;
  transition: all .3s var(--expo); text-decoration: none;
}
.woocommerce-pagination ul li span.current, .woocommerce-pagination ul li a:hover{background:var(--gold);color:var(--pitch);border-color:var(--gold)}
.woocommerce-pagination ul li a.next, .woocommerce-pagination ul li a.prev{font-size:.8rem;letter-spacing:.05em;text-transform:uppercase}
.woocommerce nav.woocommerce-pagination ul li a:focus { outline: none; }
.woocommerce nav.woocommerce-pagination ul li a:hover { background: rgba(245,224,117,.08); color: var(--gold); border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,.3); }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--gold); color: var(--pitch); border-color: var(--gold); transform: scale(1.05); box-shadow: 0 8px 20px rgba(245,224,117,.2); }
.woocommerce nav.woocommerce-pagination ul li a.next, 
.woocommerce nav.woocommerce-pagination ul li a.prev { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }

/* ===== 404 ERROR PAGE ===== */
.error-404-wrap{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;min-height:55vh;padding:2rem 1rem;}
.error-404-code{font-family:'Bebas Neue',sans-serif;font-size:clamp(8rem,20vw,15rem);line-height:1;margin:0;background:linear-gradient(135deg,var(--gold),var(--gold-dark));-webkit-background-clip:text;-webkit-text-fill-color:transparent;filter:drop-shadow(0 15px 30px rgba(245,224,117,.15));}
.error-404-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(2rem,5vw,3.5rem);letter-spacing:.05em;color:var(--chalk);margin-bottom:1rem;text-transform:uppercase;}
.error-404-desc{color:var(--mist);max-width:450px;margin:0 auto 2rem;line-height:1.7;font-size:1rem;}

/* ===== ABOUT PAGE ===== */
.about-hero{position:relative;border-radius:8px;overflow:hidden;margin-bottom:4rem;aspect-ratio:21/9;display:flex;align-items:center;justify-content:center;text-align:center;border:1px solid var(--card-border);}
.about-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(0.3) saturate(0.8);}
.about-hero-content{position:relative;z-index:1;padding:2rem;}
.about-hero-content h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(3rem,6vw,5.5rem);color:var(--chalk);letter-spacing:.05em;line-height:1;text-transform:uppercase;text-shadow:0 10px 20px rgba(0,0,0,.8);}
.about-hero-content p{color:var(--gold);font-size:clamp(1rem,2vw,1.4rem);font-style:italic;font-family:'Playfair Display',serif;margin-top:.5rem;}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(3rem,5vw,6rem);margin-bottom:6rem;align-items:center;}
@media(max-width:768px){.about-grid{grid-template-columns:1fr;gap:3rem;}}
.about-text h3{font-family:'Bebas Neue',sans-serif;font-size:clamp(2rem,4vw,2.8rem);color:var(--chalk);margin-bottom:1.5rem;letter-spacing:.04em;text-transform:uppercase;}
.about-text p{color:var(--mist);line-height:1.9;margin-bottom:1.5rem;font-size:1rem;}
.about-img{border-radius:8px;overflow:hidden;border:1px solid var(--card-border);position:relative;}
.about-img img{width:100%;height:auto;display:block;filter:saturate(0.8);transition:filter 0.5s;}
.about-img:hover img{filter:saturate(1.1);}
.values-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin-bottom:4rem;}
.value-card{background:rgba(255,255,255,.01);border:1px solid rgba(245,224,117,.15);padding:3rem 2rem;border-radius:8px;text-align:center;transition:transform 0.4s var(--expo),border-color .3s,background .3s;}
.value-card:hover{transform:translateY(-8px);border-color:var(--gold);background:rgba(245,224,117,.03);}
.value-icon{font-size:2.5rem;margin-bottom:1.5rem;display:inline-block;}
.value-card h4{font-family:'Bebas Neue',sans-serif;font-size:1.8rem;color:var(--chalk);margin-bottom:1rem;letter-spacing:.05em;}
.value-card p{color:var(--mist);font-size:.9rem;line-height:1.8;}

/* ===== CONTACT PAGE ===== */
.contact-grid{display:grid;grid-template-columns:1fr 1.5fr;gap:clamp(3rem,6vw,6rem);margin-top:2rem;align-items:start;}
@media(max-width:900px){.contact-grid{grid-template-columns:1fr;}}
.contact-info-cards{display:flex;flex-direction:column;gap:1.5rem;}
.contact-card{background:rgba(255,255,255,.01);border:1px solid rgba(245,224,117,.15);padding:2rem;border-radius:6px;transition:transform .3s var(--expo),border-color .3s;}
.contact-card:hover{transform:translateY(-5px);border-color:var(--gold);}
.contact-card-icon{color:var(--gold);margin-bottom:1.2rem;}
.contact-card h4{font-family:'Bebas Neue',sans-serif;font-size:1.5rem;color:var(--chalk);letter-spacing:.05em;margin-bottom:.5rem;}
.contact-card p{color:var(--mist);font-size:.9rem;line-height:1.6;margin-bottom:.5rem;}
.contact-card a{color:var(--gold);transition:color .3s;text-decoration:none;font-weight:600;}
.contact-card a:hover{color:var(--chalk);}
.contact-form-wrap{background:var(--card-bg);border:1px solid var(--card-border);padding:clamp(2rem,4vw,3.5rem);border-radius:8px;box-shadow:0 20px 40px rgba(0,0,0,.4);}
.contact-form-wrap h3{font-family:'Bebas Neue',sans-serif;font-size:2.2rem;color:var(--chalk);letter-spacing:.05em;margin-bottom:1rem;}
.contact-form-wrap p{color:var(--mist);font-size:.95rem;margin-bottom:2rem;line-height:1.6;}

/* ===== GENERIC TEXT PAGE ===== */
.generic-content-wrap{background:var(--card-bg);border:1px solid var(--card-border);padding:clamp(2rem,5vw,4rem);border-radius:8px;max-width:900px;margin:0 auto;color:var(--mist);line-height:1.9;font-size:1rem;}
.generic-content-wrap h2,.generic-content-wrap h3{font-family:'Bebas Neue',sans-serif;color:var(--chalk);margin:2rem 0 1rem;letter-spacing:.05em;}
.generic-content-wrap h2{font-size:2.2rem;}
.generic-content-wrap h3{font-size:1.8rem;}
.generic-content-wrap p{margin-bottom:1.5rem;}
.generic-content-wrap ul,.generic-content-wrap ol{margin-bottom:1.5rem;padding-left:1.5rem;}
.generic-content-wrap li{margin-bottom:.5rem;}
.generic-content-wrap a{color:var(--gold);text-decoration:underline;text-underline-offset:2px;transition:color .3s;}
.generic-content-wrap a:hover{color:var(--chalk);}

/* ===== ORDER RECEIVED PAGE ===== */
.order-received-wrap{max-width:900px;margin:0 auto;}
.order-success-msg{display:flex;align-items:center;gap:1rem;background:rgba(37,211,102,.05);border:1px dashed rgba(37,211,102,.4);color:#25d366;padding:1.5rem;border-radius:6px;margin-bottom:2.5rem;font-size:.95rem;}
.order-success-msg svg { animation: popIn .6s var(--expo) backwards; }
@keyframes popIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.order-overview-list{display:flex;flex-wrap:wrap;gap:2rem;margin-bottom:3rem;padding:2rem;list-style:none;background:var(--card-bg);border:1px solid var(--card-border);border-radius:8px;}
.order-overview-list li{display:flex;flex-direction:column;gap:.4rem;font-size:.75rem;color:var(--dim);text-transform:uppercase;letter-spacing:.05em;border-right:1px solid rgba(245,224,117,.15);padding-right:2rem;}
.order-overview-list li:last-child{border-right:none;}
.order-overview-list li strong{color:var(--chalk);font-size:1.1rem;text-transform:none;letter-spacing:normal;}
@media(max-width:600px){
  .order-overview-list{flex-direction:column;gap:1.2rem;}
  .order-overview-list li{border-right:none;border-bottom:1px solid rgba(245,224,117,.15);padding-right:0;padding-bottom:1.2rem;}
  .order-overview-list li:last-child { border-bottom: none; padding-bottom: 0; }
}
.order-details-section{background:var(--card-bg);border:1px solid var(--card-border);padding:clamp(1.5rem,4vw,3rem);border-radius:8px;margin-bottom:3rem;}
.order-details-section h2{font-family:'Bebas Neue',sans-serif;font-size:2rem;color:var(--chalk);letter-spacing:.05em;margin-bottom:1.5rem;border-bottom:1px solid rgba(245,224,117,.15);padding-bottom:.8rem;}

/* ===== BLOG PAGE ===== */
.blog-layout{display:grid;grid-template-columns:2.5fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:start;}
@media(max-width:900px){.blog-layout{grid-template-columns:1fr;}}
.blog-posts-grid{display:grid;grid-template-columns:1fr;gap:3rem;}
.post-card{background:var(--card-bg);border:1px solid var(--card-border);border-radius:8px;overflow:hidden;transition:transform .4s var(--expo), box-shadow .4s var(--expo);}
.post-card:hover{transform:translateY(-8px);box-shadow:0 20px 40px rgba(0,0,0,.4);}
.post-card-img{aspect-ratio:16/9;overflow:hidden;}
.post-card-img img{width:100%;height:100%;object-fit:cover;filter:saturate(.8);transition:transform .6s var(--expo), filter .4s;}
.post-card:hover .post-card-img img{transform:scale(1.08);filter:saturate(1);}
.post-card-content{padding:1.5rem 2rem 2rem;}
.post-category{font-size:.65rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-dark);font-weight:700;margin-bottom:.8rem;}
.post-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(1.5rem,3vw,2rem);letter-spacing:.04em;color:var(--chalk);line-height:1.1;margin-bottom:1rem;}
.post-title a{transition:color .3s;}
.post-card:hover .post-title a{color:var(--gold);}
.post-excerpt{font-size:.9rem;color:var(--mist);line-height:1.8;margin-bottom:1.5rem;}
.post-meta{font-size:.75rem;color:var(--dim);display:flex;align-items:center;gap:1rem;border-top:1px solid rgba(245,224,117,.1);padding-top:1.5rem;}
.blog-sidebar{display:flex;flex-direction:column;gap:2.5rem;position:sticky;top:calc(var(--nav-h) + 2rem);}
.sidebar-widget{background:var(--card-bg);border:1px solid var(--card-border);padding:2rem;border-radius:6px;}
.widget-title{font-family:'Bebas Neue',sans-serif;font-size:1.5rem;letter-spacing:.05em;color:var(--chalk);margin-bottom:1.5rem;border-bottom:1px solid rgba(245,224,117,.15);padding-bottom:.8rem;}
.sidebar-widget ul{list-style:none;display:flex;flex-direction:column;gap:1rem;}
.sidebar-widget ul li a{color:var(--mist);transition:color .3s;font-size:.9rem;}
.sidebar-widget ul li a:hover{color:var(--gold);}
.sidebar-widget .search-form{position:relative;}
.sidebar-widget .search-form input{width:100%;padding:.8rem 1rem .8rem 2.5rem;background:rgba(255,255,255,.02);border:1px solid rgba(245,224,117,.15);color:var(--chalk);border-radius:4px;font-family:inherit;font-size:.85rem;}
.sidebar-widget .search-form svg{position:absolute;left:1rem;top:50%;transform:translateY(-50%);color:var(--dim);width:16px;height:16px;}

/* ===== SEARCH RESULTS PAGE ===== */
.search-results-page{display:flex;flex-direction:column;gap:4rem;}
.search-header{text-align:center;padding-bottom:3rem;border-bottom:1px solid rgba(245,224,117,.12);}
.search-label{font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;color:var(--dim);margin-bottom:.5rem;}
.search-query-title{border-bottom:none;padding-bottom:0;margin-bottom:.75rem;}
.search-result-count{font-size:.9rem;color:var(--dim);margin-bottom:1.5rem;}
.search-result-count strong{color:var(--gold);}
.search-refine-form{display:flex;gap:0;max-width:480px;margin:0 auto;border:1px solid rgba(245,224,117,.2);border-radius:6px;overflow:hidden;background:rgba(255,255,255,.02);}
.search-refine-form input[type="search"]{flex:1;background:transparent;border:none;padding:.85rem 1.2rem;color:var(--chalk);font-family:inherit;font-size:.95rem;outline:none;}
.search-refine-form input[type="search"]::placeholder{color:var(--dim);}
.search-refine-btn{border-radius:0;padding:.85rem 1.2rem;flex-shrink:0;}
.search-section{display:flex;flex-direction:column;gap:2rem;}
.search-section-title{font-family:'Bebas Neue',sans-serif;font-size:1.6rem;letter-spacing:.06em;color:var(--chalk);display:flex;align-items:center;gap:1rem;margin:0;}
.search-section-title::after{content:'';flex:1;height:1px;background:rgba(245,224,117,.12);}
.search-section-count{font-family:inherit;font-size:.75rem;letter-spacing:.12em;color:var(--dim);background:rgba(245,224,117,.08);border:1px solid rgba(245,224,117,.15);border-radius:20px;padding:3px 12px;font-weight:600;white-space:nowrap;}
.search-posts-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:2rem;}
.search-pagination{display:flex;justify-content:center;gap:.5rem;margin-top:1rem;}
.search-pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:4px;border:1px solid rgba(245,224,117,.15);color:var(--mist);font-size:.85rem;transition:all .3s;}
.search-pagination .page-numbers:hover,.search-pagination .page-numbers.current{background:var(--gold);border-color:var(--gold);color:var(--pitch);}
.search-pagination .page-numbers.dots{border:none;background:transparent;}
.search-no-results{text-align:center;padding:4rem 2rem;}
.search-no-results-icon{font-size:4rem;margin-bottom:1.5rem;opacity:.25;}
.search-no-results-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-top:2rem;}
@media(max-width:768px){
  .search-refine-form{max-width:100%;}
  .search-posts-grid{grid-template-columns:1fr;}
}

/* ===== SINGLE POST PAGE ===== */
.spost-header{text-align:center;margin-bottom:3rem;max-width:800px;margin-left:auto;margin-right:auto;}
.spost-category{font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);font-weight:700;margin-bottom:1rem;display:inline-block;}
.spost-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(2.5rem,5vw,4.5rem);color:var(--chalk);letter-spacing:.04em;line-height:1.1;margin-bottom:1.5rem;}
.spost-meta{font-size:.85rem;color:var(--dim);display:flex;align-items:center;justify-content:center;gap:1.5rem;text-transform:uppercase;letter-spacing:.05em;}
.spost-hero{width:100%;aspect-ratio:21/9;max-height:500px;overflow:hidden;border-radius:8px;margin-bottom:3rem;}
.spost-hero img{width:100%;height:100%;object-fit:cover;filter:brightness(0.85);}
.spost-content{color:var(--mist);line-height:1.9;font-size:1.05rem;}
.spost-content h2, .spost-content h3{font-family:'Bebas Neue',sans-serif;color:var(--chalk);margin:2.5rem 0 1rem;letter-spacing:.05em;}
.spost-content h2{font-size:2.2rem;}
.spost-content h3{font-size:1.8rem;}
.spost-content p{margin-bottom:1.5rem;}
.spost-content blockquote{border-left:2px solid var(--gold);padding-left:1.5rem;margin:2rem 0;font-family:'Playfair Display',serif;font-style:italic;font-size:1.3rem;color:var(--chalk);}
.spost-content img{border-radius:6px;margin:2rem 0;width:100%;height:auto;border:1px solid var(--card-border);}
.spost-footer{border-top:1px solid rgba(245,224,117,.15);margin-top:3rem;padding-top:2rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1.5rem;}
.spost-tags{display:flex;gap:.5rem;flex-wrap:wrap;}
.spost-tags a{font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;color:var(--mist);border:1px solid rgba(245,224,117,.15);padding:4px 12px;border-radius:4px;transition:all .3s;}
.spost-tags a:hover{color:var(--pitch);background:var(--gold);border-color:var(--gold);}
.spost-share{display:flex;gap:1rem;align-items:center;font-size:.8rem;color:var(--dim);text-transform:uppercase;letter-spacing:.1em;}
.spost-share a{color:var(--chalk);transition:color .3s;display:flex;align-items:center;}
.spost-share a:hover{color:var(--gold);}
.author-box{display:flex;gap:1.5rem;background:rgba(255,255,255,.02);border:1px solid rgba(245,224,117,.1);padding:2rem;border-radius:8px;margin-top:3rem;align-items:center;}
.author-avatar{width:80px;height:80px;border-radius:50%;overflow:hidden;flex-shrink:0;border:2px solid var(--card-border);}
.author-avatar img{width:100%;height:100%;object-fit:cover;filter:grayscale(100%);transition:filter .3s;}
.author-box:hover .author-avatar img{filter:grayscale(0%);}
.author-info h4{font-family:'Bebas Neue',sans-serif;font-size:1.5rem;color:var(--chalk);letter-spacing:.05em;margin-bottom:.4rem;}
.author-info p{font-size:.9rem;color:var(--mist);line-height:1.6;margin:0;}
@media(max-width:600px){.author-box{flex-direction:column;text-align:center;}}

/* ===== LOST PASSWORD PAGE ===== */
.lost-password-wrap{display:flex;align-items:center;justify-content:center;min-height:50vh;padding:2rem 0;}
.lost-password-card{background:var(--card-bg);width:100%;max-width:500px;border-radius:8px;padding:3rem 2.5rem;border:1px solid var(--card-border);box-shadow:0 20px 40px rgba(0,0,0,.4);}
.lost-password-card h1{font-family:'Bebas Neue',sans-serif;font-size:2.2rem;color:var(--chalk);letter-spacing:.05em;margin-bottom:.8rem;text-align:center;}
.lost-password-card p{color:var(--mist);font-size:.95rem;line-height:1.6;margin-bottom:2rem;text-align:center;}
.lost-password-card a.back-link{display:inline-block;margin-top:1.5rem;color:var(--gold);font-size:.85rem;font-weight:600;text-decoration:underline;text-underline-offset:2px;transition:color .3s;}

/* ===== WOOCOMMERCE NATIVE OVERRIDES (Mapping to Dark Theme) ===== */
/* Cart Layout (Grid properly handling injected wrappers like cart.html) */
.woocommerce-cart .woocommerce { display: grid; grid-template-columns: 7fr 3fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.woocommerce-cart .woocommerce::before, .woocommerce-cart .woocommerce::after { display: none !important; }
.woocommerce-cart .woocommerce > * { grid-column: 1 / -1; } /* Fallback for notices */
.woocommerce-cart .woocommerce-cart-form { grid-column: 1 / 2; width: 100%; overflow-x: auto; scrollbar-width: thin; scrollbar-color: rgba(245,224,117,.3) transparent; margin-bottom: 2rem; padding-bottom: 1rem; }
.woocommerce-cart .woocommerce-cart-form::-webkit-scrollbar { height: 4px; }
.woocommerce-cart .woocommerce-cart-form::-webkit-scrollbar-thumb { background: rgba(245,224,117,.3); border-radius: 4px; }
.woocommerce-cart .cart-collaterals { grid-column: 2 / 3; }

/* Checkout Layout */
form.checkout.woocommerce-checkout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
#customer_details { grid-column: 1; }
.wc-order-summary { grid-column: 2; }
@media(max-width:900px){ 
  .woocommerce-cart .woocommerce { grid-template-columns: 1fr; }
  .woocommerce-cart .woocommerce-cart-form, .woocommerce-cart .cart-collaterals { grid-column: 1 / -1; } 
  form.checkout.woocommerce-checkout { grid-template-columns: 1fr; } 
  #customer_details, .wc-order-summary { grid-column: 1; grid-row: auto; margin-top: 0; max-height: none; overflow: visible; }
}

/* Native Shop Table Styles - Matching cart.html */
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; text-align: left; margin: 0 0 2rem 0; border: none; }
.woocommerce table.shop_table th { padding: 1.2rem 1rem; border-bottom: 1px solid rgba(245,224,117,.15); color: var(--dim); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; border-top: none; }
.woocommerce table.shop_table td { padding: 1.5rem 1rem; border-bottom: 1px solid rgba(255,255,255,.05); vertical-align: middle; color: var(--mist); border-top: none; }
.woocommerce table.shop_table th.product-remove, .woocommerce table.shop_table td.product-remove { width: 40px; min-width: 40px; max-width: 40px; text-align: center; padding: 0; }
.woocommerce table.shop_table .product-remove a { color: var(--dim); display: flex; align-items: center; justify-content: center; transition: all .3s; text-decoration: none; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.02); margin: 0 auto; }
.woocommerce table.shop_table .product-remove a:hover { color: var(--wc-red); background: rgba(192,57,43,.1); transform: scale(1.1); }
.woocommerce table.shop_table th.product-thumbnail, .woocommerce table.shop_table td.product-thumbnail { width: 120px; }
.woocommerce table.shop_table .product-thumbnail img { width: 96px; height: 96px; object-fit: contain; background: rgba(255,255,255,.02); border-radius: 6px; padding: 6px; display: block; margin: 0; border: 1px solid rgba(245,224,117,.05); }
.woocommerce table.shop_table th.product-name, .woocommerce table.shop_table td.product-name { width: auto; }
.woocommerce table.shop_table .product-name a { color: var(--chalk); font-weight: 600; font-size: 1.15rem; transition: color .3s; text-decoration: none; display: block; line-height: 1.3; }
.woocommerce table.shop_table .product-name a:hover { color: var(--gold); }
.woocommerce table.shop_table dl.variation { font-size: .75rem; color: var(--dim); margin-top: .6rem; line-height: 1.5; background: rgba(255,255,255,.02); padding: .5rem .8rem; border-radius: 4px; display: inline-block; }
.woocommerce table.shop_table dl.variation dt { font-weight: 600; color: var(--mist); margin-right: 4px; float: left; clear: left; }
.woocommerce table.shop_table dl.variation dd { margin-right: 8px; float: left; margin-bottom: 0; }
.woocommerce table.shop_table dl.variation p { margin: 0; display: inline; }
.woocommerce table.shop_table dl.variation::after { content: ""; display: table; clear: both; }
.woocommerce table.shop_table .product-price, .woocommerce table.shop_table .product-subtotal { color: var(--gold); font-weight: 700; width: auto; min-width: 90px; white-space: nowrap; }
.woocommerce table.shop_table th.product-quantity, .woocommerce table.shop_table td.product-quantity { width: auto; min-width: 150px; text-align: left; }
.woocommerce table.shop_table th.product-subtotal, .woocommerce table.shop_table td.product-subtotal { text-align: right; }
.woocommerce .quantity { display: inline-flex; align-items: center; border: 1px solid rgba(245,224,117,.15); border-radius: 4px; background: rgba(255,255,255,.02); overflow: hidden; height: 42px; }
.woocommerce .quantity input.qty { width: 45px; height: 100%; padding: 0; text-align: center; background: transparent !important; border: none !important; color: var(--chalk) !important; outline: none; font-weight: 700; font-size: 1rem; -moz-appearance: textfield; box-shadow: none !important; }
.woocommerce .quantity input.qty::-webkit-outer-spin-button, .woocommerce .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.woocommerce .quantity .qty-btn { width: 34px; height: 100%; background: transparent; border: none; color: var(--dim); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: color .3s, background .3s; }
.woocommerce .quantity .qty-btn:hover { color: var(--gold); background: rgba(245,224,117,.08); }

/* Mobile Responsive Native Shop Table */
@media(max-width:768px){
  .woocommerce-cart-form { overflow-x: hidden; padding-bottom: 0; min-width: 100%; margin-bottom: 2rem; }
  .woocommerce table.shop_table { min-width: 100%; }
  .woocommerce table.shop_table.shop_table_responsive thead { display: none; }
  .woocommerce table.shop_table.shop_table_responsive tbody tr { display: block; padding: 1.5rem 0; border-bottom: 1px solid rgba(245,224,117,.15); position: relative; }
  .woocommerce table.shop_table.shop_table_responsive tbody td { display: flex; align-items: center; justify-content: space-between; padding: .8rem 0; border: none; text-align: right; width: 100%; }
  .woocommerce table.shop_table.shop_table_responsive tbody td::before { content: attr(data-title); font-size: .75rem; color: var(--dim); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; padding-right: 1rem; }
  .woocommerce table.shop_table.shop_table_responsive tbody td.product-remove { position: absolute; top: 1rem; right: 0; width: auto; padding: 0; border: none; }
  .woocommerce table.shop_table.shop_table_responsive tbody td.product-thumbnail { justify-content: center; padding-top: 0; margin-bottom: 1rem; width: 100%; text-align: center; }
  .woocommerce table.shop_table.shop_table_responsive tbody td.product-thumbnail::before { display: none; }
  .woocommerce table.shop_table.shop_table_responsive tbody td.product-thumbnail img { width: 90px; height: 90px; margin: 0 auto; }
  .woocommerce table.shop_table.shop_table_responsive tbody td.product-name { flex-direction: column; align-items: flex-end; gap: .4rem; text-align: right; }
  .woocommerce table.shop_table.shop_table_responsive tbody td.product-name a { text-align: right; }
  .woocommerce table.shop_table.shop_table_responsive tbody td.product-name dl.variation { text-align: right; }
  .woocommerce table.shop_table.shop_table_responsive tbody td.product-name dl.variation dt,
  .woocommerce table.shop_table.shop_table_responsive tbody td.product-name dl.variation dd { display: inline-block; margin-left: 4px; }
  .woocommerce table.shop_table.shop_table_responsive tbody td.actions { flex-direction: column; gap: 1rem; align-items: stretch; justify-content: center; border-top: 1px solid rgba(245,224,117,.1); padding-top: 1.5rem; margin-top: 1rem; }
  .woocommerce table.shop_table.shop_table_responsive tbody td.actions::before { display: none; }
  .woocommerce table.shop_table.shop_table_responsive tbody td.actions .coupon { flex-direction: column; width: 100%; align-items: stretch; }
  .woocommerce table.shop_table.shop_table_responsive tbody td.actions .coupon input, 
  .woocommerce table.shop_table.shop_table_responsive tbody td.actions .button { width: 100%; }
  .woocommerce table.shop_table.shop_table_responsive tbody td.actions > .button { width: 100%; margin-top: 1rem; }
}

/* Actions Row */
.woocommerce-cart-form__contents .actions { padding: 1.5rem 0 0 !important; border-top: none; }
.actions-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; flex-wrap: wrap; gap: 1rem; }
.actions-wrapper .coupon { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.actions-wrapper .coupon input { width: 220px; padding: .85rem 1.2rem; background: rgba(255,255,255,.02) !important; border: 1px solid rgba(245,224,117,.15) !important; color: var(--chalk) !important; border-radius: 4px; outline: none; transition: border-color .3s; font-family: inherit; height: auto !important; }
.actions-wrapper .coupon input:focus { border-color: var(--gold) !important; background: rgba(255,255,255,.05) !important; }
.actions-wrapper .button { margin: 0; }
.cart-action-btns { display: flex; gap: .8rem; align-items: center; flex-wrap: wrap; }
@media(max-width:768px){
  .actions-wrapper { flex-direction: column; align-items: stretch; }
  .actions-wrapper .coupon { flex-direction: column; align-items: stretch; width: 100%; }
  .actions-wrapper .coupon input { width: 100%; }
  .actions-wrapper .button { width: 100%; text-align: center; justify-content: center; }
  .cart-action-btns { flex-direction: column; width: 100%; }
  .cart-action-btns .button { width: 100%; justify-content: center; }
}
/* Cart product variation meta (size / custom name / badge) */
.wc-table .product-name dl.variation { display: flex; flex-wrap: wrap; gap: 3px 12px; margin-top: .5rem; }
.wc-table .product-name dl.variation dt { font-size: .7rem; font-weight: 600; color: rgba(184,179,160,.45); text-transform: uppercase; letter-spacing: .04em; }
.wc-table .product-name dl.variation dd { font-size: .7rem; color: var(--dim); margin: 0; }
.wc-table .product-name dl.variation dd p { margin: 0; }
/* #order_review styling is now safely handled by your custom .wc-order-summary wrapper */
.cart_totals h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: .05em; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(245,224,117,.15); padding-bottom: .8rem; color: var(--chalk); }
.woocommerce table.shop_table tfoot tr th, .woocommerce table.shop_table tfoot tr td, .cart_totals table.shop_table tbody tr th, .cart_totals table.shop_table tbody tr td { padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: .85rem; color: var(--mist); vertical-align: top; }
.woocommerce table.shop_table tfoot tr th, .cart_totals table.shop_table tbody tr th { text-align: left; font-weight: normal; text-transform: none; letter-spacing: normal; width: 35%; }
.woocommerce table.shop_table tfoot tr td, .cart_totals table.shop_table tbody tr td { text-align: right !important; }
.woocommerce table.shop_table tfoot tr.order-total th, .woocommerce table.shop_table tfoot tr.order-total td, .cart_totals table.shop_table tbody tr.order-total th, .cart_totals table.shop_table tbody tr.order-total td { font-size: 1.2rem; font-weight: 700; color: var(--chalk); border-bottom: none; padding-top: 1.5rem; }
.woocommerce table.shop_table .amount { color: var(--gold); }
ul#shipping_method { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
ul#shipping_method li { display: flex; align-items: center; justify-content: flex-end; gap: 8px; font-size: .85rem; color: var(--chalk); text-align: right; width: 100%; }
ul#shipping_method li input { margin: 0; accent-color: var(--gold); }

/* Cart Shipping Calculator Overrides */
.woocommerce-shipping-destination { font-size: .75rem; color: var(--dim); margin-top: .8rem; line-height: 1.5; }
.shipping-calculator-button { color: var(--gold) !important; font-size: .75rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; transition: color .3s; display: inline-block; margin-top: .8rem; }
.shipping-calculator-button:hover { color: var(--chalk) !important; }
.woocommerce-shipping-calculator .shipping-calculator-form { margin-top: 1.5rem; background: rgba(255,255,255,.01); padding: 1.2rem; border-radius: 6px; border: 1px solid rgba(245,224,117,.1); text-align: left; }
.woocommerce-shipping-calculator .shipping-calculator-form p.form-row { margin-bottom: 1rem; }
.woocommerce-shipping-calculator .shipping-calculator-form .button { width: 100%; padding: .8rem; font-size: .8rem; }

.woocommerce form .form-row { margin-bottom: 1.5rem; }
.woocommerce form .form-row label { display: block; font-size: .8rem; color: var(--mist); margin-bottom: .5rem; font-weight: 600; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row select, .woocommerce form .form-row textarea, .select2-container--default .select2-selection--single { width: 100%; padding: 1rem 1.2rem; background: rgba(255,255,255,.02) !important; border: 1px solid rgba(245,224,117,.15) !important; color: var(--chalk) !important; border-radius: 4px; font-family: inherit; font-size: .9rem; transition: border-color .3s; height: auto; outline: none; }
.woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row select:focus, .woocommerce form .form-row textarea:focus { border-color: var(--gold) !important; background: rgba(255,255,255,.05) !important; }
.woocommerce form .form-row select option { background: var(--card-bg); color: var(--chalk); }
/* Field Placeholders and Validation Error Highlights */
.woocommerce form .form-row input::placeholder, .woocommerce form .form-row textarea::placeholder { color: rgba(184,179,160,.4); }
.woocommerce form .form-row.woocommerce-invalid input, .woocommerce form .form-row.woocommerce-invalid select, .woocommerce form .form-row.woocommerce-invalid textarea, .woocommerce form .form-row.woocommerce-invalid .select2-selection { border-color: var(--wc-red) !important; background: rgba(192,57,43,.05) !important; }
.woocommerce form .form-row.woocommerce-invalid label { color: #ff6b6b; }
.woocommerce form .form-row textarea { resize: vertical; min-height: 120px; }
.woocommerce form .form-row-first { width: 100%; float: left; clear: both; }
.woocommerce form .form-row-last { width: 100%; float: right; }
#order_review_heading{margin-top:0;}
.woocommerce form .form-row-wide { clear: both; width: 100%; }
.woocommerce form::after { content: ""; display: table; clear: both; }
/* Billing fields: CSS grid layout matching checkout.html .form-row-half pattern */
.woocommerce-billing-fields__field-wrapper{display:grid;grid-template-columns:1fr 1fr;gap:0 1.5rem}
.woocommerce-billing-fields__field-wrapper .form-row-wide{grid-column:1/-1}
.woocommerce-billing-fields__field-wrapper .form-row-first,.woocommerce-billing-fields__field-wrapper .form-row-last{width:100%;float:none;clear:none}
/* Hide WC "Additional Information" heading — not in checkout.html design */
.woocommerce-additional-fields>h3{display:none}
@media(max-width:600px){.woocommerce-billing-fields__field-wrapper{grid-template-columns:1fr}.woocommerce-billing-fields__field-wrapper .form-row-wide{grid-column:1}}

/* Payment Preference Choice Box */
.payment-preference-wrapper { background: rgba(255,255,255,.01); border: 1px solid rgba(245,224,117,.15); padding: 1.5rem; border-radius: 6px; margin: 1.5rem 0 2.5rem !important; }
.payment-preference-wrapper .form-row { margin: 0 !important; }
.payment-preference-wrapper .form-row > label:first-child { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem !important; color: var(--gold) !important; letter-spacing: .05em; margin-bottom: 1rem !important; border-bottom: 1px solid rgba(245,224,117,.1); padding-bottom: .8rem; text-transform: none; }
.payment-preference-wrapper .woocommerce-input-wrapper { display: flex; flex-direction: column; gap: 1rem; }
.payment-preference-wrapper label.radio { display: flex !important; align-items: center; gap: 10px; font-size: .95rem !important; color: var(--chalk) !important; font-weight: 500 !important; cursor: pointer; background: rgba(255,255,255,.03); padding: 1rem; border: 1px solid rgba(245,224,117,.05); border-radius: 4px; transition: border-color .3s, background .3s; margin: 0 !important; }
.payment-preference-wrapper label.radio:hover, .payment-preference-wrapper label.radio:has(input:checked) { border-color: var(--gold); background: rgba(245,224,117,.05); }
.payment-preference-wrapper label.radio input[type="radio"] { width: auto !important; margin: 0 !important; accent-color: var(--gold); padding: 0 !important; }

/* Hide specific checkout fields cleanly without breaking validation */
.d-none { display: none !important; }

/* Hide Ship to a different address completely */
#ship-to-different-address,
.woocommerce-shipping-fields { display: none !important; }

/* Checkout Order Review Visual Improvements */
.woocommerce-checkout #order_review { padding: 0; min-width: 100%; border: none; background: transparent; box-shadow: none; position: static; margin-top: 0; }
.woocommerce-checkout table.shop_table th { padding: 1rem 0; border-bottom: 1px solid var(--card-border); font-size: .9rem; text-align: left; font-weight: 700; color: var(--chalk); }
.woocommerce-checkout table.shop_table th.product-total { text-align: right; }
.woocommerce-checkout table.shop_table td { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.05); vertical-align: middle; }
.woocommerce-checkout table.shop_table td.product-name {width:100%; position: relative; padding-left: 65px; min-height: 50px; padding-right:15px;}
.checkout-item-img { position: absolute; left: 0; top: .8rem; width: 50px; height: 50px; border: 1px solid rgba(245,224,117,.15); border-radius: 6px; padding: 3px; background: rgba(255,255,255,.02); display: flex; align-items: center; justify-content: center; }
.checkout-item-img img { width: 100%; height: 100%; object-fit: contain; }
.checkout-item-name { color: var(--chalk); font-weight: 600; font-size: .95rem; line-height: 1.3; display: block; margin-bottom: 2px; }
.woocommerce-checkout table.shop_table td.product-name .product-quantity { color: var(--gold); font-size: .75rem; font-weight: 700; background: rgba(245,224,117,.1); padding: 2px 6px; border-radius: 4px; display: inline-block; margin-top: 4px; }
.woocommerce-checkout table.shop_table dl.variation { margin-top: 4px; font-size: .7rem; color: var(--dim); line-height: 1.2; }
.woocommerce-checkout table.shop_table td.product-total { font-size: .95rem; text-align: right !important; }
.woocommerce-checkout table.shop_table tfoot th { text-align: left !important; width: 40%; font-weight: normal; color: var(--mist); text-transform: none; letter-spacing: normal; padding-top: 1.2rem; border-bottom: none; }
.woocommerce-checkout table.shop_table tfoot td { text-align: right !important; width: 60%; font-weight: 600; color: var(--chalk); padding-top: 1.2rem; border-bottom: none; }
.woocommerce-checkout table.shop_table tfoot tr.order-total th, .woocommerce-checkout table.shop_table tfoot tr.order-total td { font-size: 1.2rem; padding-top: 1.5rem; color: var(--chalk); border-top: 1px solid rgba(245,224,117,.15); }
.woocommerce-checkout table.shop_table tfoot tr.order-total .amount { color: var(--gold); font-weight: 700; }

@media(max-width:600px){ .woocommerce form .form-row-first, .woocommerce form .form-row-last { width: 100%; float: none; } }

#payment ul.payment_methods { margin: 1.2rem 0; display: flex; flex-direction: column; gap: .6rem; list-style: none; padding: 0; border-top: 1px solid rgba(245,224,117,.1); padding-top: 1.2rem; }
#payment ul.payment_methods li.wc_payment_method { border: 1px solid rgba(245,224,117,.15); padding: 1rem 1.2rem; border-radius: 6px; background: rgba(255,255,255,.01); cursor: pointer; transition: border-color .3s, background .3s, transform .3s; display: block; }
#payment ul.payment_methods li.wc_payment_method:hover, #payment ul.payment_methods li.wc_payment_method:has(input:checked) { border-color: var(--gold); background: rgba(245,224,117,.06); transform: translateX(4px); }
#payment ul.payment_methods li.wc_payment_method input { margin-right: 8px; accent-color: var(--gold); }
#payment ul.payment_methods li.wc_payment_method label { font-size: .85rem; font-weight: 600; color: var(--chalk); cursor: pointer; }
#payment div.payment_box { font-size: .8rem; color: var(--mist); line-height: 1.6; margin-top: 1rem; padding: 1rem 1.2rem; background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.05); border-radius: 4px; position: relative; }
#payment div.payment_box::before { content: ''; position: absolute; top: -12px; left: 24px; border: 6px solid transparent; border-bottom-color: rgba(255,255,255,.05); }

/* Terms & Privacy Policy inside Order Review */
.woocommerce-privacy-policy-text { font-size: .75rem; color: var(--dim); line-height: 1.6; margin-bottom: 1.5rem; text-align: left; }
.woocommerce-privacy-policy-text a { color: var(--mist); text-decoration: underline; transition: color .3s; }
.woocommerce-privacy-policy-text a:hover { color: var(--gold); }
.woocommerce-terms-and-conditions-wrapper { padding-top: 1rem; border-top: 1px solid rgba(245,224,117,.1); margin-top: 1rem; }
.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; color: var(--chalk); margin-bottom: 1.5rem; cursor: pointer; }
.woocommerce-terms-and-conditions-wrapper input[type="checkbox"] { margin-top: 3px; accent-color: var(--gold); }

.woocommerce button.button, .woocommerce a.button, .woocommerce input.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 1rem 2rem; background: var(--btn-bg); color: var(--btn-text); border: 1px solid var(--btn-border); font-weight: 700; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%); transition: background .3s, transform .3s var(--expo), box-shadow .3s, border-color .3s, color .3s; cursor: pointer; text-decoration:none; }
.woocommerce button.button:hover, .woocommerce a.button:hover, .woocommerce input.button:hover { background: var(--btn-bg-hover); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(245,224,117,.2); color: var(--btn-text-hover); border-color: var(--btn-border-hover); }
.woocommerce button.button:disabled, .woocommerce button.button[disabled], .woocommerce button.button.disabled { opacity: 0.5; cursor: not-allowed; background: rgba(255,255,255,.05); color: var(--mist); box-shadow: none; transform: none; border: 1px solid rgba(255,255,255,.1); }
.woocommerce a.checkout-button { width: 100%; justify-content: center; padding: 1.2rem !important; margin-top: 2rem; }
#payment .place-order .button { width: 100%; margin-top: 1.5rem; padding: 1.2rem; font-size: 1rem; }

.woocommerce-message, .woocommerce-error, .woocommerce-info { background: var(--card-bg); border: 1px solid var(--card-border); color: var(--chalk); padding: 1.2rem 1.5rem; border-radius: 6px; margin-bottom: 2rem; list-style:none; box-shadow: 0 10px 30px rgba(0,0,0,.2); font-size: .95rem; animation: fadeUp .4s var(--expo) forwards; }
.woocommerce-message { border-left: 4px solid #25d366; background: rgba(37,211,102,.05); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.woocommerce-info { border-left: 4px solid var(--wc-blue); background: rgba(26,58,110,.05); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.woocommerce-error { border-left: 4px solid var(--wc-red); background: rgba(192,57,43,.05); display: flex; flex-direction: column; gap: .6rem; justify-content: center; }
.woocommerce-error::before { content: 'Hold up! We missed something ⚽'; display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #ff6b6b; letter-spacing: .05em; margin-bottom: .2rem; border-bottom: 1px solid rgba(192,57,43,.15); padding-bottom: .5rem; }
.woocommerce-error li { display: flex; align-items: center; gap: 10px; color: #ff6b6b; margin: 0; background: rgba(0,0,0,.25); padding: .6rem 1rem; border-radius: 4px; border: 1px solid rgba(192,57,43,.1); font-size: .85rem; }
.woocommerce-error li strong { color: var(--chalk); letter-spacing: .05em; font-weight: 600; }
.woocommerce-error li::before { content: '⚠'; display: inline-block; font-size: .9rem; color: var(--wc-red); }
.woocommerce-message .button, .woocommerce-info .button { padding: .6rem 1.2rem; font-size: .75rem; margin: 0; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%); background: var(--card-bg); border: 1px solid rgba(255,255,255,.1); color: var(--chalk); }
.woocommerce-message .button:hover, .woocommerce-info .button:hover { background: var(--gold); color: var(--pitch); border-color: var(--gold); }

/* Checkout Coupon Form Styles */
.woocommerce-form-coupon { background: var(--card-bg); border: 1px solid var(--card-border); padding: 1.5rem; border-radius: 6px; margin-bottom: 2rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.woocommerce-form-coupon p { margin: 0; width: 100%; font-size: .85rem; color: var(--mist); }
.woocommerce-form-coupon .form-row { margin: 0; flex: 1; }
.woocommerce-form-coupon .form-row-first { width: auto; float: none; flex: 2; min-width: 200px; }
.woocommerce-form-coupon .form-row-last { width: auto; float: none; flex: 1; min-width: 120px; }
.woocommerce-form-coupon button.button { width: 100%; padding: 1rem; }

/* Empty Cart & Cross Sells Overrides */
.woocommerce-cart .cart-empty.woocommerce-info { display: block; border: none; background: transparent; box-shadow: none; text-align: center; font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--chalk); letter-spacing: .05em; margin: 3rem 0 1rem; padding: 0; }
.woocommerce-cart .cart-empty.woocommerce-info::before { content: '🛒'; display: block; font-size: 4rem; margin-bottom: 1rem; filter: grayscale(100%) opacity(0.3); }
.woocommerce-cart .return-to-shop { text-align: center; margin-bottom: 4rem; display: block; width: 100%; }
.woocommerce-cart .return-to-shop .button { font-size: 1rem; padding: 1.2rem 2.5rem; justify-content: center; }
.cross-sells { margin-top: 4rem; width: 100%; }
.cross-sells h2, .up-sells h2, .related.products h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--chalk); letter-spacing: .05em; margin-bottom: 2rem; border-bottom: 1px solid rgba(245,224,117,.15); padding-bottom: .8rem; text-transform: uppercase; }

.select2-container--default .select2-selection--single .select2-selection__rendered { color: var(--chalk); line-height: normal; padding: 0; }
.select2-container--default .select2-selection--single .select2-selection__arrow { top: 50%; transform: translateY(-50%); }
.select2-dropdown { background: var(--card-bg); border: 1px solid var(--gold); color: var(--chalk); }
.select2-container--default .select2-results__option { background: var(--card-bg); color: var(--mist); }
.select2-container--default .select2-results__option[aria-selected=true] { background: rgba(245,224,117,.2); }
.select2-container--default .select2-results__option--highlighted[aria-selected] { background: var(--gold); color: var(--pitch); }

/* ===== WOOCOMMERCE ORDER RECEIVED / DETAILS NATIVE OVERRIDES ===== */
.woocommerce-order-details { background: var(--card-bg); border: 1px solid var(--card-border); padding: clamp(1.5rem, 4vw, 3rem); border-radius: 8px; margin-bottom: 3rem; }
.woocommerce-order-details h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--chalk); letter-spacing: .05em; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(245, 224, 117, .15); padding-bottom: .8rem; }
.woocommerce-customer-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
@media(max-width:768px){ .woocommerce-customer-details { grid-template-columns: 1fr; } }
.woocommerce-customer-details h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .05em; color: var(--chalk); margin-bottom: 1rem; border-bottom: 1px solid rgba(245,224,117,.1); padding-bottom: .5rem; }
.woocommerce-customer-details address { background: rgba(255,255,255,.01); border: 1px solid rgba(245,224,117,.15); padding: 1.5rem; border-radius: 6px; font-style: normal; color: var(--mist); line-height: 1.8; font-size: .9rem; }

.woocommerce-order-details table.shop_table { border: none; background: transparent; margin: 0; }
.woocommerce-order-details table.shop_table thead th { border-bottom: 1px solid rgba(245,224,117,.2); color: var(--gold-dark); font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: .05em; padding-left: 0; }
.woocommerce-order-details table.shop_table tbody td { border-bottom: 1px dashed rgba(255,255,255,.05); padding: 1.5rem 1rem 1.5rem 0; }
.woocommerce-order-details table.shop_table tbody tr:last-child td { border-bottom: 1px solid rgba(245,224,117,.15); }
.woocommerce-order-details table.shop_table tbody tr:hover td { background: rgba(245,224,117,.02); }
.woocommerce-order-details table.shop_table tbody td.product-name { color: var(--chalk); font-size: 1.05rem; }
.woocommerce-order-details table.shop_table tbody td.product-name a { color: var(--chalk); text-decoration: none; transition: color .3s; }
.woocommerce-order-details table.shop_table tbody td.product-name a:hover { color: var(--gold); }
.woocommerce-order-details table.shop_table tbody td.product-name strong.product-quantity { color: var(--mist); font-weight: 400; margin-left: 8px; font-size: .9rem; }
.woocommerce-order-details table.shop_table tbody td.product-total { font-weight: 700; color: var(--gold); text-align: right; padding-right: 0; }
.woocommerce-order-details table.shop_table tfoot tr th, .woocommerce-order-details table.shop_table tfoot tr td { border-bottom: 1px solid rgba(245,224,117,.1); padding: 1rem 0; color: var(--mist); font-weight: 600; text-align: right; }
.woocommerce-order-details table.shop_table tfoot tr th { text-align: left; }
.woocommerce-order-details table.shop_table tfoot tr:last-child th, .woocommerce-order-details table.shop_table tfoot tr:last-child td { border-bottom: none; padding-top: 1.5rem; }
.woocommerce-order-details table.shop_table tfoot tr:last-child th { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--chalk); letter-spacing: .05em; }
.woocommerce-order-details table.shop_table tfoot tr:last-child td .amount { font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.woocommerce-order-details .wc-item-meta { margin-top: .6rem; font-size: .8rem; color: var(--dim); list-style: none; padding: 0; }
.woocommerce-order-details .wc-item-meta li { margin-bottom: .2rem; }
.woocommerce-order-details .wc-item-meta li strong { color: var(--mist); font-weight: 600; margin-right: 4px; }
.woocommerce-order-details .wc-item-meta li p { display: inline; margin: 0; }

/* ===== AJAX SEARCH RESULTS ===== */
.ajax-search-results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; margin-top: 2rem; max-height: 55vh; overflow-y: auto; padding-right: .5rem; scrollbar-width: thin; scrollbar-color: rgba(245,224,117,.3) transparent; }
.ajax-search-results-grid::-webkit-scrollbar { width: 4px; }
.ajax-search-results-grid::-webkit-scrollbar-thumb { background: rgba(245,224,117,.3); border-radius: 4px; }
.ajax-search-item { display: flex; align-items: center; gap: 1rem; padding: .8rem; background: rgba(255,255,255,.02); border: 1px solid rgba(245,224,117,.1); border-radius: 6px; transition: transform .3s var(--expo), border-color .3s, background .3s; text-decoration: none; }
.ajax-search-item:hover { transform: translateY(-3px); border-color: var(--gold); background: rgba(245,224,117,.05); }
.ajax-search-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; background: rgba(255,255,255,.02); padding: 2px; }
.ajax-search-info { display: flex; flex-direction: column; gap: .3rem; }
.ajax-search-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--chalk); letter-spacing: .05em; line-height: 1.1; }
.ajax-search-price { color: var(--gold); font-weight: 700; font-size: .85rem; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

/* Search Skeleton Loader */
.skeleton-search-img { width: 60px; height: 60px; border-radius: 4px; background: rgba(255,255,255,.03); position: relative; overflow: hidden; flex-shrink: 0; }
.skeleton-search-line { height: 12px; background: rgba(255,255,255,.04); border-radius: 2px; width: 100%; position: relative; overflow: hidden; margin-bottom: 6px; }
.skeleton-search-line.short { width: 60%; margin-bottom: 0; }
.skeleton-search-img::after, .skeleton-search-line::after { content: ''; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent); animation: shimmer 1.5s infinite; }

/* ===== WOOCOMMERCE ARCHIVE OVERRIDES ===== */
.woocommerce .woocommerce-result-count { font-size: .85rem; color: var(--mist); letter-spacing: .05em; margin: 0; float: none; }
.woocommerce .woocommerce-ordering { margin: 0; float: none; }
.woocommerce .woocommerce-ordering select.orderby { background: rgba(255,255,255,.02); border: 1px solid rgba(245,224,117,.15); color: var(--chalk); padding: .6rem 2rem .6rem 1.2rem; font-family: inherit; font-size: .85rem; outline: none; cursor: pointer; border-radius: 4px; appearance: auto; transition: all .3s; }
.woocommerce .woocommerce-ordering select.orderby:hover, .woocommerce .woocommerce-ordering select.orderby:focus { border-color: var(--gold); background: rgba(245,224,117,.05); }
.woocommerce .woocommerce-ordering select.orderby option { background: var(--pitch); color: var(--chalk); }
.woocommerce nav.woocommerce-pagination { margin-top: 4rem; display: flex; justify-content: center; width: 100%; }
.woocommerce .woocommerce-info { width: 100%; }

/* ===== WOOCOMMERCE NATIVE MY ACCOUNT OVERRIDES ===== */
.woocommerce-account .woocommerce-MyAccount-content table.shop_table { width: 100%; border-collapse: collapse; text-align: left; min-width: 600px; margin-bottom: 2rem; background: transparent; border: none; }
.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead th { padding: 1rem; border-bottom: 1px solid rgba(245,224,117,.15); color: var(--dim); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody td { padding: 1.5rem 1rem; border-bottom: 1px solid rgba(255,255,255,.05); vertical-align: middle; color: var(--mist); font-size: .95rem; }
.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr:hover td { background: rgba(245,224,117,.02); }
.woocommerce-account .woocommerce-MyAccount-content table.shop_table td a.button { padding: 8px 16px; font-size: .7rem; }
.woocommerce-account .woocommerce-MyAccount-content table.shop_table td.woocommerce-orders-table__cell-order-number a { color: var(--chalk); font-weight: 600; transition: color .3s; }
.woocommerce-account .woocommerce-MyAccount-content table.shop_table td.woocommerce-orders-table__cell-order-number a:hover { color: var(--gold); }

/* Responsive Orders Table */
@media(max-width:768px){
  .woocommerce-account .woocommerce-MyAccount-content table.shop_table { min-width: 100%; }
  .woocommerce-account .woocommerce-MyAccount-content table.shop_table thead { display: none; }
  .woocommerce-account .woocommerce-MyAccount-content table.shop_table tr { display: block; padding: 1.5rem 0; border-bottom: 1px solid rgba(245,224,117,.15); position: relative; }
  .woocommerce-account .woocommerce-MyAccount-content table.shop_table td { display: flex; align-items: center; justify-content: space-between; padding: .8rem 0; border: none; text-align: right; }
  .woocommerce-account .woocommerce-MyAccount-content table.shop_table td::before { content: attr(data-title); font-size: .75rem; color: var(--dim); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; padding-right: 1rem; }
  .woocommerce-account .woocommerce-MyAccount-content table.shop_table td.woocommerce-orders-table__cell-order-actions { justify-content: flex-end; gap: 10px; }
}

/* Addresses */
.woocommerce-account .woocommerce-Addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; width: 100%; }
@media(max-width:768px) { .woocommerce-account .woocommerce-Addresses { grid-template-columns: 1fr; } }
.woocommerce-account .woocommerce-Addresses .woocommerce-Address { background: rgba(255,255,255,.01); border: 1px solid rgba(245,224,117,.15); padding: 1.5rem; border-radius: 6px; width: 100%; box-sizing: border-box; transition: border-color .3s; }
.woocommerce-account .woocommerce-Addresses .woocommerce-Address:hover { border-color: var(--gold); }
.woocommerce-account .woocommerce-Address header.woocommerce-Address-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; border-bottom: 1px solid rgba(245,224,117,.1); padding-bottom: .5rem; }
.woocommerce-account .woocommerce-Address header.woocommerce-Address-title h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .05em; color: var(--chalk); margin: 0; border: none; padding: 0; }
.woocommerce-account .woocommerce-Address header.woocommerce-Address-title a.edit { color: var(--gold); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .3s; }
.woocommerce-account .woocommerce-Address header.woocommerce-Address-title a.edit:hover { border-color: var(--gold); }
.woocommerce-account .woocommerce-Address address { font-style: normal; color: var(--mist); line-height: 1.8; font-size: .9rem; margin-bottom: 0; }

/* Edit Account Form Enhancements */
.woocommerce-account .woocommerce-EditAccountForm fieldset { border: none; padding: 0; margin: 2.5rem 0 1.5rem; }
.woocommerce-account .woocommerce-EditAccountForm legend { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--chalk); letter-spacing: .05em; margin-bottom: 1rem; border-bottom: 1px solid rgba(245,224,117,.15); padding-bottom: .5rem; width: 100%; }
.woocommerce-account .woocommerce-MyAccount-content > p { color: var(--mist); font-size: .95rem; margin-bottom: 1.5rem; line-height: 1.6; }
.woocommerce-account .woocommerce-MyAccount-content mark { background: rgba(245,224,117,.15); color: var(--gold); padding: 0 4px; border-radius: 2px; }

/* ===== SAGE GREEN LIGHT THEME =====
   Light botanical palette. Body gets class 'sage-theme' via PHP body_class filter.
   CSS variable overrides have higher specificity than :root so they win over Customizer output.
   --gold-rgb / --gold-dark-rgb are pinned here so rgba(var(--gold-rgb),...) works reliably.
========================================= */

body.sage-theme {
  --pitch:      #f4f6f3;
  --turf:       #ffffff;
  --turf2:      #e9ece8;
  --chalk:      #182413;
  --mist:       #4a5c43;
  --dim:        #889682;
  --card-bg:    #ffffff;
  --card-border: rgba(111,147,86,.15);
  --gold:       #6f9356;
  --gold-rgb:   111,147,86;
  --gold-dark:  #52703f;
  --gold-dark-rgb: 82,112,63;
}

/* --- Promo bar & marquee — depth gradient on sage band --- */
body.sage-theme .promo-bar{background:linear-gradient(90deg,var(--gold-dark) 0%,var(--gold) 50%,var(--gold-dark) 100%)}
body.sage-theme .marquee-wrap{background:linear-gradient(90deg,var(--gold-dark) 0%,var(--gold) 50%,var(--gold-dark) 100%)}
body.sage-theme .marquee-track span.dot{color:rgba(244,246,243,.45)}

/* --- Cursor glow --- */
body.sage-theme .cursor-ring{box-shadow:0 0 8px rgba(var(--gold-rgb),.4)}

/* --- Navbar — light frosted glass --- */
body.sage-theme #navbar.scrolled{background:rgba(244,246,243,.96);backdrop-filter:blur(20px) saturate(1.5);box-shadow:0 1px 0 rgba(var(--gold-rgb),.15),0 4px 20px rgba(0,0,0,.06)}
body.sage-theme .mobile-menu{background:rgba(244,246,243,.98)}

body.sage-theme .flag-chip{border-color:rgba(var(--gold-rgb),.16)}

/* --- Shop banner grid lines --- */
body.sage-theme .wc-banner-bg::after{background-image:repeating-linear-gradient(90deg,transparent,transparent 79px,rgba(var(--gold-rgb),.04) 79px,rgba(var(--gold-rgb),.04) 80px),repeating-linear-gradient(0deg,transparent,transparent 79px,rgba(var(--gold-rgb),.04) 79px,rgba(var(--gold-rgb),.04) 80px)}

/* --- Filter chips --- */
body.sage-theme .filter-chip{border-color:rgba(var(--gold-rgb),.25)}
body.sage-theme .filter-chip.active,body.sage-theme .filter-chip:hover{background:rgba(var(--gold-rgb),.08)}

/* --- Product cards — light theme hover --- */
body.sage-theme .woocommerce ul.products li.product:hover{box-shadow:0 10px 40px rgba(0,0,0,.1),0 0 0 1px rgba(var(--gold-rgb),.25)}
body.sage-theme .star-rating span.empty{color:rgba(82,112,63,.25)}

/* --- Category cards — keep dark overlay on photos for legibility --- */
body.sage-theme .cat-card-overlay{background:linear-gradient(to top,rgba(24,36,19,.9) 0%,rgba(24,36,19,.28) 44%,transparent 70%)}
body.sage-theme .cat-card:hover .cat-card-overlay{background:linear-gradient(to top,rgba(24,36,19,.97) 0%,rgba(24,36,19,.5) 55%,rgba(24,36,19,.12) 100%)}

/* --- Story badges --- */
body.sage-theme .story-badge{border-color:rgba(var(--gold-rgb),.25)}
body.sage-theme .story-badge:hover{background:rgba(var(--gold-rgb),.09)}

/* --- Review cards --- */
body.sage-theme .review-card:hover{box-shadow:0 8px 24px rgba(0,0,0,.06),0 0 0 1px rgba(var(--gold-rgb),.18)}

/* --- Newsletter circles & form --- */
body.sage-theme #newsletter::before{border-color:rgba(var(--gold-rgb),.07)}
body.sage-theme #newsletter::after{border-color:rgba(var(--gold-rgb),.1)}
body.sage-theme .form-group input{border-color:rgba(var(--gold-rgb),.2)}

/* --- Footer — light sage background --- */
body.sage-theme footer{background:var(--turf2)}
body.sage-theme .footer-top{border-bottom-color:rgba(var(--gold-rgb),.12)}
body.sage-theme .footer-copy{color:rgba(24,36,19,.38)}
body.sage-theme .social-link{border-color:rgba(var(--gold-rgb),.18)}
body.sage-theme .social-link:hover{background:rgba(var(--gold-rgb),.08)}
body.sage-theme .pay-chip{border-color:rgba(var(--gold-rgb),.15)}

/* --- Modal & auth overlays — keep dark for contrast over light page --- */
body.sage-theme .modal-overlay,body.sage-theme .auth-overlay{background:rgba(24,36,19,.72)}

/* --- Quick-view / Product modal --- */
body.sage-theme .modal-img::before{background:radial-gradient(circle at center,rgba(var(--gold-rgb),.08) 0%,transparent 70%)}
body.sage-theme .modal-body,body.sage-theme .badge-selector{scrollbar-color:rgba(var(--gold-rgb),.25) transparent}
body.sage-theme .modal-body::-webkit-scrollbar-thumb,body.sage-theme .badge-selector::-webkit-scrollbar-thumb{background:rgba(var(--gold-rgb),.25)}
body.sage-theme .sz{border-color:rgba(var(--gold-rgb),.22)}
body.sage-theme .sz.active,body.sage-theme .sz:hover{background:rgba(var(--gold-rgb),.08)}
body.sage-theme .checkmark{border-color:rgba(var(--gold-rgb),.35)}
body.sage-theme .name-num-input input{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .badge-option:hover .badge-card{border-color:rgba(var(--gold-rgb),.45)}
body.sage-theme .badge-option input:checked + .badge-card{background:rgba(var(--gold-rgb),.08)}

/* --- Ajax search --- */
body.sage-theme .search-input-wrap{border-bottom-color:rgba(var(--gold-rgb),.3)}
body.sage-theme .ajax-search-results-grid{scrollbar-color:rgba(var(--gold-rgb),.25) transparent}
body.sage-theme .ajax-search-results-grid::-webkit-scrollbar-thumb{background:rgba(var(--gold-rgb),.25)}
body.sage-theme .ajax-search-item{border-color:rgba(var(--gold-rgb),.15)}
body.sage-theme .ajax-search-item:hover{background:rgba(var(--gold-rgb),.07)}

/* --- Single product — white image panel --- */
body.sage-theme .sp-image-wrap{background:#ffffff;box-shadow:0 4px 24px rgba(0,0,0,.06),inset 0 1px 0 rgba(var(--gold-rgb),.12)}
body.sage-theme .sp-main-img::before{background:radial-gradient(circle at center,rgba(var(--gold-rgb),.07) 0%,transparent 70%)}
body.sage-theme .sp-thumbnails{scrollbar-color:rgba(var(--gold-rgb),.2) transparent}
body.sage-theme .sp-thumbnails::-webkit-scrollbar-thumb{background:rgba(var(--gold-rgb),.25)}
body.sage-theme .sp-thumb:hover,body.sage-theme .sp-thumb.active{background:rgba(var(--gold-rgb),.08)}
body.sage-theme .sp-qty{border-color:rgba(var(--gold-rgb),.3)}
body.sage-theme .sp-qty button:hover{background:rgba(var(--gold-rgb),.08)}
body.sage-theme .sp-meta{border-top-color:rgba(var(--gold-rgb),.15)}
body.sage-theme .sp-tab-nav{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .size-chart-header:hover{background:rgba(var(--gold-rgb),.06)}
body.sage-theme .size-chart th{border-bottom-color:rgba(var(--gold-rgb),.2)}

/* --- Skeleton loaders — visible on light background --- */
body.sage-theme .skeleton-img{background:rgba(var(--gold-rgb),.06)}
body.sage-theme .skeleton-text{background:rgba(var(--gold-rgb),.1)}
body.sage-theme .skeleton-img::after,body.sage-theme .skeleton-text::after{background:linear-gradient(90deg,transparent,rgba(var(--gold-rgb),.1),transparent)}

/* --- Buttons glow --- */
body.sage-theme .btn-primary:hover{box-shadow:0 10px 36px rgba(var(--gold-rgb),.28)}
body.sage-theme .woocommerce button.button:hover,body.sage-theme .woocommerce a.button:hover,body.sage-theme .woocommerce input.button:hover{box-shadow:0 10px 36px rgba(var(--gold-rgb),.2)}

/* --- Auth modal --- */
body.sage-theme .auth-tabs{border-bottom-color:rgba(var(--gold-rgb),.2)}

/* --- Pagination --- */
body.sage-theme .woocommerce-pagination ul li a,body.sage-theme .woocommerce-pagination ul li span{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce nav.woocommerce-pagination ul li a,body.sage-theme .woocommerce nav.woocommerce-pagination ul li span{border-color:rgba(var(--gold-rgb),.2);background:rgba(255,255,255,.6)}
body.sage-theme .woocommerce nav.woocommerce-pagination ul li a:hover{background:rgba(var(--gold-rgb),.1)}
body.sage-theme .woocommerce nav.woocommerce-pagination ul li span.current{box-shadow:0 8px 20px rgba(var(--gold-rgb),.25)}

/* --- 404 page --- */
body.sage-theme .error-404-code{filter:drop-shadow(0 15px 30px rgba(var(--gold-rgb),.18))}

/* --- About & Contact --- */
body.sage-theme .value-card{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .value-card:hover{background:rgba(var(--gold-rgb),.04)}
body.sage-theme .contact-card{border-color:rgba(var(--gold-rgb),.2)}

/* --- Thank you page --- */
body.sage-theme .order-overview-list li{border-right-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .order-details-section h2{border-bottom-color:rgba(var(--gold-rgb),.2)}

/* --- Blog --- */
body.sage-theme .post-meta{border-top-color:rgba(var(--gold-rgb),.15)}
body.sage-theme .widget-title{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .sidebar-widget .search-form input{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .spost-footer{border-top-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .spost-tags a{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .author-box{border-color:rgba(var(--gold-rgb),.15)}

/* --- WC general --- */
body.sage-theme .wc-page-title{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .wc-table th{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .wc-table-wrap{scrollbar-color:rgba(var(--gold-rgb),.25) transparent}
body.sage-theme .wc-table tr{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .wc-form-row input,body.sage-theme .wc-form-row select,body.sage-theme .wc-form-row textarea{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .wc-order-summary{scrollbar-color:rgba(var(--gold-rgb),.25) transparent;box-shadow:0 8px 32px rgba(0,0,0,.06),0 0 0 1px rgba(var(--gold-rgb),.1)}
body.sage-theme .wc-order-summary::-webkit-scrollbar-thumb{background:rgba(var(--gold-rgb),.25)}
body.sage-theme .wc-order-summary h2,body.sage-theme .wc-order-summary h3{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .qty-btn:hover{background:rgba(var(--gold-rgb),.08)}

/* --- Cart page --- */
body.sage-theme .woocommerce-cart .woocommerce-cart-form{scrollbar-color:rgba(var(--gold-rgb),.25) transparent}
body.sage-theme .woocommerce-cart .woocommerce-cart-form::-webkit-scrollbar-thumb{background:rgba(var(--gold-rgb),.25)}
body.sage-theme .woocommerce table.shop_table th{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce table.shop_table .product-thumbnail img{border-color:rgba(var(--gold-rgb),.1)}
body.sage-theme .woocommerce .quantity{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce .quantity .qty-btn:hover{background:rgba(var(--gold-rgb),.08)}
body.sage-theme .woocommerce table.shop_table.shop_table_responsive tbody tr{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce table.shop_table.shop_table_responsive tbody td.actions{border-top-color:rgba(var(--gold-rgb),.15)}
body.sage-theme .actions-wrapper .coupon input{border-color:rgba(var(--gold-rgb),.2) !important}
body.sage-theme .cart_totals h2{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce-shipping-calculator .shipping-calculator-form{border-color:rgba(var(--gold-rgb),.15)}

/* --- WC forms (checkout + account) --- */
body.sage-theme .woocommerce form .form-row input.input-text,body.sage-theme .woocommerce form .form-row select,body.sage-theme .woocommerce form .form-row textarea,body.sage-theme .select2-container--default .select2-selection--single{border-color:rgba(var(--gold-rgb),.2) !important}

/* --- Checkout --- */
body.sage-theme .payment-method{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .payment-method:hover,body.sage-theme .payment-method:has(input:checked){background:rgba(var(--gold-rgb),.07)}
body.sage-theme #payment ul.payment_methods{border-top-color:rgba(var(--gold-rgb),.15)}
body.sage-theme #payment ul.payment_methods li.wc_payment_method{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme #payment ul.payment_methods li.wc_payment_method:hover,body.sage-theme #payment ul.payment_methods li.wc_payment_method:has(input:checked){background:rgba(var(--gold-rgb),.07)}
body.sage-theme .checkout-item-img{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce-checkout table.shop_table td.product-name .product-quantity{background:rgba(var(--gold-rgb),.12)}
body.sage-theme .woocommerce-checkout table.shop_table tfoot tr.order-total th,body.sage-theme .woocommerce-checkout table.shop_table tfoot tr.order-total td{border-top-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce-terms-and-conditions-wrapper{border-top-color:rgba(var(--gold-rgb),.15)}
body.sage-theme .payment-preference-wrapper{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .payment-preference-wrapper .form-row > label:first-child{border-bottom-color:rgba(var(--gold-rgb),.15)}
body.sage-theme .payment-preference-wrapper label.radio{border-color:rgba(var(--gold-rgb),.1)}
body.sage-theme .payment-preference-wrapper label.radio:hover,body.sage-theme .payment-preference-wrapper label.radio:has(input:checked){background:rgba(var(--gold-rgb),.07)}

/* --- Select2 --- */
body.sage-theme .select2-container--default .select2-results__option[aria-selected=true]{background:rgba(var(--gold-rgb),.2)}

/* --- WC ordering & section headings --- */
body.sage-theme .woocommerce .woocommerce-ordering select.orderby{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce .woocommerce-ordering select.orderby:hover,body.sage-theme .woocommerce .woocommerce-ordering select.orderby:focus{background:rgba(var(--gold-rgb),.06)}
body.sage-theme .cross-sells h2,body.sage-theme .up-sells h2,body.sage-theme .related.products h2{border-bottom-color:rgba(var(--gold-rgb),.2)}

/* --- Order details (thank you) --- */
body.sage-theme .woocommerce-customer-details h2{border-bottom-color:rgba(var(--gold-rgb),.15)}
body.sage-theme .woocommerce-customer-details address{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce-order-details table.shop_table thead th{border-bottom-color:rgba(var(--gold-rgb),.25)}
body.sage-theme .woocommerce-order-details table.shop_table tbody tr:last-child td{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce-order-details table.shop_table tbody tr:hover td{background:rgba(var(--gold-rgb),.04)}
body.sage-theme .woocommerce-order-details table.shop_table tfoot tr th,body.sage-theme .woocommerce-order-details table.shop_table tfoot tr td{border-bottom-color:rgba(var(--gold-rgb),.15)}

/* --- My Account --- */
body.sage-theme .wc-account-nav a{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .wc-account-nav a.active{background:linear-gradient(90deg,rgba(var(--gold-rgb),.1) 0%,transparent 100%);box-shadow:inset 3px 0 0 var(--gold)}
body.sage-theme .wc-account-content h3{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .wc-account-content a.content-link{border-bottom-color:rgba(var(--gold-rgb),.4)}
body.sage-theme .wc-status-pill.processing{background:rgba(var(--gold-rgb),.15)}
body.sage-theme .account-welcome{border-color:rgba(var(--gold-rgb),.15)}
body.sage-theme .account-avatar{box-shadow:0 10px 20px rgba(var(--gold-rgb),.2)}
body.sage-theme .address-card{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .address-card h4{border-bottom-color:rgba(var(--gold-rgb),.15)}
body.sage-theme .woocommerce-account .woocommerce-MyAccount-content table.shop_table thead th{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr:hover td{background:rgba(var(--gold-rgb),.04)}
body.sage-theme .woocommerce-account .woocommerce-MyAccount-content table.shop_table tr{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce-account .woocommerce-Addresses .woocommerce-Address{border-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce-account .woocommerce-Address header.woocommerce-Address-title{border-bottom-color:rgba(var(--gold-rgb),.15)}
body.sage-theme .woocommerce-account .woocommerce-EditAccountForm legend{border-bottom-color:rgba(var(--gold-rgb),.2)}
body.sage-theme .woocommerce-account .woocommerce-MyAccount-content mark{background:rgba(var(--gold-rgb),.15)}

@media(max-width:768px){
  body.sage-theme .wc-account-nav{border-bottom-color:rgba(var(--gold-rgb),.2)}
  body.sage-theme .wc-account-nav a.active{box-shadow:inset 0 -3px 0 var(--gold);background:linear-gradient(0deg,rgba(var(--gold-rgb),.1) 0%,transparent 100%)}
  body.sage-theme .woocommerce-account .woocommerce-MyAccount-content table.shop_table tr{border-bottom-color:rgba(var(--gold-rgb),.2)}
  body.sage-theme .order-overview-list li{border-right:none;border-bottom-color:rgba(var(--gold-rgb),.2)}
}