/*
Theme Name: BeautyForYou
Theme URI: https://beautyforyou.lk
Author: BeautyForYou.lk
Author URI: https://beautyforyou.lk
Description: A luxurious dark-gold beauty & skincare theme for BeautyForYou.lk — fully WooCommerce compatible.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
WC requires at least: 7.0
WC tested up to: 8.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: beautyforyou
Tags: woocommerce, e-commerce, dark, luxury, beauty
*/

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --black:       #0A0A0A;
  --black2:      #111111;
  --black3:      #181818;
  --gold:        #D4AF37;
  --gold2:       #F4E4C1;
  --gold3:       #B8960C;
  --gold-grad:   linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
  --white:       #FAFAFA;
  --off-white:   #F0EBE3;
  --burgundy:    #6B1E3A;
  --emerald:     #1A4A3A;
  --mid:         #8A7560;
  --dim:         rgba(250,250,250,0.45);
  --glass:       rgba(255,255,255,0.04);
  --glass-border: rgba(212,175,55,0.18);
  --shadow-soft: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 10px 40px rgba(212,175,55,0.25);
  --ease-lux:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --r-sm: 12px; --r-md: 16px; --r-lg: 20px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', system-ui, sans-serif;
}
[data-theme="light"] {
  --black:       #FAFAFA;
  --black2:      #F0EBE3;
  --black3:      #E8E0D5;
  --white:       #0A0A0A;
  --off-white:   #1A1410;
  --dim:         rgba(10,10,10,0.55);
  --glass:       rgba(0,0,0,0.03);
  --glass-border: rgba(212,175,55,0.25);
  --shadow-soft: 0 20px 60px rgba(0,0,0,0.12);
  --mid:         #6B5A48;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  transition: background .5s var(--ease-lux), color .5s var(--ease-lux);
}
::selection { background: rgba(212,175,55,0.3); color: var(--gold2); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ═══════════════════════════════════════════════
   ANNOUNCE BAR
═══════════════════════════════════════════════ */
.announce-bar {
  background: linear-gradient(90deg, var(--burgundy) 0%, #8B1A4A 50%, var(--burgundy) 100%);
  text-align: center; padding: 10px 16px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold2); font-weight: 300;
  display: flex; align-items: center; justify-content: center; gap: 28px;
  flex-wrap: wrap;
}
.announce-bar strong { color: var(--gold); font-weight: 600; }

/* ═══════════════════════════════════════════════
   HEADER — GLASS
═══════════════════════════════════════════════ */
header.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.4s var(--ease-lux);
}
[data-theme="light"] header.site-header { background: rgba(250,250,250,0.8); }
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.site-logo { display: flex; align-items: center; }
.site-logo svg { height: 36px; }
.site-logo a { display: flex; align-items: center; }

/* Primary Nav */
.primary-nav { display: flex; gap: 36px; }
.primary-nav a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim); text-decoration: none; transition: color 0.3s;
  position: relative; padding-bottom: 3px;
}
.primary-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: left 0.3s var(--ease-lux), right 0.3s var(--ease-lux);
}
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--white); }
.primary-nav a:hover::after, .primary-nav .current-menu-item > a::after { left: 0; right: 0; }

/* WooCommerce menu items */
.primary-nav .woocommerce-MyAccount-navigation a,
.primary-nav .woocommerce a { color: var(--dim); }

.header-right { display: flex; align-items: center; gap: 12px; }
.header-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 100px; padding: 9px 18px;
  transition: border-color 0.3s;
}
.header-search:focus-within { border-color: var(--gold); }
.header-search input {
  background: none; border: none; outline: none;
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.06em;
  color: var(--white); width: 160px;
}
.header-search input::placeholder { color: var(--dim); }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--glass-border);
  background: var(--glass); display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--dim); transition: all 0.3s var(--ease-lux);
  position: relative; text-decoration: none;
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); }
.cart-count {
  position: absolute; top: 6px; right: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); color: #000;
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.theme-toggle {
  width: 44px; height: 24px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--glass-border);
  cursor: pointer; position: relative; transition: all 0.3s;
}
.theme-toggle::after {
  content: '☀'; position: absolute; top: 3px; left: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 9px; transition: transform 0.3s var(--ease-lux);
  line-height: 16px; text-align: center;
}
[data-theme="light"] .theme-toggle::after { transform: translateX(20px); content: '🌙'; }

/* Mobile hamburger */
.mobile-menu-toggle {
  display: none; background: none; border: 1px solid var(--glass-border);
  color: var(--dim); width: 40px; height: 40px; border-radius: 8px;
  align-items: center; justify-content: center; cursor: pointer; flex-direction: column; gap: 5px;
}
.mobile-menu-toggle span {
  display: block; width: 18px; height: 1px; background: var(--dim); transition: all 0.3s;
}

/* ═══════════════════════════════════════════════
   GOLD DIVIDER
═══════════════════════════════════════════════ */
.gold-divider {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 40px 0;
}
.gold-divider-line { flex: 1; max-width: 200px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.gold-divider-ornament { color: var(--gold); font-size: 16px; letter-spacing: 6px; }

/* ═══════════════════════════════════════════════
   BRANDS
═══════════════════════════════════════════════ */
.brands-section { padding: 60px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.brands-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; text-align: center; }
.brands-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim); margin-bottom: 32px; display: block; }
.brand-logos { display: flex; justify-content: center; align-items: center; gap: 56px; flex-wrap: wrap; }
.brand-logo {
  font-family: var(--font-head); font-size: 18px; font-weight: 300;
  color: rgba(250,250,250,0.25); letter-spacing: 0.08em;
  transition: color 0.4s; cursor: pointer;
}
.brand-logo:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════ */
section { padding: 120px 0; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.section-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.section-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.section-eyebrow span { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 400; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
}
.section-title .gradient {
  background: var(--gold-grad); background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 4s ease-in-out infinite;
}
.section-sub { font-size: 14px; color: var(--dim); line-height: 1.8; margin-top: 12px; font-weight: 300; letter-spacing: 0.04em; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-gold,
button.btn-gold,
a.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-grad); background-size: 200% 100%; background-position: 0%;
  color: #000; font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 100px;
  border: none; cursor: pointer; text-decoration: none;
  position: relative; overflow: hidden;
  transition: background-position 0.5s var(--ease-lux), transform 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux);
  box-shadow: 0 8px 32px rgba(212,175,55,0.3);
}
.btn-gold::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.6s var(--ease-lux);
}
.btn-gold:hover { background-position: 100%; transform: translateY(-3px); box-shadow: var(--shadow-gold); color: #000; }
.btn-gold:hover::after { transform: translateX(100%); }

.btn-ghost,
a.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 15px 36px; border-radius: 100px;
  border: 1px solid var(--glass-border);
  cursor: pointer; text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.06); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(105deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.82) 45%, rgba(10,10,10,0.35) 75%, rgba(10,10,10,0.5) 100%), var(--hero-bg, #111) center 20% / cover no-repeat;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.hero-ambient { position: absolute; inset: 0; pointer-events: none; }
.hero-ambient::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
  animation: ambientFloat 8s ease-in-out infinite alternate;
}
.hero-ambient::after {
  content: ''; position: absolute; bottom: -10%; left: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,30,58,0.12) 0%, transparent 70%);
  animation: ambientFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes ambientFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,-20px) scale(1.05); }
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(212,175,55,1) 80px, rgba(212,175,55,1) 81px),
                    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(212,175,55,1) 80px, rgba(212,175,55,1) 81px);
  pointer-events: none;
}
.hero-inner {
  max-width: 1400px; width: 100%; margin: 0 auto; padding: 120px 40px;
  display: grid; grid-template-columns: 1.618fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 400; }
.hero-title {
  font-family: var(--font-head); font-size: clamp(56px, 7vw, 96px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 28px;
}
.hero-title em {
  font-style: italic; font-weight: 300;
  background: var(--gold-grad); background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 4s ease-in-out infinite;
}
.hero-sub { font-size: 15px; line-height: 1.8; font-weight: 300; letter-spacing: 0.04em; color: var(--dim); margin-bottom: 44px; max-width: 460px; }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 48px; margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--glass-border); }
.trust-num { font-family: var(--font-head); font-size: 40px; font-weight: 300; color: var(--gold); display: block; line-height: 1; }
.trust-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); margin-top: 6px; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-glass-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px); border-radius: 24px; padding: 40px 32px;
  text-align: center; width: 320px; box-shadow: var(--shadow-soft);
  position: relative;
}
.hero-glass-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-glass-card img { width: 180px; height: 180px; object-fit: cover; border-radius: 16px; margin: 0 auto 20px; display: block; box-shadow: 0 10px 40px rgba(0,0,0,0.4); }
.hero-card-brand { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.hero-card-name { font-family: var(--font-head); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.hero-card-price { font-size: 13px; color: var(--dim); }
.hero-card-price strong { font-family: var(--font-head); font-size: 22px; color: var(--gold); font-weight: 300; }
.hero-card-price del { font-size: 12px; color: rgba(255,255,255,0.2); }
.hero-badge {
  position: absolute; background: var(--gold);
  color: #000; font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  padding: 8px 16px; border-radius: 100px; box-shadow: var(--shadow-gold);
}
.hero-badge.top { top: -16px; right: 24px; }
.hero-badge.bottom { bottom: -16px; left: 20px; background: var(--burgundy); color: var(--gold2); }

/* ═══════════════════════════════════════════════
   FLASH SALE
═══════════════════════════════════════════════ */
.flash-section {
  background: linear-gradient(90deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.88) 55%, rgba(10,10,10,0.5) 100%), var(--flash-bg, #111) right center / cover no-repeat;
  border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
  padding: 100px 0; position: relative; overflow: hidden;
}
.flash-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.flash-timer-row { display: flex; gap: 16px; margin-top: 36px; }
.t-block {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--r-md); padding: 20px 24px; text-align: center; min-width: 80px;
  position: relative; overflow: hidden;
}
.t-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.t-num { font-family: var(--font-head); font-size: 42px; font-weight: 300; color: var(--gold); display: block; line-height: 1; letter-spacing: -0.02em; }
.t-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); margin-top: 6px; }
.flash-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.flash-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform 0.4s var(--ease-lux), border-color 0.3s, box-shadow 0.4s; cursor: pointer;
}
.flash-card:hover { transform: translateY(-8px); border-color: rgba(212,175,55,0.4); box-shadow: var(--shadow-gold); }
.flash-card-img { height: 150px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.flash-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.flash-card-badge {
  position: absolute; top: 10px; right: 10px; background: var(--gold); color: #000;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em; padding: 3px 8px; border-radius: 100px;
}
.flash-card-body { padding: 14px 16px 18px; }
.flash-card-brand { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.flash-card-name { font-family: var(--font-head); font-size: 15px; color: var(--white); margin-bottom: 10px; }
.flash-prices { display: flex; gap: 8px; align-items: baseline; }
.flash-new { font-family: var(--font-head); font-size: 18px; color: var(--gold); font-weight: 300; }
.flash-old { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: line-through; }

/* ═══════════════════════════════════════════════
   CATEGORIES
═══════════════════════════════════════════════ */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 56px; }
.cat-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--r-lg); padding: 36px 20px;
  text-align: center; text-decoration: none; color: inherit;
  transition: transform 0.4s var(--ease-lux), border-color 0.3s, box-shadow 0.4s;
  cursor: pointer; position: relative; overflow: hidden;
}
.cat-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; }
.cat-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.35); box-shadow: var(--shadow-gold); }
.cat-card:hover::before { opacity: 1; }
.cat-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.cat-name { font-family: var(--font-head); font-size: 16px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.cat-count { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dim); }

/* ═══════════════════════════════════════════════
   WOOCOMMERCE — PRODUCTS GRID
═══════════════════════════════════════════════ */
.products-section { background: var(--black2); }
.products-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 24px; }
.prod-grid,
ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; list-style: none; margin: 0; padding: 0; }
.prod-card,
ul.products li.product {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform 0.4s var(--ease-lux), border-color 0.3s, box-shadow 0.4s;
  cursor: pointer; position: relative;
}
.prod-card:hover,
ul.products li.product:hover { transform: translateY(-10px); border-color: rgba(212,175,55,0.4); box-shadow: var(--shadow-soft), var(--shadow-gold); }
.prod-img,
ul.products li.product .woocommerce-LoopProduct-link img {
  height: 240px; width: 100%; object-fit: cover; display: block;
  background: linear-gradient(135deg, rgba(107,30,58,0.2), rgba(26,74,58,0.15), rgba(10,10,10,0.8));
}
.prod-badge { position: absolute; top: 14px; left: 14px; z-index: 1; background: var(--gold); color: #000; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.prod-badge.new { background: var(--emerald); color: var(--gold2); }
/* WooCommerce onsale badge */
ul.products li.product .onsale {
  background: var(--gold) !important; color: #000 !important;
  border-radius: 100px !important; font-size: 9px !important; font-weight: 700 !important;
  letter-spacing: 0.1em; text-transform: uppercase; min-width: auto;
  padding: 4px 12px !important; top: 14px !important; left: 14px !important; right: auto !important;
}
.prod-info,
ul.products li.product .woocommerce-loop-product__title { padding: 20px 20px 0; }
.prod-brand { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.prod-name,
ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-head); font-size: 18px; font-weight: 400; color: var(--white);
  margin-bottom: 6px; line-height: 1.3; padding: 0;
}
.prod-desc { font-size: 12px; color: var(--dim); line-height: 1.6; margin-bottom: 16px; font-weight: 300; }
.prod-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.prod-star { color: var(--gold); font-size: 11px; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; padding: 0 20px 24px; }
.prod-price .now,
ul.products li.product .price { font-family: var(--font-head); font-size: 22px; font-weight: 300; color: var(--gold); display: block; }
.prod-price .was { font-size: 12px; color: rgba(255,255,255,0.2); text-decoration: line-through; }
ul.products li.product .price ins { text-decoration: none; }
ul.products li.product .price del { color: rgba(255,255,255,0.2); font-size: 14px; }
.prod-add,
ul.products li.product .button,
ul.products li.product .add_to_cart_button {
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--white); border-radius: 100px;
  padding: 9px 18px; font-family: var(--font-body); font-size: 10px;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s var(--ease-lux);
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
}
.prod-add:hover,
ul.products li.product .button:hover,
ul.products li.product .add_to_cart_button:hover { background: var(--gold); border-color: var(--gold); color: #000; }

/* ═══════════════════════════════════════════════
   SINGLE PRODUCT PAGE (WooCommerce)
═══════════════════════════════════════════════ */
.woocommerce div.product { max-width: 1400px; margin: 60px auto; padding: 0 40px; }
.woocommerce div.product div.images { border-radius: var(--r-lg); overflow: hidden; }
.woocommerce div.product div.images img { border-radius: var(--r-lg); }
.woocommerce div.product div.summary { padding-left: 60px; }
.woocommerce div.product .product_title { font-family: var(--font-head); font-size: clamp(32px, 4vw, 52px); font-weight: 300; color: var(--white); margin-bottom: 12px; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { font-family: var(--font-head); font-size: 32px; color: var(--gold); font-weight: 300; }
.woocommerce div.product p.price del,
.woocommerce div.product span.price del { color: rgba(255,255,255,0.25); font-size: 18px; }
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product .woocommerce-product-details__short-description { font-size: 14px; color: var(--dim); line-height: 1.8; margin-bottom: 24px; }
.woocommerce div.product form.cart .qty {
  background: var(--glass); border: 1px solid var(--glass-border); color: var(--white);
  border-radius: 8px; padding: 10px 16px; font-size: 14px; width: 70px;
}
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--gold-grad) !important; color: #000 !important; border: none !important;
  border-radius: 100px !important; font-family: var(--font-body) !important;
  font-size: 11px !important; font-weight: 700 !important; letter-spacing: 0.18em !important;
  text-transform: uppercase !important; padding: 16px 36px !important;
  box-shadow: 0 8px 32px rgba(212,175,55,0.3) !important; cursor: pointer !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover { transform: translateY(-2px) !important; box-shadow: var(--shadow-gold) !important; }
.woocommerce-tabs ul.tabs { border-color: var(--glass-border) !important; }
.woocommerce-tabs ul.tabs li { background: var(--glass) !important; border-color: var(--glass-border) !important; }
.woocommerce-tabs ul.tabs li a { font-family: var(--font-body); color: var(--dim) !important; letter-spacing: 0.08em; }
.woocommerce-tabs ul.tabs li.active a { color: var(--gold) !important; }
.woocommerce-tabs .panel { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--r-md); padding: 32px !important; color: var(--dim); line-height: 1.8; }

/* ═══════════════════════════════════════════════
   CART & CHECKOUT (WooCommerce)
═══════════════════════════════════════════════ */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce { max-width: 1400px; margin: 60px auto; padding: 0 40px; }
.woocommerce table.shop_table { border-collapse: collapse; width: 100%; }
.woocommerce table.shop_table thead th { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border-color: var(--glass-border) !important; padding: 16px 12px; font-family: var(--font-body); font-weight: 500; }
.woocommerce table.shop_table td { border-color: var(--glass-border) !important; padding: 20px 12px; color: var(--dim); vertical-align: middle; }
.woocommerce table.shop_table .cart_item td { background: var(--glass); }
.woocommerce-cart-form .actions .coupon input { background: var(--glass); border: 1px solid var(--glass-border); color: var(--white); border-radius: 8px; padding: 10px 16px; font-family: var(--font-body); }
.cart_totals h2,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3 { font-family: var(--font-head); font-size: 24px; color: var(--white); font-weight: 300; margin-bottom: 24px; }
.woocommerce form .form-row label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); margin-bottom: 6px; display: block; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  background: var(--glass); border: 1px solid var(--glass-border) !important;
  color: var(--white); border-radius: 8px; padding: 12px 16px;
  font-family: var(--font-body); font-size: 13px; width: 100%;
}
.woocommerce form .form-row input.input-text:focus { border-color: var(--gold) !important; outline: none; }
.cart_totals .order-total .amount { color: var(--gold); font-family: var(--font-head); font-size: 24px; }

/* ═══════════════════════════════════════════════
   MY ACCOUNT (WooCommerce)
═══════════════════════════════════════════════ */
.woocommerce-account .woocommerce { max-width: 1400px; margin: 60px auto; padding: 0 40px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block; padding: 12px 20px; border-radius: 8px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dim); transition: color 0.3s, background 0.3s;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a { color: var(--gold); background: var(--glass); }

/* ═══════════════════════════════════════════════
   COUNTERS SECTION
═══════════════════════════════════════════════ */
.counters-section {
  background: linear-gradient(135deg, rgba(107,30,58,0.92) 0%, rgba(61,8,32,0.88) 100%), var(--counters-bg, #111) center 40% / cover no-repeat;
  padding: 100px 0; position: relative; overflow: hidden;
}
.counters-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px),
                    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px);
}
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.counter-num {
  font-family: var(--font-head); font-size: 64px; font-weight: 300;
  background: var(--gold-grad); background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 4s ease-in-out infinite; display: block; line-height: 1;
}
.counter-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(244,228,193,0.6); margin-top: 10px; }

/* ═══════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.why-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--r-lg); padding: 36px 28px; text-align: center;
  transition: transform 0.4s var(--ease-lux), border-color 0.3s;
  position: relative; overflow: hidden;
}
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity 0.3s; }
.why-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.3); }
.why-card:hover::before { opacity: 1; }
.why-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.why-title { font-family: var(--font-head); font-size: 18px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.why-desc { font-size: 13px; color: var(--dim); line-height: 1.7; font-weight: 300; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testi-section { background: linear-gradient(rgba(17,17,17,0.93), rgba(17,17,17,0.93)), var(--testi-bg, #111) center 30% / cover no-repeat fixed; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--r-lg); padding: 36px;
  transition: transform 0.4s var(--ease-lux), border-color 0.3s; position: relative;
}
.testi-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.3); }
.testi-quote-mark { font-family: var(--font-head); font-size: 72px; color: var(--gold); opacity: 0.2; line-height: 0.5; margin-bottom: 20px; display: block; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-star { color: var(--gold); font-size: 12px; }
.testi-text { font-family: var(--font-head); font-size: 16px; font-style: italic; line-height: 1.75; color: rgba(250,250,250,0.8); margin-bottom: 24px; font-weight: 300; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--burgundy), var(--gold3)); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 18px; color: var(--gold2); }
.testi-name { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; }
.testi-loc { font-size: 10px; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; }

/* ═══════════════════════════════════════════════
   COUPON
═══════════════════════════════════════════════ */
.coupon-section { background: linear-gradient(135deg, var(--black) 0%, #180B10 50%, var(--black) 100%); padding: 100px 0; text-align: center; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.coupon-inner { max-width: 680px; margin: 0 auto; padding: 0 40px; }
.coupon-eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.coupon-title { font-family: var(--font-head); font-size: 48px; font-weight: 300; line-height: 1.15; margin-bottom: 36px; }
.coupon-box { display: inline-flex; align-items: center; border: 1px solid var(--glass-border); border-radius: 100px; overflow: hidden; background: var(--glass); backdrop-filter: blur(12px); }
.coupon-code-display { font-family: var(--font-head); font-size: 24px; letter-spacing: 0.2em; color: var(--gold); padding: 16px 32px; font-weight: 300; }
.coupon-copy { background: var(--gold); color: #000; border: none; cursor: pointer; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 16px 28px; transition: opacity 0.2s; }
.coupon-copy:hover { opacity: 0.85; }
.coupon-sub { font-size: 12px; color: var(--dim); margin-top: 20px; letter-spacing: 0.08em; }

/* ═══════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════ */
.newsletter-section { padding: 120px 0; text-align: center; background: linear-gradient(rgba(10,10,10,0.88), rgba(10,10,10,0.88)), var(--newsletter-bg, #111) center / cover no-repeat; position: relative; }
.newsletter-inner { max-width: 560px; margin: 0 auto; padding: 0 40px; }
.newsletter-title { font-family: var(--font-head); font-size: 44px; font-weight: 300; margin-bottom: 12px; }
.newsletter-sub { font-size: 13px; color: var(--dim); margin-bottom: 36px; letter-spacing: 0.04em; line-height: 1.7; }
.newsletter-form { display: flex; border-radius: 100px; overflow: hidden; border: 1px solid var(--glass-border); background: var(--glass); backdrop-filter: blur(12px); }
.newsletter-form input { flex: 1; padding: 16px 24px; background: none; border: none; font-family: var(--font-body); font-size: 13px; color: var(--white); outline: none; letter-spacing: 0.04em; }
.newsletter-form input::placeholder { color: var(--dim); }
.newsletter-form button { background: var(--gold); color: #000; border: none; cursor: pointer; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 16px 28px; transition: opacity 0.2s; white-space: nowrap; }
.newsletter-form button:hover { opacity: 0.85; }

/* ═══════════════════════════════════════════════
   WooCommerce NOTICES
═══════════════════════════════════════════════ */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  background: var(--glass) !important; border-top: 3px solid var(--gold) !important;
  color: var(--white) !important; border-radius: 0 0 var(--r-sm) var(--r-sm) !important;
  padding: 16px 20px !important; margin-bottom: 24px !important;
}
.woocommerce-error { border-top-color: #e74c3c !important; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer.site-footer { background: #050305; border-top: 1px solid var(--glass-border); padding: 80px 0 36px; }
.footer-grid { max-width: 1400px; margin: 0 auto; padding: 0 40px 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; }
.footer-logo-text { font-family: var(--font-head); font-size: 28px; font-weight: 300; letter-spacing: 0.04em; margin-bottom: 16px; }
.footer-logo-text span { background: var(--gold-grad); background-size: 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 4s ease-in-out infinite; }
.footer-brand-desc { font-size: 13px; color: var(--dim); line-height: 1.8; font-weight: 300; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-social { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--glass-border); background: var(--glass); display: flex; align-items: center; justify-content: center; color: var(--dim); font-size: 12px; text-decoration: none; transition: border-color 0.3s, color 0.3s, background 0.3s; }
.footer-social:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); }
.footer-col h5 { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 400; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 13px; color: var(--dim); text-decoration: none; font-weight: 300; letter-spacing: 0.04em; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding: 24px 40px 0; border-top: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; }
.footer-payments { display: flex; gap: 8px; }
.pay-badge { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 6px; padding: 5px 10px; font-size: 10px; letter-spacing: 0.1em; color: var(--dim); }

/* ═══════════════════════════════════════════════
   BLOG / ARCHIVE / SINGLE
═══════════════════════════════════════════════ */
.page-content-wrapper { max-width: 1400px; margin: 80px auto; padding: 0 40px; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--r-lg); overflow: hidden; transition: transform 0.4s var(--ease-lux), border-color 0.3s; }
.post-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.3); }
.post-card img { width: 100%; height: 220px; object-fit: cover; }
.post-card-body { padding: 24px; }
.post-card-meta { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.post-card-title { font-family: var(--font-head); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.post-card-title a { text-decoration: none; color: inherit; }
.post-card-title a:hover { color: var(--gold); }
.post-card-excerpt { font-size: 13px; color: var(--dim); line-height: 1.7; margin-bottom: 20px; }
.single-post-content { max-width: 760px; margin: 0 auto; }
.single-post-content h1 { font-family: var(--font-head); font-size: clamp(36px, 5vw, 60px); font-weight: 300; margin-bottom: 24px; }
.single-post-content p { font-size: 15px; color: var(--dim); line-height: 1.9; margin-bottom: 20px; }
.single-post-content h2, .single-post-content h3 { font-family: var(--font-head); color: var(--white); margin: 36px 0 16px; }
.entry-content h2, .entry-content h3 { font-family: var(--font-head); color: var(--white); margin: 36px 0 16px; }
.entry-content p { font-size: 15px; color: var(--dim); line-height: 1.9; margin-bottom: 20px; }

/* Page Hero Banner */
.page-hero-banner {
  background: linear-gradient(135deg, rgba(10,10,10,0.97) 0%, rgba(107,30,58,0.3) 100%), var(--black2) center / cover;
  padding: 100px 40px; text-align: center; border-bottom: 1px solid var(--glass-border);
}
.page-hero-banner h1 { font-family: var(--font-head); font-size: clamp(36px, 5vw, 72px); font-weight: 300; }
.page-hero-banner .breadcrumb { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dim); margin-top: 12px; }
.page-hero-banner .breadcrumb a { color: var(--gold); text-decoration: none; }

/* ═══════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════ */
.woocommerce-pagination ul,
.pagination { display: flex; gap: 8px; justify-content: center; margin: 56px 0; list-style: none; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span,
.pagination a, .pagination span { background: var(--glass); border: 1px solid var(--glass-border); color: var(--dim); padding: 10px 16px; border-radius: 8px; font-size: 12px; text-decoration: none; transition: all 0.3s; }
.woocommerce-pagination ul li span.current,
.pagination .current { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════
   WIDGETS SIDEBAR
═══════════════════════════════════════════════ */
.widget-area { padding: 0; }
.widget { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--r-lg); padding: 28px; margin-bottom: 24px; }
.widget-title { font-family: var(--font-head); font-size: 18px; font-weight: 400; color: var(--white); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--glass-border); }
.widget ul li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.widget ul li a { font-size: 13px; color: var(--dim); text-decoration: none; transition: color 0.3s; }
.widget ul li a:hover { color: var(--gold); }
.widget_price_filter .price_slider_wrapper .ui-slider { background: var(--glass); }
.widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-range { background: var(--gold); }
.widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-handle { background: var(--gold); border-color: var(--gold); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-eyebrow, .hero-ctas, .hero-trust { justify-content: center; }
  .hero-sub { margin: 0 auto 44px; }
  .prod-grid, ul.products { grid-template-columns: repeat(2,1fr); }
  .flash-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counters-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .woocommerce div.product div.summary { padding-left: 32px; }
}
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .header-search { display: none; }
  .primary-nav { display: none; }
  .flash-products { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .woocommerce div.product { flex-direction: column; }
  .woocommerce div.product div.summary { padding-left: 0; margin-top: 32px; }
  .mobile-menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .header-inner { padding: 0 20px; }
  .section-inner { padding: 0 20px; }
}
@media (max-width: 480px) {
  .prod-grid, ul.products { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .counters-grid { grid-template-columns: 1fr 1fr; }
}
