/*
Theme Name:          Lux Theme
Theme URI:           https://luxeora.com
Author:              Luxéora
Author URI:          https://luxeora.com
Description:         Premium luxury e-commerce WordPress theme for fashion, fragrance and accessories brands. Built for WooCommerce with slide-out cart, quick view, countdown timers, product badges, mega menu, full Customizer control, and a complete multi-page layout — no coding required. Requires WooCommerce, WP Mail SMTP and Really Simple SSL.
Version:             1.2.0
Requires at least:   6.0
Tested up to:        6.7
Requires PHP:        8.0
WC requires at least: 7.0
WC tested up to:     8.9
License:             Proprietary — All Rights Reserved
License URI:         https://luxeora.com/license
Text Domain:         luxeora
Tags:                e-commerce, woocommerce, woocommerce-blocks, luxury, fashion, full-site-editing, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, rtl-language-support, footer-widgets, blog, portfolio, left-sidebar
*/

/* ============================================================
   LUXÉORA THEME — MAIN STYLESHEET  (White & Gold Edition)
   ============================================================ */

/* ── FONTS ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --lx-bg:           #ffffff;
  --lx-bg2:          #fafaf8;
  --lx-bg3:          #f5f1ea;

  /* Gold palette */
  --lx-gold:         #c9a84c;
  --lx-gold-light:   #e8c97a;
  --lx-gold-dim:     #a8893c;
  --lx-gold-pale:    #fdf8ec;
  --lx-gold-deep:    #7a6028;

  /* Aliases so PHP/old templates do not break */
  --lx-rose:         #c9a84c;
  --lx-rose-light:   #e8c97a;
  --lx-rose-dim:     #a8893c;
  --lx-green:        #c9a84c;
  --lx-ivory:        #ffffff;
  --lx-ivory-dim:    #ece6d8;

  /* Text */
  --lx-dark:         #1a1611;
  --lx-text:         #3d3525;
  --lx-text-muted:   #8a7d62;

  /* Borders & Utilities */
  --lx-muted:        rgba(201,168,76,0.55);
  --lx-border:       rgba(201,168,76,0.28);
  --lx-border-light: rgba(201,168,76,0.12);

  /* Fonts */
  --lx-font-display: 'Cormorant Garamond', Georgia, serif;
  --lx-font-body:    'Raleway', sans-serif;
  --lx-nav-h:        80px;
  --lx-transition:   0.28s cubic-bezier(.4,0,.2,1);

  /* Gradients */
  --lx-gold-grad:    linear-gradient(135deg, #c9a84c 0%, #e8c97a 50%, #c9a84c 100%);
  --lx-gold-bg:      linear-gradient(158deg, #c9a84c 0%, #e0bb6a 45%, #c9a84c 100%);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--lx-font-body);
  background: #ffffff;
  color: var(--lx-text);
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open, body.cart-open, body.quickview-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--lx-transition); }
button { font-family: var(--lx-font-body); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: var(--lx-font-body); outline: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--lx-font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--lx-dark);
}
h1 { font-size: clamp(40px, 7vw, 80px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 30px); }

.section-label {
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--lx-font-body);
  color: var(--lx-gold-dim);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--lx-font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 300;
  margin-bottom: 16px;
  color: var(--lx-dark);
}
.section-title em { font-style: italic; color: var(--lx-gold); }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.section { padding: 80px 0; }
.section-dark { background: var(--lx-gold-pale); color: var(--lx-dark); border-top: 1px solid var(--lx-border); border-bottom: 1px solid var(--lx-border); }
.section-green { background: var(--lx-bg2); color: var(--lx-dark); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn, .button, button[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 38px; font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  font-family: var(--lx-font-body);
  transition: all var(--lx-transition); cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--lx-gold); color: #ffffff; border: 1px solid var(--lx-gold); }
.btn-primary:hover { background: var(--lx-gold-dim); border-color: var(--lx-gold-dim); color: #ffffff; }
.btn-outline { background: transparent; color: #ffffff; border: 1px solid rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #ffffff; color: #ffffff; }
.btn-outline-dark { background: transparent; color: var(--lx-dark); border: 1px solid rgba(26,22,17,0.25); }
.btn-outline-dark:hover { background: var(--lx-gold); color: #ffffff; border-color: var(--lx-gold); }
.btn-gold-outline { background: transparent; color: var(--lx-gold); border: 1px solid var(--lx-gold); }
.btn-gold-outline:hover { background: var(--lx-gold); color: #ffffff; }
.btn-full { width: 100%; }

/* ── HEADER ─────────────────────────────────────────────────── */
#masthead {
  position: sticky; top: 0; z-index: 900;
  background: #ffffff; border-bottom: 1px solid var(--lx-border);
  height: var(--lx-nav-h); display: flex; align-items: center;
  transition: box-shadow 0.3s, background 0.3s;
}
#masthead.scrolled { box-shadow: 0 4px 32px rgba(201,168,76,0.14); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0 48px; gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  /* Never let the logo overflow the header */
  max-height: calc(var(--lx-nav-h) - 20px);
  overflow: hidden;
}
/* Uploaded logo image — constrained at every breakpoint */
.site-logo .site-logo-img {
  display: block;
  width: auto;
  height: clamp(32px, 5vw, 58px);   /* fluid: 32px on small phones → 58px on desktop */
  max-height: calc(var(--lx-nav-h) - 22px);
  max-width: min(200px, 38vw);      /* never wider than 38% of viewport */
  object-fit: contain;
  object-position: left center;
  transition: opacity var(--lx-transition);
}
.site-logo .site-logo-img:hover { opacity: 0.82; }
/* Strip WP's default custom logo wrapper if present */
.site-logo .custom-logo-link { display: contents; }
.site-logo .custom-logo-link img {
  display: block;
  width: auto;
  height: clamp(32px, 5vw, 58px);
  max-height: calc(var(--lx-nav-h) - 22px);
  max-width: min(200px, 38vw);
  object-fit: contain;
  object-position: left center;
}
/* Text fallback */
.site-logo .logo-text-wrap { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.logo-name { font-family: var(--lx-font-display); font-size: clamp(14px, 2.2vw, 22px); font-weight: 500; color: var(--lx-dark); letter-spacing: 0.22em; text-transform: uppercase; }
.logo-name span { color: var(--lx-gold); }
.logo-tagline { font-family: var(--lx-font-display); font-size: clamp(7px, 1vw, 10px); font-weight: 300; font-style: italic; color: var(--lx-gold-dim); letter-spacing: 0.16em; }

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .site-logo .site-logo-img,
  .site-logo .custom-logo-link img {
    height: clamp(30px, 5.5vw, 48px);
    max-width: min(160px, 40vw);
  }
}
/* Mobile (≤768px) */
@media (max-width: 768px) {
  .site-logo .site-logo-img,
  .site-logo .custom-logo-link img {
    height: clamp(28px, 7vw, 42px);
    max-width: min(140px, 42vw);
  }
}
/* Small phones (≤380px) */
@media (max-width: 380px) {
  .site-logo .site-logo-img,
  .site-logo .custom-logo-link img {
    height: 28px;
    max-width: 120px;
  }
}

/* Primary Nav */
#primary-nav { display: flex; align-items: center; }
#primary-nav > ul { display: flex; align-items: center; }
#primary-nav > ul > li { position: relative; }
#primary-nav > ul > li > a,
#primary-nav > ul > li > button {
  display: flex; align-items: center; gap: 6px;
  padding: 0 16px; height: var(--lx-nav-h);
  color: var(--lx-dark); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500; font-family: var(--lx-font-body);
  white-space: nowrap; position: relative;
  transition: color var(--lx-transition);
  background: none; border: none; cursor: pointer;
}
#primary-nav > ul > li > a::after,
#primary-nav > ul > li > button::after {
  content: ''; position: absolute; bottom: 16px; left: 16px; right: 16px;
  height: 1px; background: var(--lx-gold);
  transform: scaleX(0); transition: transform 0.3s var(--lx-transition); transform-origin: left;
}
#primary-nav > ul > li:hover > a,
#primary-nav > ul > li:hover > button { color: var(--lx-gold); }
#primary-nav > ul > li:hover > a::after,
#primary-nav > ul > li:hover > button::after { transform: scaleX(1); }

.nav-chevron { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.22s; opacity: 0.55; flex-shrink: 0; }
#primary-nav > ul > li:hover .nav-chevron { transform: rotate(225deg) translateY(-2px); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(var(--lx-nav-h) - 1px); left: 50%;
  min-width: 200px; background: #ffffff;
  border: 1px solid var(--lx-border); border-top: 2px solid var(--lx-gold);
  padding: 12px 0; opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  pointer-events: none; z-index: 100;
  box-shadow: 0 8px 32px rgba(201,168,76,0.12);
}
#primary-nav > ul > li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.nav-dropdown a { display: block; padding: 9px 22px; color: var(--lx-text); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; transition: color 0.2s, padding-left 0.2s; }
.nav-dropdown a:hover { color: var(--lx-gold); padding-left: 30px; }
.nav-dropdown hr { border: none; border-top: 1px solid var(--lx-border); margin: 8px 14px; }

/* Header Icons */
.header-icons { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.header-icon-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; cursor: pointer; color: var(--lx-dark); transition: color var(--lx-transition); position: relative; border-radius: 50%; }
.header-icon-btn:hover { color: var(--lx-gold); }
.header-icon-btn svg { width: 18px; height: 18px; }
.cart-item-count { position: absolute; top: 5px; right: 5px; width: 17px; height: 17px; background: var(--lx-gold); color: #ffffff; border-radius: 50%; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* Hamburger */
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: var(--lx-dark); transition: transform 0.3s, opacity 0.3s, width 0.3s; transform-origin: left; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(1px, -1px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(1px, 1px); }

/* (promo banner removed) */

/* ── MOBILE MENU OVERLAY ────────────────────────────────────── */
.mobile-overlay { position: fixed; inset: 0; background: rgba(201,168,76,0.15); backdrop-filter: blur(2px); z-index: 800; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ── MOBILE DRAWER ──────────────────────────────────────────── */
.mobile-drawer { position: fixed; top: 0; right: -100%; width: min(360px, 93vw); height: 100dvh; background: #ffffff; z-index: 850; display: flex; flex-direction: column; transition: right 0.38s cubic-bezier(.4,0,.2,1); overflow-y: auto; border-left: 1px solid var(--lx-border); }
.mobile-drawer.active { right: 0; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--lx-border); flex-shrink: 0; background: var(--lx-gold-pale); }
.drawer-head img { height: 44px; width: auto; }
.drawer-close { background: none; border: none; cursor: pointer; color: var(--lx-text-muted); font-size: 20px; line-height: 1; transition: color 0.2s; }
.drawer-close:hover { color: var(--lx-gold); }
.drawer-search { padding: 12px 22px; border-bottom: 1px solid var(--lx-border-light); }
.drawer-search input { width: 100%; background: var(--lx-gold-pale); border: 1px solid var(--lx-border); padding: 9px 14px; color: var(--lx-dark); font-size: 12px; letter-spacing: 0.1em; transition: border-color 0.2s; }
.drawer-search input::placeholder { color: var(--lx-text-muted); }
.drawer-search input:focus { border-color: var(--lx-gold); }
.drawer-nav { flex: 1; padding: 6px 0; }
.drawer-nav-item { border-bottom: 1px solid var(--lx-border-light); }
.drawer-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; color: var(--lx-dark); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: color 0.2s, background 0.2s; background: none; border: none; width: 100%; text-align: left; font-family: var(--lx-font-body); }
.drawer-nav-link:hover { color: var(--lx-gold); background: var(--lx-gold-pale); }
.drawer-chevron { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform 0.25s; opacity: 0.5; flex-shrink: 0; }
.drawer-nav-link.expanded .drawer-chevron { transform: rotate(225deg); }
.drawer-submenu { max-height: 0; overflow: hidden; transition: max-height 0.32s cubic-bezier(.4,0,.2,1); background: var(--lx-gold-pale); }
.drawer-submenu.open { max-height: 400px; }
.drawer-submenu a { display: block; padding: 10px 22px 10px 38px; color: var(--lx-text-muted); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; transition: color 0.2s, padding-left 0.2s; border-bottom: 1px solid var(--lx-border-light); }
.drawer-submenu a:last-child { border-bottom: none; }
.drawer-submenu a:hover { color: var(--lx-gold); padding-left: 48px; }
.drawer-footer { padding: 18px 22px; border-top: 1px solid var(--lx-border); flex-shrink: 0; background: var(--lx-bg3); }
.drawer-footer-links { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 12px; }
.drawer-footer-links a { color: var(--lx-text-muted); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.2s; }
.drawer-footer-links a:hover { color: var(--lx-gold); }
.drawer-tagline { font-family: var(--lx-font-display); font-style: italic; font-size: 12px; color: var(--lx-gold-dim); letter-spacing: 0.12em; }

/* ── SLIDE-OUT CART ─────────────────────────────────────────── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 950; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: -100%; width: min(420px, 95vw); height: 100dvh; background: #ffffff; z-index: 960; display: flex; flex-direction: column; transition: right 0.38s cubic-bezier(.4,0,.2,1); box-shadow: -20px 0 60px rgba(201,168,76,0.14); }
.cart-drawer.active { right: 0; }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; border-bottom: 1px solid var(--lx-border); background: var(--lx-gold-pale); }
.cart-drawer-head h3 { font-family: var(--lx-font-display); font-size: 18px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lx-dark); }
.cart-drawer-close { background: none; border: none; cursor: pointer; color: var(--lx-text-muted); font-size: 20px; transition: color 0.2s; }
.cart-drawer-close:hover { color: var(--lx-gold); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-item-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--lx-border-light); }
.cart-item-img { width: 70px; height: 88px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 500; font-size: 13px; margin-bottom: 4px; color: var(--lx-dark); }
.cart-item-meta { font-size: 11px; color: var(--lx-text-muted); letter-spacing: 0.08em; }
.cart-item-price { font-size: 14px; font-weight: 600; color: var(--lx-gold-dim); margin-top: 8px; }
.cart-item-qty-wrap { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.cart-qty-btn { width: 26px; height: 26px; border: 1px solid var(--lx-border); background: none; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s; }
.cart-qty-btn:hover { border-color: var(--lx-gold); background: var(--lx-gold); color: #fff; }
.cart-qty-input { width: 36px; text-align: center; border: 1px solid var(--lx-border); padding: 3px; font-size: 13px; }
.cart-item-remove { margin-left: auto; background: none; border: none; cursor: pointer; color: #bbb; font-size: 16px; transition: color 0.2s; }
.cart-item-remove:hover { color: #c00; }
.cart-drawer-foot { padding: 20px 28px; border-top: 1px solid var(--lx-border); background: var(--lx-bg2); }
.cart-subtotal { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; font-size: 14px; color: var(--lx-dark); }
.cart-subtotal-amount { font-weight: 700; font-size: 18px; color: var(--lx-gold-dim); }
.cart-shipping-note { font-size: 11px; color: var(--lx-text-muted); letter-spacing: 0.08em; margin-bottom: 18px; }
.cart-actions { display: flex; flex-direction: column; gap: 10px; }
.cart-actions .btn { text-align: center; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty svg { width: 48px; height: 48px; margin: 0 auto 16px; color: var(--lx-gold); opacity: 0.4; }
.cart-empty p { color: var(--lx-text-muted); font-size: 13px; }

/* ── SEARCH OVERLAY ─────────────────────────────────────────── */
.search-overlay { position: fixed; inset: 0; background: rgba(255,255,255,0.97); z-index: 970; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay-close { position: absolute; top: 28px; right: 36px; background: none; border: none; cursor: pointer; color: var(--lx-text-muted); font-size: 28px; transition: color 0.2s; }
.search-overlay-close:hover { color: var(--lx-gold); }
.search-form-wrap { width: 100%; max-width: 680px; padding: 0 24px; }
.search-form-wrap label { font-family: var(--lx-font-display); font-style: italic; font-size: 14px; color: var(--lx-text-muted); letter-spacing: 0.1em; display: block; margin-bottom: 16px; }
.search-input-row { display: flex; align-items: center; border-bottom: 2px solid var(--lx-gold); padding-bottom: 12px; }
.search-input-row input { flex: 1; background: none; border: none; color: var(--lx-dark); font-family: var(--lx-font-display); font-size: clamp(24px, 5vw, 44px); font-weight: 300; letter-spacing: 0.05em; }
.search-input-row input::placeholder { color: rgba(201,168,76,0.35); }
.search-submit { background: none; border: none; cursor: pointer; color: var(--lx-gold); margin-left: 16px; }
.search-submit svg { width: 26px; height: 26px; }

/* ── QUICK VIEW MODAL ───────────────────────────────────────── */
.quickview-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 980; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.quickview-overlay.active { opacity: 1; visibility: visible; }
.quickview-modal { background: #ffffff; width: 100%; max-width: 920px; max-height: 90dvh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: auto; transform: scale(0.95); transition: transform 0.3s; border-top: 3px solid var(--lx-gold); }
.quickview-overlay.active .quickview-modal { transform: scale(1); }
.quickview-close { position: absolute; top: 14px; right: 14px; background: none; border: none; cursor: pointer; font-size: 22px; color: var(--lx-text-muted); z-index: 2; transition: color 0.2s; }
.quickview-close:hover { color: var(--lx-gold); }
.quickview-gallery img { width: 100%; height: 100%; object-fit: cover; }
.quickview-info { padding: 40px 32px; }
.quickview-info .product-title { font-size: 24px; margin-bottom: 8px; color: var(--lx-dark); }
.quickview-info .product-price { font-size: 22px; font-weight: 600; color: var(--lx-gold-dim); margin-bottom: 20px; }
.quickview-info .product-desc { font-size: 13px; color: var(--lx-text-muted); line-height: 1.7; margin-bottom: 24px; }

/* ── PROMO POPUP ────────────────────────────────────────────── */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 990; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; }
.popup-overlay.active { opacity: 1; visibility: visible; }
.promo-popup { background: #ffffff; width: 100%; max-width: 680px; display: grid; grid-template-columns: 1fr 1fr; position: relative; transform: translateY(20px); transition: transform 0.4s; border-top: 3px solid var(--lx-gold); }
.popup-overlay.active .promo-popup { transform: translateY(0); }
.popup-close { position: absolute; top: 14px; right: 14px; background: none; border: none; cursor: pointer; color: var(--lx-text-muted); font-size: 20px; transition: color 0.2s; z-index: 2; }
.popup-close:hover { color: var(--lx-gold); }
.popup-img { min-height: 300px; background: var(--lx-gold-pale); }
.popup-img img { width: 100%; height: 100%; object-fit: cover; }
.popup-content { padding: 40px 32px; }
.popup-content .section-label { margin-bottom: 8px; }
.popup-content h3 { font-family: var(--lx-font-display); font-size: 28px; font-weight: 300; color: var(--lx-dark); margin-bottom: 10px; }
.popup-content p { font-size: 12px; color: var(--lx-text-muted); letter-spacing: 0.05em; margin-bottom: 22px; line-height: 1.7; }
.popup-form { display: flex; flex-direction: column; gap: 10px; }
.popup-form input { background: var(--lx-gold-pale); border: 1px solid var(--lx-border); padding: 11px 16px; color: var(--lx-dark); font-size: 12px; letter-spacing: 0.08em; transition: border-color 0.2s; }
.popup-form input::placeholder { color: var(--lx-text-muted); }
.popup-form input:focus { border-color: var(--lx-gold); }
.popup-skip { display: block; text-align: center; margin-top: 10px; font-size: 10px; color: var(--lx-text-muted); cursor: pointer; letter-spacing: 0.15em; transition: color 0.2s; }
.popup-skip:hover { color: var(--lx-gold-dim); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--lx-nav-h));
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  text-align: center; padding: 60px 24px;
  background: linear-gradient(158deg, #fffdf7 0%, #fdf5e0 50%, #fffdf7 100%);
  position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.10) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--lx-gold-grad); opacity: 0.4; }
.hero-eyebrow { animation: fadeUp 0.8s 0.2s both; }
.hero-title { font-size: clamp(54px, 9vw, 112px); font-weight: 300; color: var(--lx-dark); line-height: 1; margin-bottom: 8px; animation: fadeUp 0.8s 0.4s both; }
.hero-title em { font-style: italic; color: var(--lx-gold); }
.hero-subtitle { font-family: var(--lx-font-display); font-style: italic; font-size: clamp(14px, 2vw, 20px); color: var(--lx-text-muted); letter-spacing: 0.1em; margin-bottom: 44px; animation: fadeUp 0.8s 0.6s both; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.8s 0.8s both; }
.hero-ctas .btn-outline { color: var(--lx-dark); border-color: rgba(26,22,17,0.3); }
.hero-ctas .btn-outline:hover { background: var(--lx-gold); border-color: var(--lx-gold); color: #fff; }

/* ── COUNTDOWN TIMER ────────────────────────────────────────── */
.countdown-bar { background: var(--lx-gold); padding: 16px 48px; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.countdown-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.countdown-units { display: flex; gap: 16px; align-items: center; }
.countdown-unit { text-align: center; }
.countdown-num { font-family: var(--lx-font-display); font-size: 32px; font-weight: 300; color: #ffffff; line-height: 1; display: block; }
.countdown-unit-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 2px; }
.countdown-sep { font-size: 24px; color: rgba(255,255,255,0.5); margin-bottom: 10px; }

/* ── CATEGORY GRID ──────────────────────────────────────────── */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--lx-bg3); }
.category-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 32px; background: var(--lx-gold-pale); transition: transform 0.5s; }
.category-card:hover { transform: scale(1.01); }
.category-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(201,168,76,0.65) 0%, transparent 55%); z-index: 1; }
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.category-card:hover img { transform: scale(1.06); }
.category-card-inner { position: relative; z-index: 2; text-align: center; }
.category-card-name { font-family: var(--lx-font-display); font-size: clamp(18px, 3vw, 28px); font-weight: 400; color: #fff; letter-spacing: 0.12em; text-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.category-card-sub { font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-top: 6px; }

/* ── PRODUCTS GRID ──────────────────────────────────────────── */
.products-section { background: #ffffff; padding: 80px 0; }
.products-section-head { text-align: center; margin-bottom: 48px; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── PRODUCT CARD ───────────────────────────────────────────── */
.product-card { position: relative; }
.product-card-img-wrap { position: relative; overflow: hidden; background: var(--lx-gold-pale); aspect-ratio: 3/4; }
.product-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product-card:hover .product-card-img-wrap img { transform: scale(1.07); }

.product-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; z-index: 2; }
.badge-new { background: #ffffff; color: var(--lx-dark); border: 1px solid var(--lx-border); }
.badge-sale { background: var(--lx-gold); color: #ffffff; }
.badge-bestseller { background: var(--lx-gold-dim); color: #ffffff; }

.product-wishlist-btn { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; background: rgba(255,255,255,0.92); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(-4px); transition: opacity 0.3s, transform 0.3s, background 0.2s; z-index: 2; }
.product-wishlist-btn svg { width: 15px; height: 15px; color: var(--lx-dark); }
.product-card:hover .product-wishlist-btn { opacity: 1; transform: translateY(0); }
.product-wishlist-btn:hover { background: var(--lx-gold); }
.product-wishlist-btn:hover svg { color: #fff; }

.product-quickview-btn { position: absolute; bottom: 0; left: 0; right: 0; background: var(--lx-gold); color: #ffffff; border: none; cursor: pointer; padding: 11px; font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; font-family: var(--lx-font-body); transform: translateY(100%); transition: transform 0.3s, background 0.2s; }
.product-card:hover .product-quickview-btn { transform: translateY(0); }
.product-quickview-btn:hover { background: var(--lx-gold-dim); }

.product-card-info { padding: 14px 0 0; }
.product-card-cat { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lx-gold-dim); margin-bottom: 4px; }
.product-card-name { font-family: var(--lx-font-display); font-size: 16px; font-weight: 400; margin-bottom: 6px; color: var(--lx-dark); }
.product-card-price { font-size: 14px; font-weight: 600; color: var(--lx-dark); }
.product-card-price del { font-weight: 400; color: #bbb; margin-right: 6px; }
.product-card-price ins { text-decoration: none; color: var(--lx-gold); }

.stock-counter { font-size: 10px; color: #c0392b; letter-spacing: 0.08em; margin-top: 5px; }
.stock-counter.medium { color: #e67e22; }

.color-swatches { display: flex; gap: 5px; margin-top: 8px; }
.swatch { width: 16px; height: 16px; border-radius: 50%; cursor: pointer; border: 1.5px solid transparent; transition: border-color 0.2s; }
.swatch:hover, .swatch.active { border-color: var(--lx-gold); }

/* ── SINGLE PRODUCT PAGE ────────────────────────────────────── */
.single-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px 0; }
.product-gallery { position: relative; }
.product-gallery-main { position: relative; overflow: hidden; background: var(--lx-gold-pale); aspect-ratio: 3/4; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; cursor: zoom-in; }
.product-gallery-main img.zoomed { transform: scale(1.5); cursor: zoom-out; }
.product-gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; }
.product-gallery-thumbs img { width: 72px; height: 90px; object-fit: cover; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; border: 1px solid transparent; }
.product-gallery-thumbs img.active, .product-gallery-thumbs img:hover { opacity: 1; border-color: var(--lx-gold); }

.product-breadcrumb { font-size: 10px; letter-spacing: 0.14em; color: var(--lx-text-muted); text-transform: uppercase; margin-bottom: 16px; }
.product-breadcrumb a { color: var(--lx-text-muted); }
.product-breadcrumb a:hover { color: var(--lx-gold); }
.product-title { font-size: clamp(26px, 3vw, 36px); font-weight: 400; margin-bottom: 12px; color: var(--lx-dark); }
.product-price-block { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.product-price-main { font-size: 26px; font-weight: 600; color: var(--lx-gold-dim); }
.product-price-original { font-size: 16px; color: #bbb; text-decoration: line-through; }
.product-price-badge { background: var(--lx-gold); color: #ffffff; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; padding: 3px 9px; }
.product-short-desc { font-size: 13px; color: var(--lx-text-muted); line-height: 1.8; margin-bottom: 24px; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.stars { color: var(--lx-gold); font-size: 14px; letter-spacing: 2px; }
.rating-count { font-size: 12px; color: var(--lx-text-muted); }

.product-option-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; color: var(--lx-dark); }
.size-guide-link { font-size: 10px; color: var(--lx-gold); text-decoration: underline; cursor: pointer; text-transform: lowercase; letter-spacing: 0; }
.size-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.size-btn { padding: 8px 16px; border: 1px solid var(--lx-border); background: none; font-size: 11px; cursor: pointer; transition: all 0.2s; font-family: var(--lx-font-body); color: var(--lx-dark); }
.size-btn:hover, .size-btn.active { border-color: var(--lx-gold); background: var(--lx-gold); color: #fff; }
.size-btn.out-of-stock { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

.product-qty-wrap { display: flex; align-items: center; gap: 0; margin-bottom: 20px; }
.qty-btn { width: 44px; height: 48px; border: 1px solid var(--lx-border); background: none; font-size: 18px; cursor: pointer; transition: background 0.2s; color: var(--lx-dark); }
.qty-btn:hover { background: var(--lx-gold); color: #fff; border-color: var(--lx-gold); }
.qty-input { width: 60px; height: 48px; border: 1px solid var(--lx-border); border-left: none; border-right: none; text-align: center; font-size: 15px; font-weight: 500; color: var(--lx-dark); }

.product-add-row { display: flex; gap: 10px; margin-bottom: 24px; }
.product-add-row .btn-primary { flex: 1; height: 52px; font-size: 11px; }
.product-wishlist { width: 52px; height: 52px; border: 1px solid var(--lx-border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; background: none; flex-shrink: 0; color: var(--lx-dark); }
.product-wishlist:hover { background: var(--lx-gold); border-color: var(--lx-gold); color: #fff; }
.product-wishlist svg { width: 18px; height: 18px; }

.sticky-atc-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #ffffff; color: var(--lx-dark); padding: 14px 48px; display: flex; align-items: center; justify-content: space-between; gap: 20px; transform: translateY(100%); transition: transform 0.3s; z-index: 800; border-top: 2px solid var(--lx-gold); box-shadow: 0 -4px 24px rgba(201,168,76,0.15); }
.sticky-atc-bar.visible { transform: translateY(0); }
.sticky-atc-product { display: flex; align-items: center; gap: 14px; }
.sticky-atc-img { width: 44px; height: 54px; object-fit: cover; }
.sticky-atc-name { font-size: 13px; font-weight: 500; color: var(--lx-dark); }
.sticky-atc-price { font-size: 14px; color: var(--lx-gold); }

.product-tabs { margin-top: 40px; border-top: 1px solid var(--lx-border); }
.tab-nav { display: flex; gap: 0; border-bottom: 1px solid var(--lx-border); }
.tab-btn { padding: 12px 24px; background: none; border: none; cursor: pointer; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; font-family: var(--lx-font-body); color: var(--lx-text-muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.2s, border-color 0.2s; }
.tab-btn:hover { color: var(--lx-dark); }
.tab-btn.active { color: var(--lx-dark); border-bottom-color: var(--lx-gold); }
.tab-content { padding: 24px 0; display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: 13px; color: var(--lx-text-muted); line-height: 1.9; }

.sizechart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 985; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.sizechart-overlay.active { opacity: 1; visibility: visible; }
.sizechart-modal { background: #ffffff; max-width: 640px; width: 100%; padding: 40px; position: relative; max-height: 85dvh; overflow-y: auto; border-top: 3px solid var(--lx-gold); }
.sizechart-close { position: absolute; top: 14px; right: 14px; background: none; border: none; cursor: pointer; font-size: 20px; color: var(--lx-text-muted); }
.sizechart-close:hover { color: var(--lx-gold); }
.sizechart-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.sizechart-table th, .sizechart-table td { border: 1px solid var(--lx-border); padding: 10px 14px; text-align: center; font-size: 13px; }
.sizechart-table th { background: var(--lx-gold); color: #ffffff; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }
.sizechart-table td { color: var(--lx-dark); }

/* ── BRAND STORY ────────────────────────────────────────────── */
.brand-story { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.brand-story-img { min-height: 500px; background: var(--lx-gold-pale); }
.brand-story-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-story-content { background: linear-gradient(155deg, #c9a84c 0%, #e0bb6a 55%, #c9a84c 100%); color: #ffffff; padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.brand-story-content .section-label { color: rgba(255,255,255,0.75); }
.brand-story-content .section-title { color: #ffffff; }
.brand-story-content .section-title em { color: rgba(255,255,255,0.75); }
.brand-story-content p { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.brand-story-signature { font-family: var(--lx-font-display); font-style: italic; font-size: 22px; color: rgba(255,255,255,0.92); margin-top: 8px; }

/* ── LOOKBOOK ───────────────────────────────────────────────── */
.lookbook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.lookbook-item { position: relative; overflow: hidden; cursor: pointer; }
.lookbook-item.tall { grid-row: span 2; }
.lookbook-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; display: block; }
.lookbook-item:hover img { transform: scale(1.05); }
.lookbook-overlay { position: absolute; inset: 0; background: rgba(201,168,76,0.35); display: flex; align-items: flex-end; padding: 24px; opacity: 0; transition: opacity 0.3s; }
.lookbook-item:hover .lookbook-overlay { opacity: 1; }
.lookbook-hotspot { position: absolute; width: 28px; height: 28px; background: rgba(255,255,255,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; z-index: 2; }
.lookbook-hotspot::after { content: '+'; font-size: 18px; font-weight: 300; color: var(--lx-gold-dim); line-height: 1; }
.lookbook-hotspot:hover { background: var(--lx-gold); }
.lookbook-hotspot:hover::after { color: #ffffff; }

/* ── RECENTLY VIEWED ────────────────────────────────────────── */
.recently-viewed { padding: 60px 0; background: var(--lx-bg3); }
.recently-viewed h3 { font-family: var(--lx-font-display); font-size: 22px; font-weight: 300; text-align: center; margin-bottom: 32px; letter-spacing: 0.08em; color: var(--lx-dark); }

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter-section { background: linear-gradient(155deg, #c9a84c 0%, #e0bb6a 55%, #c9a84c 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.newsletter-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 40% 60% at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%); pointer-events: none; }
.newsletter-section .section-label { color: rgba(255,255,255,0.75); }
.newsletter-section .section-title { color: #ffffff; }
.newsletter-section .section-title em { color: rgba(255,255,255,0.75); }
.newsletter-section p { color: rgba(255,255,255,0.82); font-size: 13px; letter-spacing: 0.06em; margin-bottom: 32px; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.22); border: 1px solid rgba(255,255,255,0.4); border-right: none; padding: 14px 20px; color: #ffffff; font-size: 12px; letter-spacing: 0.1em; transition: border-color 0.2s; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form input:focus { border-color: #ffffff; outline: none; }
.newsletter-form .btn { background: #ffffff; color: var(--lx-gold-dim); border: 1px solid #ffffff; border-left: none; }
.newsletter-form .btn:hover { background: var(--lx-gold-dim); color: #ffffff; border-color: var(--lx-gold-dim); }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section { background: #ffffff; padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.testimonial-card { padding: 32px; border: 1px solid var(--lx-border); background: var(--lx-gold-pale); }
.testimonial-stars { color: var(--lx-gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-family: var(--lx-font-display); font-style: italic; font-size: 15px; color: var(--lx-dark); line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lx-gold-dim); }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer#colophon { background: var(--lx-bg3); color: var(--lx-dark); border-top: 1px solid var(--lx-border); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 0 48px; }
.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 12px; color: var(--lx-text-muted); line-height: 1.8; max-width: 260px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn { width: 34px; height: 34px; border: 1px solid var(--lx-border); display: flex; align-items: center; justify-content: center; color: var(--lx-text-muted); cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.footer-social-btn:hover { background: var(--lx-gold); border-color: var(--lx-gold); color: #ffffff; }
.footer-social-btn svg { width: 14px; height: 14px; }
.footer-col h4 { font-family: var(--lx-font-body); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; color: var(--lx-gold-dim); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 12px; color: var(--lx-text-muted); letter-spacing: 0.06em; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--lx-gold); }
.footer-bottom { border-top: 1px solid var(--lx-border-light); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 11px; color: var(--lx-text-muted); letter-spacing: 0.1em; }
.footer-payments { display: flex; gap: 8px; align-items: center; }
.payment-icon { height: 22px; opacity: 0.55; }
.footer-legal-links { display: flex; gap: 18px; }
.footer-legal-links a { font-size: 10px; color: var(--lx-text-muted); letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--lx-gold); }

/* ── SHOP PAGE ──────────────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding: 60px 0; }
.sidebar-widget { margin-bottom: 36px; }
.sidebar-widget-title { font-family: var(--lx-font-body); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; color: var(--lx-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--lx-border); }
.filter-list { display: flex; flex-direction: column; gap: 8px; }
.filter-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.filter-item input { cursor: pointer; accent-color: var(--lx-gold); }
.filter-item label { font-size: 12px; color: var(--lx-text-muted); cursor: pointer; transition: color 0.2s; }
.filter-item label:hover, .filter-item input:checked + label { color: var(--lx-dark); font-weight: 500; }
.price-slider { width: 100%; accent-color: var(--lx-gold); }
.price-range-display { display: flex; justify-content: space-between; font-size: 12px; color: var(--lx-text-muted); margin-top: 8px; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.results-count { font-size: 12px; color: var(--lx-text-muted); letter-spacing: 0.06em; }
.sort-select { background: transparent; border: 1px solid var(--lx-border); padding: 8px 12px; font-size: 11px; letter-spacing: 0.1em; font-family: var(--lx-font-body); color: var(--lx-dark); cursor: pointer; }

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero { background: linear-gradient(155deg, #fffdf7 0%, #fdf5e0 100%); padding: 64px 48px; text-align: center; border-bottom: 1px solid var(--lx-border); }
.page-hero h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 300; color: var(--lx-dark); letter-spacing: 0.08em; margin-bottom: 8px; }
.page-hero .page-breadcrumb { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lx-text-muted); }
.page-breadcrumb a { color: var(--lx-text-muted); }
.page-breadcrumb a:hover { color: var(--lx-gold); }

/* ── BLOG ───────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 60px 0; }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--lx-gold-pale); margin-bottom: 18px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-cat { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--lx-gold); margin-bottom: 6px; }
.blog-card-title { font-family: var(--lx-font-display); font-size: 20px; font-weight: 400; color: var(--lx-dark); margin-bottom: 10px; line-height: 1.3; }
.blog-card-excerpt { font-size: 12px; color: var(--lx-text-muted); line-height: 1.8; margin-bottom: 14px; }
.blog-card-meta { font-size: 10px; color: #bbb; letter-spacing: 0.1em; }
.blog-read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--lx-dark); transition: gap 0.2s, color 0.2s; }
.blog-read-more:hover { color: var(--lx-gold); gap: 14px; }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 80px 0; }
.contact-info h3 { font-size: 24px; font-weight: 300; color: var(--lx-dark); margin-bottom: 20px; }
.contact-info p { font-size: 13px; color: var(--lx-text-muted); line-height: 1.9; margin-bottom: 24px; }
.contact-detail { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.contact-detail svg { width: 16px; height: 16px; color: var(--lx-gold); flex-shrink: 0; margin-top: 3px; }
.contact-detail p { font-size: 13px; color: var(--lx-text-muted); margin: 0; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea, .contact-form select { background: var(--lx-gold-pale); border: 1px solid var(--lx-border); padding: 13px 16px; font-size: 13px; color: var(--lx-dark); transition: border-color 0.2s; font-family: var(--lx-font-body); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--lx-gold); outline: none; }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.about-hero { min-height: 420px; background: linear-gradient(155deg, #fffdf7 0%, #fdf5e0 100%); display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 24px; }
.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--lx-border); margin: 0; }
.value-card { padding: 40px 28px; background: #ffffff; text-align: center; }
.value-icon { width: 40px; height: 40px; margin: 0 auto 16px; color: var(--lx-gold); }
.value-card h4 { font-family: var(--lx-font-display); font-size: 18px; font-weight: 400; margin-bottom: 10px; color: var(--lx-dark); }
.value-card p { font-size: 12px; color: var(--lx-text-muted); line-height: 1.8; }

/* ── WooCommerce Overrides ───────────────────────────────────── */
.woocommerce-notices-wrapper { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.woocommerce-message, .woocommerce-info { padding: 12px 20px; border-left: 3px solid var(--lx-gold); background: var(--lx-gold-pale); font-size: 13px; margin-bottom: 20px; color: var(--lx-dark); }
.woocommerce-error { padding: 12px 20px; border-left: 3px solid #c0392b; background: rgba(192,57,43,0.06); font-size: 13px; margin-bottom: 20px; }
.woocommerce-cart-form, .cart-collaterals { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
table.cart { width: 100%; border-collapse: collapse; }
table.cart th { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--lx-dark); border-bottom: 1px solid var(--lx-border); padding: 12px 0; }
table.cart td { padding: 20px 0; border-bottom: 1px solid var(--lx-border); vertical-align: middle; color: var(--lx-dark); }
table.cart .product-thumbnail img { width: 70px; height: 88px; object-fit: cover; }
.cart-subtotal-block { background: var(--lx-gold-pale); padding: 28px; border: 1px solid var(--lx-border); }
.checkout-form .form-row { margin-bottom: 16px; }
.checkout-form input, .checkout-form select { width: 100%; background: var(--lx-gold-pale); border: 1px solid var(--lx-border); padding: 12px 14px; font-family: var(--lx-font-body); font-size: 13px; color: var(--lx-dark); transition: border-color 0.2s; }
.checkout-form input:focus, .checkout-form select:focus { border-color: var(--lx-gold); outline: none; }
.order-review-table { width: 100%; border-collapse: collapse; font-size: 13px; color: var(--lx-dark); }
.order-review-table tr td { padding: 10px 0; border-bottom: 1px solid var(--lx-border); }
.order-review-table tr:last-child td { border: none; font-weight: 600; }
#place_order { width: 100%; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PAGINATION ─────────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 48px; }
.page-numbers { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--lx-border); font-size: 12px; color: var(--lx-dark); transition: all 0.2s; }
.page-numbers.current, .page-numbers:hover { background: var(--lx-gold); color: #fff; border-color: var(--lx-gold); }

/* ── ACCOUNT PAGE ───────────────────────────────────────────── */
.account-wrapper { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 60px 0; }
.account-nav-list { display: flex; flex-direction: column; gap: 2px; }
.account-nav-list li a { display: block; padding: 11px 16px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lx-text-muted); transition: all 0.2s; border-left: 2px solid transparent; }
.account-nav-list li a:hover, .account-nav-list li.is-active a { color: var(--lx-dark); border-left-color: var(--lx-gold); background: var(--lx-gold-pale); }
.order-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.order-table th { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lx-dark); border-bottom: 1px solid var(--lx-border); padding: 10px 0; text-align: left; }
.order-table td { padding: 14px 0; border-bottom: 1px solid var(--lx-border); color: var(--lx-text); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .header-inner { padding: 0 24px; }
  #primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .single-product-layout { grid-template-columns: 1fr; gap: 40px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .shop-sidebar.open { display: block; }
  .brand-story { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { aspect-ratio: 16/9; padding-bottom: 22px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; }
  .promo-popup { grid-template-columns: 1fr; }
  .popup-img { display: none; }
  .quickview-modal { grid-template-columns: 1fr; }
  .countdown-bar { padding: 14px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(255,255,255,0.4); }
  .sticky-atc-bar { padding: 12px 20px; }
  .account-wrapper { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero { min-height: 80vh; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .promo-banner { padding: 10px 20px; font-size: 10px; }
  .page-hero { padding: 44px 20px; }
  .about-values { grid-template-columns: 1fr; }
}
