/* ============================================
   CHAIR COVER NY — Design System
   Niche: Event & Wedding Chair Covers / Table Linens
   Personality: Elegant, formal, trustworthy, refined
   ============================================ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font-body);background:var(--color-bg);color:var(--color-text-primary);line-height:1.6;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
input,select,textarea{font-family:inherit;font-size:inherit}
ul,ol{list-style:none}
table{border-collapse:collapse;width:100%}

:root{
  /* Colors — elegant event decor palette: deep navy, gold, ivory */
  --color-bg:#FDFBF7;
  --color-surface:#FFFFFF;
  --color-surface-alt:#F5F1E8;
  --color-border:#E4DCCB;
  --color-text-primary:#1E2A3A;
  --color-text-secondary:#4A5568;
  --color-text-muted:#8B8578;
  --color-accent:#1F3A5F;
  --color-accent-hover:#152A47;
  --color-accent-fg:#FFFFFF;
  --color-accent-light:#E8EDF3;
  --color-gold:#B8945A;
  --color-gold-hover:#9D7C45;
  --color-gold-light:#F3EBDA;
  --color-success:#3F7A5E;
  --color-warning:#C79A3E;
  --color-error:#B04A3E;
  --color-sale:#B04A3E;

  /* Typography */
  --font-heading:'Cormorant Garamond',Georgia,serif;
  --font-body:'Jost',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --font-mono:'JetBrains Mono','Courier New',monospace;

  --radius-sm:4px;
  --radius-md:8px;
  --radius-lg:16px;
  --radius-full:9999px;

  --shadow-sm:0 1px 3px rgba(30,42,58,.07);
  --shadow-md:0 4px 16px rgba(30,42,58,.10);
  --shadow-lg:0 12px 40px rgba(30,42,58,.14);

  --space-xs:4px;--space-sm:8px;--space-md:16px;--space-lg:24px;
  --space-xl:40px;--space-2xl:64px;--space-3xl:96px;

  --transition-fast:150ms ease;
  --transition-base:250ms ease;

  --container-max:1280px;
  --header-height:76px;
}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
:focus-visible{outline:2px solid var(--color-gold);outline-offset:2px;border-radius:var(--radius-sm)}
@media (prefers-reduced-motion:reduce){*{animation-duration:.01ms!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}

.container{max-width:var(--container-max);margin:0 auto;padding:0 var(--space-md)}
@media(min-width:768px){.container{padding:0 var(--space-lg)}}
@media(min-width:1024px){.container{padding:0 var(--space-xl)}}

/* --- Buttons --- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:var(--space-sm);padding:13px 28px;font-size:.9rem;font-weight:500;border-radius:var(--radius-sm);transition:all var(--transition-base);white-space:nowrap;cursor:pointer;text-align:center;line-height:1.4;letter-spacing:.03em;text-transform:uppercase}
.btn-primary{background:var(--color-accent);color:var(--color-accent-fg)}
.btn-primary:hover{background:var(--color-accent-hover);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn-gold{background:var(--color-gold);color:#fff}
.btn-gold:hover{background:var(--color-gold-hover);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn-secondary{background:var(--color-gold);color:#fff}
.btn-secondary:hover{background:var(--color-gold-hover);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn-ghost{background:transparent;color:var(--color-text-primary);border:1.5px solid var(--color-border)}
.btn-ghost:hover{border-color:var(--color-gold);color:var(--color-gold);background:var(--color-gold-light)}
.btn-lg{padding:16px 40px;font-size:1rem}
.btn-sm{padding:8px 18px;font-size:.8rem}
.btn-block{width:100%}
.btn:disabled{opacity:.5;cursor:not-allowed;transform:none!important;box-shadow:none!important}

.badge{display:inline-flex;align-items:center;padding:3px 10px;font-size:.72rem;font-weight:600;border-radius:var(--radius-full);letter-spacing:.04em}
.badge-sale{background:var(--color-sale);color:#fff}
.badge-new{background:var(--color-gold);color:#fff}
.badge-out{background:var(--color-text-muted);color:#fff}
.badge-count{background:var(--color-gold);color:#fff;min-width:20px;height:20px;border-radius:var(--radius-full);font-size:.7rem;font-weight:700;display:inline-flex;align-items:center;justify-content:center;padding:0 6px}

.announcement-bar{background:var(--color-accent);color:var(--color-bg);text-align:center;padding:11px var(--space-md);font-size:.82rem;font-weight:400;letter-spacing:.04em}
.announcement-bar strong{color:var(--color-gold);font-weight:600}

/* --- Navigation --- */
.nav{position:sticky;top:0;z-index:100;background:var(--color-surface);border-bottom:1px solid var(--color-border);height:var(--header-height);display:flex;align-items:center}
.nav-inner{display:flex;align-items:center;justify-content:space-between;width:100%;gap:var(--space-md)}
.nav-logo{font-family:var(--font-heading);font-size:1.7rem;font-weight:700;color:var(--color-text-primary);white-space:nowrap;display:flex;align-items:center;gap:6px;letter-spacing:.02em}
.nav-logo span{color:var(--color-gold)}
.nav-links{display:none;align-items:center;gap:var(--space-lg)}
.nav-links a{font-size:.88rem;font-weight:500;color:var(--color-text-secondary);transition:color var(--transition-fast);position:relative;letter-spacing:.03em;text-transform:uppercase}
.nav-links a:hover{color:var(--color-gold)}
.nav-links a::after{content:'';position:absolute;bottom:-6px;left:0;width:0;height:2px;background:var(--color-gold);transition:width var(--transition-base)}
.nav-links a:hover::after{width:100%}
.nav-dropdown{position:relative}
.nav-dropdown-menu{position:absolute;top:100%;left:0;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);box-shadow:var(--shadow-lg);min-width:230px;padding:var(--space-sm) 0;opacity:0;visibility:hidden;transform:translateY(8px);transition:all var(--transition-base);z-index:50}
.nav-dropdown:hover .nav-dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.nav-dropdown-menu a{display:block;padding:9px var(--space-lg);font-size:.85rem;color:var(--color-text-secondary);text-transform:none;letter-spacing:0}
.nav-dropdown-menu a::after{display:none}
.nav-dropdown-menu a:hover{background:var(--color-surface-alt);color:var(--color-gold)}
.nav-actions{display:flex;align-items:center;gap:var(--space-md)}
.nav-icon-btn{position:relative;width:42px;height:42px;display:flex;align-items:center;justify-content:center;border-radius:var(--radius-sm);color:var(--color-text-secondary);transition:all var(--transition-fast)}
.nav-icon-btn:hover{color:var(--color-gold);background:var(--color-gold-light)}
.nav-icon-btn svg{width:22px;height:22px}
.nav-cart-count{position:absolute;top:2px;right:2px}
.nav-search-wrap{display:none;align-items:center}
.nav-search-input{padding:9px 16px;border:1.5px solid var(--color-border);border-radius:var(--radius-full);font-size:.85rem;width:210px;transition:all var(--transition-fast);background:var(--color-bg)}
.nav-search-input:focus{border-color:var(--color-gold);outline:none;width:260px}

@media(min-width:1024px){
  .nav-links{display:flex}
  .nav-search-wrap{display:flex}
  .hamburger{display:none}
}

.hamburger{display:flex;flex-direction:column;gap:5px;width:28px;height:22px;justify-content:center}
.hamburger span{display:block;height:2px;width:100%;background:var(--color-text-primary);border-radius:2px;transition:all var(--transition-base)}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-menu{position:fixed;top:var(--header-height);left:0;right:0;bottom:0;background:var(--color-surface);z-index:99;transform:translateX(-100%);transition:transform var(--transition-base);overflow-y:auto;padding:var(--space-lg) var(--space-md)}
.mobile-menu.open{transform:translateX(0)}
.mobile-menu a{display:block;padding:14px 0;font-size:1.05rem;font-weight:500;color:var(--color-text-primary);border-bottom:1px solid var(--color-border)}
.mobile-menu a:hover{color:var(--color-gold)}
.mobile-menu-search{margin-bottom:var(--space-lg)}
.mobile-menu-search input{width:100%;padding:12px 16px;border:1.5px solid var(--color-border);border-radius:var(--radius-md);font-size:1rem;background:var(--color-bg)}

/* --- Hero --- */
.hero{position:relative;min-height:560px;display:flex;align-items:center;overflow:hidden;background:linear-gradient(135deg,var(--color-accent) 0%,#2a4a72 100%)}
@media(min-width:768px){.hero{min-height:640px}}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;opacity:.35}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(30,42,58,.85) 0%,rgba(30,42,58,.55) 50%,rgba(30,42,58,.3) 100%);z-index:1}
.hero-content{position:relative;z-index:2;max-width:620px;padding:var(--space-2xl) 0}
.hero-eyebrow{display:inline-block;padding:7px 18px;background:rgba(184,148,90,.2);backdrop-filter:blur(8px);border:1px solid rgba(184,148,90,.4);border-radius:var(--radius-full);color:var(--color-gold);font-size:.78rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;margin-bottom:var(--space-md)}
.hero-title{font-family:var(--font-heading);font-size:3rem;font-weight:600;color:#fff;line-height:1.1;margin-bottom:var(--space-md)}
@media(min-width:768px){.hero-title{font-size:4.2rem}}
@media(min-width:1024px){.hero-title{font-size:4.8rem}}
.hero-subtitle{font-size:1.15rem;color:rgba(255,255,255,.9);margin-bottom:var(--space-xl);max-width:500px;line-height:1.7;font-weight:300}
.hero-actions{display:flex;gap:var(--space-md);flex-wrap:wrap}
.hero .btn-ghost{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.4);color:#fff}
.hero .btn-ghost:hover{background:rgba(255,255,255,.18);border-color:#fff;color:#fff}

.section{padding:var(--space-2xl) 0}
.section-alt{background:var(--color-surface-alt)}
.section-header{text-align:center;max-width:640px;margin:0 auto var(--space-xl)}
.section-eyebrow{display:inline-block;color:var(--color-gold);font-size:.8rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;margin-bottom:var(--space-sm)}
.section-title{font-family:var(--font-heading);font-size:2.4rem;font-weight:600;color:var(--color-text-primary);margin-bottom:var(--space-sm);line-height:1.15}
@media(min-width:768px){.section-title{font-size:3rem}}
.section-subtitle{font-size:1.05rem;color:var(--color-text-secondary);line-height:1.7;font-weight:300}

.grid-2{display:grid;grid-template-columns:1fr;gap:var(--space-lg)}
.grid-3{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--space-lg)}
.grid-4{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--space-lg)}
.grid-auto{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:var(--space-lg)}
@media(min-width:768px){.grid-2{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(3,1fr)}.grid-4{grid-template-columns:repeat(4,1fr)}}

/* --- Product Card --- */
.product-card{background:var(--color-surface);border-radius:var(--radius-md);overflow:hidden;transition:all var(--transition-base);border:1px solid var(--color-border);display:flex;flex-direction:column}
.product-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.product-card-img{position:relative;aspect-ratio:1;overflow:hidden;background:var(--color-surface-alt)}
.product-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.product-card:hover .product-card-img img{transform:scale(1.05)}
.product-card-badges{position:absolute;top:10px;left:10px;display:flex;flex-direction:column;gap:4px;z-index:2}
.product-card-body{padding:var(--space-md);display:flex;flex-direction:column;gap:var(--space-xs);flex:1}
.product-card-vendor{font-size:.72rem;color:var(--color-gold);text-transform:uppercase;letter-spacing:.08em;font-weight:600}
.product-card-title{font-size:.95rem;font-weight:500;color:var(--color-text-primary);line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:2.6em}
.product-card-title a:hover{color:var(--color-gold)}
.product-card-price-wrap{display:flex;align-items:center;gap:var(--space-sm);margin-top:auto}
.product-card-price{font-family:var(--font-mono);font-size:1.05rem;font-weight:700;color:var(--color-text-primary)}
.product-card-compare-price{font-family:var(--font-mono);font-size:.85rem;color:var(--color-text-muted);text-decoration:line-through}
.product-card-atc{margin-top:var(--space-sm);padding:10px 16px;background:var(--color-surface-alt);color:var(--color-text-primary);border:1.5px solid var(--color-border);border-radius:var(--radius-sm);font-size:.8rem;font-weight:600;transition:all var(--transition-fast);text-align:center;width:100%;text-transform:uppercase;letter-spacing:.03em}
.product-card-atc:hover{background:var(--color-accent);color:#fff;border-color:var(--color-accent)}

.collection-card{position:relative;aspect-ratio:4/3;border-radius:var(--radius-md);overflow:hidden;display:block}
.collection-card img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.collection-card:hover img{transform:scale(1.06)}
.collection-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(30,42,58,.85) 0%,rgba(30,42,58,.2) 55%,transparent 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:var(--space-lg)}
.collection-card-title{font-family:var(--font-heading);font-size:1.6rem;font-weight:600;color:#fff;margin-bottom:4px}
.collection-card-count{font-size:.82rem;color:var(--color-gold);letter-spacing:.03em}

/* --- Trust Badges --- */
.trust-badges{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--space-md);padding:var(--space-xl) 0}
@media(min-width:768px){.trust-badges{grid-template-columns:repeat(4,1fr)}}
.trust-item{text-align:center;padding:var(--space-lg)}
.trust-item svg{width:36px;height:36px;color:var(--color-gold);margin:0 auto var(--space-sm)}
.trust-item-title{font-size:.9rem;font-weight:600;color:var(--color-text-primary);margin-bottom:2px}
.trust-item-desc{font-size:.8rem;color:var(--color-text-muted)}

.breadcrumb{display:flex;flex-wrap:wrap;align-items:center;gap:var(--space-xs);padding:var(--space-md) 0;font-size:.83rem;color:var(--color-text-muted)}
.breadcrumb a{color:var(--color-text-secondary);transition:color var(--transition-fast)}
.breadcrumb a:hover{color:var(--color-gold)}
.breadcrumb-sep{color:var(--color-text-muted);font-size:.7rem}
.breadcrumb-current{color:var(--color-text-primary);font-weight:500}

/* --- Product Page --- */
.product-layout{display:grid;grid-template-columns:1fr;gap:var(--space-xl);padding:var(--space-lg) 0 var(--space-2xl)}
@media(min-width:768px){.product-layout{grid-template-columns:1fr 1fr;gap:var(--space-2xl)}}
@media(min-width:1024px){.product-layout{grid-template-columns:1.1fr .9fr}}
.product-gallery{display:flex;flex-direction:column;gap:var(--space-md)}
.gallery-main-wrap{position:relative;border-radius:var(--radius-md);overflow:hidden;background:var(--color-surface-alt);aspect-ratio:1}
.gallery-main-wrap img{width:100%;height:100%;object-fit:cover;cursor:zoom-in}
.gallery-thumbs{display:flex;gap:var(--space-sm);overflow-x:auto;padding-bottom:var(--space-xs)}
.gallery-thumb{width:72px;height:72px;border-radius:var(--radius-sm);overflow:hidden;border:2px solid transparent;cursor:pointer;flex-shrink:0;transition:border-color var(--transition-fast)}
.gallery-thumb.active{border-color:var(--color-gold)}
.gallery-thumb img{width:100%;height:100%;object-fit:cover}
.product-info{display:flex;flex-direction:column;gap:var(--space-md)}
.product-vendor{font-size:.8rem;color:var(--color-gold);text-transform:uppercase;letter-spacing:.1em;font-weight:600}
.product-title{font-family:var(--font-heading);font-size:2.2rem;font-weight:600;color:var(--color-text-primary);line-height:1.2}
@media(min-width:768px){.product-title{font-size:2.6rem}}
.product-rating{display:flex;align-items:center;gap:var(--space-sm)}
.rating-stars{display:inline-flex;gap:2px;color:var(--color-gold)}
.rating-stars svg{width:16px;height:16px}
.rating-text{font-size:.85rem;color:var(--color-text-muted)}
.product-price-wrap{display:flex;align-items:baseline;gap:var(--space-md);padding:var(--space-sm) 0}
.product-price{font-family:var(--font-mono);font-size:1.8rem;font-weight:700;color:var(--color-text-primary)}
.product-compare-price{font-family:var(--font-mono);font-size:1.2rem;color:var(--color-text-muted);text-decoration:line-through}
.product-save-badge{font-size:.8rem;font-weight:600;color:var(--color-sale)}
.product-short-desc{font-size:.95rem;color:var(--color-text-secondary);line-height:1.7;padding:var(--space-sm) 0;border-top:1px solid var(--color-border);border-bottom:1px solid var(--color-border)}

.option-group{display:flex;flex-direction:column;gap:var(--space-sm)}
.option-label{font-size:.82rem;font-weight:600;color:var(--color-text-primary);text-transform:uppercase;letter-spacing:.06em}
.option-btns{display:flex;flex-wrap:wrap;gap:var(--space-sm)}
.option-btn{padding:9px 18px;border:1.5px solid var(--color-border);border-radius:var(--radius-sm);font-size:.85rem;font-weight:500;color:var(--color-text-secondary);background:var(--color-surface);transition:all var(--transition-fast);min-width:48px;text-align:center}
.option-btn:hover{border-color:var(--color-gold)}
.option-btn.active{border-color:var(--color-gold);background:var(--color-gold-light);color:var(--color-gold-hover);font-weight:600}
.option-btn.unavailable{opacity:.4;text-decoration:line-through;cursor:not-allowed}

.qty-control{display:inline-flex;align-items:center;border:1.5px solid var(--color-border);border-radius:var(--radius-sm);overflow:hidden}
.qty-btn{width:40px;height:42px;display:flex;align-items:center;justify-content:center;font-size:1.2rem;color:var(--color-text-secondary);transition:background var(--transition-fast)}
.qty-btn:hover{background:var(--color-surface-alt);color:var(--color-gold)}
.qty-input{width:52px;height:42px;text-align:center;border:none;border-left:1.5px solid var(--color-border);border-right:1.5px solid var(--color-border);font-size:1rem;font-weight:600;color:var(--color-text-primary);background:var(--color-surface)}
.qty-input:focus{outline:none}

.availability-msg{font-size:.85rem;font-weight:500;padding:6px 0}
.availability-msg.in-stock{color:var(--color-success)}
.availability-msg.out-stock{color:var(--color-error)}

.product-actions{display:flex;gap:var(--space-md);flex-wrap:wrap}
.product-actions .btn{flex:1;min-width:160px}

.sticky-atc{position:fixed;bottom:0;left:0;right:0;background:var(--color-surface);border-top:1px solid var(--color-border);box-shadow:0 -4px 20px rgba(0,0,0,.1);padding:var(--space-sm) var(--space-md);z-index:90;transform:translateY(100%);transition:transform var(--transition-base);display:flex;align-items:center;gap:var(--space-md)}
.sticky-atc.visible{transform:translateY(0)}
.sticky-atc-img{width:50px;height:50px;border-radius:var(--radius-sm);overflow:hidden;flex-shrink:0}
.sticky-atc-img img{width:100%;height:100%;object-fit:cover}
.sticky-atc-info{flex:1;min-width:0}
.sticky-atc-title{font-size:.85rem;font-weight:600;color:var(--color-text-primary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sticky-atc-price{font-family:var(--font-mono);font-size:1rem;font-weight:700;color:var(--color-gold)}

.product-accordions{margin-top:var(--space-lg)}
.accordion{border-bottom:1px solid var(--color-border)}
.accordion-header{display:flex;justify-content:space-between;align-items:center;padding:var(--space-md) 0;cursor:pointer;font-size:1rem;font-weight:600;color:var(--color-text-primary)}
.accordion-header svg{width:20px;height:20px;transition:transform var(--transition-base);color:var(--color-text-muted)}
.accordion.open .accordion-header svg{transform:rotate(180deg)}
.accordion-body{max-height:0;overflow:hidden;transition:max-height var(--transition-base)}
.accordion.open .accordion-body{max-height:1200px}
.accordion-body-inner{padding:0 0 var(--space-md);font-size:.9rem;color:var(--color-text-secondary);line-height:1.7}
.accordion-body-inner h3{font-size:1rem;font-weight:600;color:var(--color-text-primary);margin:var(--space-md) 0 var(--space-sm)}
.accordion-body-inner ul{padding-left:var(--space-lg);list-style:disc;margin:var(--space-sm) 0}
.accordion-body-inner li{margin-bottom:4px}

.reviews-section{padding:var(--space-xl) 0;border-top:1px solid var(--color-border)}
.reviews-summary{display:flex;align-items:center;gap:var(--space-lg);margin-bottom:var(--space-xl);flex-wrap:wrap}
.reviews-avg{font-family:var(--font-heading);font-size:3.5rem;font-weight:700;color:var(--color-text-primary);line-height:1}
.reviews-score{text-align:center}
.reviews-bars{flex:1;min-width:200px;display:flex;flex-direction:column;gap:4px}
.rating-bar{display:flex;align-items:center;gap:var(--space-sm);font-size:.8rem}
.rating-bar-label{width:30px;color:var(--color-text-muted)}
.rating-bar-track{flex:1;height:8px;background:var(--color-surface-alt);border-radius:var(--radius-full);overflow:hidden}
.rating-bar-fill{height:100%;background:var(--color-gold);border-radius:var(--radius-full)}
.rating-bar-count{width:30px;text-align:right;color:var(--color-text-muted)}
.review-card{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-lg);margin-bottom:var(--space-md)}
.review-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:var(--space-sm)}
.review-author{font-weight:600;font-size:.9rem;color:var(--color-text-primary)}
.review-verified{font-size:.75rem;color:var(--color-success);display:inline-flex;align-items:center;gap:4px}
.review-verified svg{width:14px;height:14px}
.review-date{font-size:.8rem;color:var(--color-text-muted)}
.review-title{font-size:.95rem;font-weight:600;color:var(--color-text-primary);margin-bottom:var(--space-xs)}
.review-body{font-size:.9rem;color:var(--color-text-secondary);line-height:1.6}

/* --- Cart Drawer --- */
.cart-overlay{position:fixed;inset:0;background:rgba(30,42,58,.5);z-index:200;opacity:0;visibility:hidden;transition:all var(--transition-base)}
.cart-overlay.show{opacity:1;visibility:visible}
.cart-drawer{position:fixed;top:0;right:0;bottom:0;width:100%;max-width:420px;background:var(--color-surface);z-index:201;transform:translateX(100%);transition:transform var(--transition-base);display:flex;flex-direction:column;box-shadow:var(--shadow-lg)}
.cart-drawer.open{transform:translateX(0)}
.cart-drawer-header{display:flex;align-items:center;justify-content:space-between;padding:var(--space-lg);border-bottom:1px solid var(--color-border)}
.cart-drawer-header h2{font-family:var(--font-heading);font-size:1.5rem;font-weight:600;display:flex;align-items:center;gap:var(--space-sm)}
.cart-close{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:var(--radius-sm);font-size:1.3rem;color:var(--color-text-muted);transition:all var(--transition-fast)}
.cart-close:hover{color:var(--color-error);background:var(--color-surface-alt)}
.cart-lines{flex:1;overflow-y:auto;padding:var(--space-md)}
.cart-item{display:flex;gap:var(--space-md);padding:var(--space-md) 0;border-bottom:1px solid var(--color-border)}
.cart-item-img{width:72px;height:72px;border-radius:var(--radius-sm);overflow:hidden;flex-shrink:0;background:var(--color-surface-alt)}
.cart-item-img img{width:100%;height:100%;object-fit:cover}
.cart-item-info{flex:1;min-width:0}
.cart-item-title{font-size:.9rem;font-weight:600;color:var(--color-text-primary);line-height:1.4;margin-bottom:2px}
.cart-item-variant{font-size:.8rem;color:var(--color-text-muted);margin-bottom:var(--space-sm)}
.cart-item-price{font-family:var(--font-mono);font-size:.9rem;font-weight:600;color:var(--color-text-primary)}
.cart-item-controls{display:flex;align-items:center;justify-content:space-between;margin-top:var(--space-sm)}
.cart-item-remove{font-size:.8rem;color:var(--color-text-muted);transition:color var(--transition-fast)}
.cart-item-remove:hover{color:var(--color-error)}
.cart-empty{text-align:center;padding:var(--space-2xl) var(--space-lg);color:var(--color-text-muted)}
.cart-empty svg{width:64px;height:64px;margin:0 auto var(--space-md);opacity:.3}
.cart-empty p{margin-bottom:var(--space-md)}
.cart-footer{padding:var(--space-lg);border-top:1px solid var(--color-border);background:var(--color-surface-alt)}
.cart-subtotal{display:flex;justify-content:space-between;align-items:center;margin-bottom:var(--space-sm)}
.cart-subtotal span{font-size:.9rem;color:var(--color-text-secondary)}
.cart-subtotal strong{font-family:var(--font-mono);font-size:1.3rem;font-weight:700;color:var(--color-text-primary)}
.cart-tax-note{font-size:.8rem;color:var(--color-text-muted);margin-bottom:var(--space-md);text-align:center}
.cart-footer .btn{width:100%;margin-bottom:var(--space-sm)}

.toast{position:fixed;bottom:var(--space-xl);left:50%;transform:translateX(-50%) translateY(100px);background:var(--color-text-primary);color:#fff;padding:14px 24px;border-radius:var(--radius-md);font-size:.9rem;font-weight:500;z-index:300;opacity:0;transition:all var(--transition-base);box-shadow:var(--shadow-lg);max-width:90vw;text-align:center}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}
.toast-success{background:var(--color-success)}
.toast-error{background:var(--color-error)}

.pagination{display:flex;justify-content:center;align-items:center;gap:var(--space-xs);padding:var(--space-xl) 0}
.pagination-btn{min-width:40px;height:40px;display:flex;align-items:center;justify-content:center;border:1.5px solid var(--color-border);border-radius:var(--radius-sm);font-size:.9rem;font-weight:500;color:var(--color-text-secondary);background:var(--color-surface);transition:all var(--transition-fast);padding:0 12px}
.pagination-btn:hover{border-color:var(--color-gold);color:var(--color-gold)}
.pagination-btn.active{background:var(--color-accent);color:#fff;border-color:var(--color-accent)}

.sort-bar{display:flex;align-items:center;justify-content:space-between;gap:var(--space-md);padding:var(--space-md) 0;flex-wrap:wrap}
.sort-bar-count{font-size:.9rem;color:var(--color-text-muted)}
.sort-bar select{padding:9px 14px;border:1.5px solid var(--color-border);border-radius:var(--radius-sm);font-size:.85rem;background:var(--color-surface);color:var(--color-text-primary);cursor:pointer}
.sort-bar select:focus{outline:none;border-color:var(--color-gold)}

.search-bar{position:relative;width:100%;max-width:500px;margin:0 auto}
.search-bar input{width:100%;padding:14px 20px 14px 48px;border:1.5px solid var(--color-border);border-radius:var(--radius-full);font-size:1rem;background:var(--color-surface);transition:all var(--transition-fast)}
.search-bar input:focus{outline:none;border-color:var(--color-gold);box-shadow:0 0 0 3px var(--color-gold-light)}
.search-bar svg{position:absolute;left:16px;top:50%;transform:translateY(-50%);width:20px;height:20px;color:var(--color-text-muted)}
.search-results{position:absolute;top:100%;left:0;right:0;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);box-shadow:var(--shadow-lg);max-height:400px;overflow-y:auto;z-index:50;display:none}
.search-results.show{display:block}
.search-item{display:flex;gap:var(--space-md);padding:var(--space-md);border-bottom:1px solid var(--color-border);transition:background var(--transition-fast)}
.search-item:hover{background:var(--color-surface-alt)}
.search-item img{width:50px;height:50px;border-radius:var(--radius-sm);object-fit:cover}
.search-item-info{flex:1}
.search-item-title{font-size:.9rem;font-weight:600;color:var(--color-text-primary);margin-bottom:2px}
.search-item-price{font-family:var(--font-mono);font-size:.85rem;color:var(--color-gold);font-weight:600}

.footer{background:var(--color-text-primary);color:rgba(255,255,255,.7);padding:var(--space-2xl) 0 var(--space-lg)}
.footer-grid{display:grid;grid-template-columns:1fr;gap:var(--space-xl);margin-bottom:var(--space-xl)}
@media(min-width:640px){.footer-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr}}
.footer-logo{font-family:var(--font-heading);font-size:1.8rem;font-weight:700;color:#fff;margin-bottom:var(--space-md)}
.footer-logo span{color:var(--color-gold)}
.footer-about{font-size:.9rem;line-height:1.7;margin-bottom:var(--space-md);max-width:320px;font-weight:300}
.footer-col h3{font-size:.85rem;font-weight:600;color:#fff;margin-bottom:var(--space-md);text-transform:uppercase;letter-spacing:.08em}
.footer-col ul li{margin-bottom:var(--space-sm)}
.footer-col a{font-size:.9rem;color:rgba(255,255,255,.6);transition:color var(--transition-fast)}
.footer-col a:hover{color:var(--color-gold)}
.footer-contact{font-size:.85rem;line-height:1.8;color:rgba(255,255,255,.6)}
.footer-contact a{color:rgba(255,255,255,.6)}
.footer-contact a:hover{color:var(--color-gold)}
.social-links{display:flex;gap:var(--space-sm);margin-top:var(--space-md)}
.social-links a{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:var(--radius-sm);background:rgba(255,255,255,.1);transition:all var(--transition-fast)}
.social-links a:hover{background:var(--color-gold)}
.social-links svg{width:18px;height:18px;color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:var(--space-lg);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:var(--space-md)}
.footer-bottom p{font-size:.8rem;color:rgba(255,255,255,.5)}
.footer-payments{display:flex;gap:var(--space-sm);align-items:center}
.footer-payments span{font-size:.7rem;color:rgba(255,255,255,.4);padding:4px 8px;border:1px solid rgba(255,255,255,.15);border-radius:var(--radius-sm)}

/* --- Cart Page --- */
.cart-page{padding:var(--space-xl) 0 var(--space-2xl)}
.cart-page-title{font-family:var(--font-heading);font-size:2.4rem;font-weight:600;margin-bottom:var(--space-xl)}
.cart-page-layout{display:grid;grid-template-columns:1fr;gap:var(--space-xl)}
@media(min-width:1024px){.cart-page-layout{grid-template-columns:1fr 360px}}
.cart-table-head{display:grid;grid-template-columns:1fr auto auto auto;gap:var(--space-md);padding:var(--space-md) 0;border-bottom:2px solid var(--color-border);font-size:.78rem;font-weight:600;text-transform:uppercase;letter-spacing:.06em;color:var(--color-text-muted)}
@media(max-width:767px){.cart-table-head{display:none}}
.cart-table-row{display:grid;grid-template-columns:1fr auto auto auto;gap:var(--space-md);padding:var(--space-md) 0;border-bottom:1px solid var(--color-border);align-items:center}
@media(max-width:767px){.cart-table-row{grid-template-columns:80px 1fr;gap:var(--space-md)}.cart-table-row>*:nth-child(n+3){grid-column:2}}
.cart-table-product{display:flex;gap:var(--space-md);align-items:center}
.cart-table-product img{width:80px;height:80px;border-radius:var(--radius-sm);object-fit:cover;flex-shrink:0}
.cart-table-product-info h4{font-size:.9rem;font-weight:600;margin-bottom:2px}
.cart-table-product-info p{font-size:.8rem;color:var(--color-text-muted)}
.cart-table-price{font-family:var(--font-mono);font-size:.9rem;font-weight:600}
.cart-table-total{font-family:var(--font-mono);font-size:.95rem;font-weight:700;color:var(--color-gold)}
.cart-summary{background:var(--color-surface-alt);border-radius:var(--radius-md);padding:var(--space-lg);border:1px solid var(--color-border);height:fit-content}
.cart-summary h3{font-family:var(--font-heading);font-size:1.5rem;font-weight:600;margin-bottom:var(--space-md)}
.cart-summary-row{display:flex;justify-content:space-between;padding:var(--space-sm) 0;font-size:.9rem;color:var(--color-text-secondary)}
.cart-summary-row.total{border-top:2px solid var(--color-border);margin-top:var(--space-sm);padding-top:var(--space-md)}
.cart-summary-row.total span,.cart-summary-row.total strong{font-size:1.1rem;font-weight:700;color:var(--color-text-primary)}
.cart-summary-row.total strong{font-family:var(--font-mono);color:var(--color-gold)}
.cart-summary .btn{margin-top:var(--space-md)}
.cart-summary-note{font-size:.8rem;color:var(--color-text-muted);text-align:center;margin-top:var(--space-sm)}

/* --- Checkout --- */
.checkout-page{padding:var(--space-xl) 0 var(--space-2xl);background:var(--color-surface-alt);min-height:calc(100vh - var(--header-height))}
.checkout-layout{display:grid;grid-template-columns:1fr;gap:var(--space-xl)}
@media(min-width:1024px){.checkout-layout{grid-template-columns:1.5fr 1fr}}
.checkout-form-section{background:var(--color-surface);border-radius:var(--radius-md);padding:var(--space-lg);border:1px solid var(--color-border);margin-bottom:var(--space-lg)}
.checkout-form-section h2{font-family:var(--font-heading);font-size:1.5rem;font-weight:600;margin-bottom:var(--space-md);display:flex;align-items:center;gap:var(--space-sm)}
.checkout-form-section h2 .step-num{width:28px;height:28px;background:var(--color-accent);color:#fff;border-radius:var(--radius-full);display:flex;align-items:center;justify-content:center;font-size:.85rem;font-weight:700;font-family:var(--font-body)}
.form-grid{display:grid;grid-template-columns:1fr;gap:var(--space-md)}
@media(min-width:640px){.form-grid{grid-template-columns:1fr 1fr}}
.form-field{display:flex;flex-direction:column;gap:var(--space-xs)}
.form-field.full{grid-column:1/-1}
.form-field label{font-size:.85rem;font-weight:600;color:var(--color-text-primary)}
.form-field label .required{color:var(--color-error)}
.form-field input,.form-field select,.form-field textarea{padding:12px 14px;border:1.5px solid var(--color-border);border-radius:var(--radius-sm);font-size:.9rem;background:var(--color-surface);color:var(--color-text-primary);transition:all var(--transition-fast)}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{outline:none;border-color:var(--color-gold);box-shadow:0 0 0 3px var(--color-gold-light)}
.form-field-error{font-size:.8rem;color:var(--color-error);display:none}
.form-field.error input{border-color:var(--color-error)}
.form-field.error .form-field-error{display:block}

.card-form{margin-top:var(--space-md)}
.card-form .form-grid{margin-top:var(--space-md)}
.card-preview{background:linear-gradient(135deg,var(--color-accent),#2a4a72);border-radius:var(--radius-md);padding:var(--space-lg);color:#fff;margin-bottom:var(--space-lg);min-height:180px;position:relative;overflow:hidden}
.card-preview::before{content:'';position:absolute;top:-50%;right:-20%;width:200px;height:200px;background:rgba(184,148,90,.2);border-radius:50%}
.card-preview-number{font-family:var(--font-mono);font-size:1.3rem;letter-spacing:.1em;margin:var(--space-md) 0;font-weight:600}
.card-preview-bottom{display:flex;justify-content:space-between;align-items:flex-end}
.card-preview-label{font-size:.7rem;text-transform:uppercase;letter-spacing:.05em;color:rgba(255,255,255,.5);margin-bottom:4px}
.card-preview-name{font-size:.9rem;font-weight:500}
.card-preview-expiry{font-family:var(--font-mono);font-size:.9rem}
.card-preview-brand{position:absolute;top:var(--space-lg);right:var(--space-lg);font-size:.8rem;font-weight:600;color:var(--color-gold)}
.card-input-group{position:relative}
.card-input-icon{position:absolute;right:12px;top:50%;transform:translateY(-50%);color:var(--color-text-muted);pointer-events:none}
.card-input-icon svg{width:20px;height:20px}

.order-confirmation{padding:var(--space-2xl) 0;text-align:center}
.order-confirmation-icon{width:80px;height:80px;margin:0 auto var(--space-lg);background:var(--color-success);border-radius:50%;display:flex;align-items:center;justify-content:center}
.order-confirmation-icon svg{width:40px;height:40px;color:#fff}
.order-confirmation h1{font-family:var(--font-heading);font-size:2.8rem;font-weight:600;margin-bottom:var(--space-md)}
.order-confirmation>.container>p{font-size:1.1rem;color:var(--color-text-secondary);max-width:500px;margin:0 auto var(--space-xl)}
.order-number{background:var(--color-surface-alt);border-radius:var(--radius-md);padding:var(--space-md);display:inline-block;margin-bottom:var(--space-xl);font-family:var(--font-mono);font-size:1.1rem;font-weight:600;color:var(--color-gold)}
.order-details{max-width:700px;margin:0 auto;text-align:left}
.order-details-section{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-lg);margin-bottom:var(--space-md)}
.order-details-section h3{font-family:var(--font-heading);font-size:1.3rem;font-weight:600;margin-bottom:var(--space-md)}
.order-item{display:flex;gap:var(--space-md);padding:var(--space-sm) 0;border-bottom:1px solid var(--color-border)}
.order-item:last-child{border-bottom:none}
.order-item img{width:60px;height:60px;border-radius:var(--radius-sm);object-fit:cover}
.order-item-info{flex:1}
.order-item-info h4{font-size:.9rem;font-weight:600}
.order-item-info p{font-size:.8rem;color:var(--color-text-muted);margin:0}
.order-item-price{font-family:var(--font-mono);font-weight:600;font-size:.9rem}
.order-totals{margin-top:var(--space-md)}
.order-totals-row{display:flex;justify-content:space-between;padding:6px 0;font-size:.9rem}
.order-totals-row.total{border-top:2px solid var(--color-border);margin-top:var(--space-sm);padding-top:var(--space-md);font-weight:700;font-size:1.1rem}
.order-totals-row.total strong{font-family:var(--font-mono);color:var(--color-gold)}

.policy-page{padding:var(--space-xl) 0 var(--space-2xl)}
.policy-layout{display:grid;grid-template-columns:1fr;gap:var(--space-xl)}
@media(min-width:1024px){.policy-layout{grid-template-columns:240px 1fr}}
.policy-sidebar{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-lg);height:fit-content}
.policy-sidebar h3{font-size:.85rem;font-weight:600;text-transform:uppercase;letter-spacing:.06em;margin-bottom:var(--space-md);color:var(--color-text-muted)}
.policy-sidebar a{display:block;padding:8px 0;font-size:.9rem;color:var(--color-text-secondary);border-bottom:1px solid var(--color-border);transition:color var(--transition-fast)}
.policy-sidebar a:hover,.policy-sidebar a.active{color:var(--color-gold);font-weight:600}
.policy-content{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-xl)}
.policy-content h1{font-family:var(--font-heading);font-size:2.4rem;font-weight:600;margin-bottom:var(--space-lg)}
.policy-content h2{font-family:var(--font-heading);font-size:1.4rem;font-weight:600;margin:var(--space-lg) 0 var(--space-sm);color:var(--color-text-primary)}
.policy-content p{font-size:.95rem;color:var(--color-text-secondary);line-height:1.8;margin-bottom:var(--space-md)}
.policy-content ul{padding-left:var(--space-lg);list-style:disc;margin-bottom:var(--space-md)}
.policy-content li{font-size:.95rem;color:var(--color-text-secondary);line-height:1.8;margin-bottom:var(--space-sm)}

.contact-page{padding:var(--space-xl) 0 var(--space-2xl)}
.contact-layout{display:grid;grid-template-columns:1fr;gap:var(--space-xl)}
@media(min-width:768px){.contact-layout{grid-template-columns:1fr 1fr}}
.contact-info-card{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-xl)}
.contact-info-card h2{font-family:var(--font-heading);font-size:1.7rem;font-weight:600;margin-bottom:var(--space-md)}
.contact-detail{display:flex;gap:var(--space-md);padding:var(--space-md) 0;border-bottom:1px solid var(--color-border)}
.contact-detail:last-child{border-bottom:none}
.contact-detail svg{width:24px;height:24px;color:var(--color-gold);flex-shrink:0}
.contact-detail-label{font-size:.8rem;color:var(--color-text-muted);text-transform:uppercase;letter-spacing:.05em}
.contact-detail-value{font-size:.95rem;font-weight:500;color:var(--color-text-primary)}
.contact-form-card{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-xl)}
.contact-form-card h2{font-family:var(--font-heading);font-size:1.7rem;font-weight:600;margin-bottom:var(--space-md)}
.contact-form .form-field{margin-bottom:var(--space-md)}
.contact-form textarea{min-height:120px;resize:vertical}

.error-page{padding:var(--space-2xl) 0;text-align:center;min-height:50vh;display:flex;align-items:center;justify-content:center}
.error-page h1{font-family:var(--font-heading);font-size:6rem;font-weight:700;color:var(--color-gold);line-height:1}
.error-page h2{font-family:var(--font-heading);font-size:1.7rem;font-weight:600;margin-bottom:var(--space-md)}
.error-page p{color:var(--color-text-secondary);margin-bottom:var(--space-lg)}
.error-page .search-bar{margin-bottom:var(--space-xl)}
.error-page-links{display:flex;gap:var(--space-md);justify-content:center;flex-wrap:wrap}

@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes slideUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes shimmer{0%{background-position:-200% 0}100%{background-position:200% 0}}
@keyframes spin{to{transform:rotate(360deg)}}
.fade-in{animation:fadeIn .5s ease}
.slide-up{animation:slideUp .5s ease}
.skeleton{background:linear-gradient(90deg,var(--color-surface-alt) 25%,var(--color-border) 50%,var(--color-surface-alt) 75%);background-size:200% 100%;animation:shimmer 1.5s infinite}
.spinner{width:20px;height:20px;border:2px solid var(--color-border);border-top-color:var(--color-gold);border-radius:50%;animation:spin .6s linear infinite}

.text-center{text-align:center}
.hidden{display:none}
.w-full{width:100%}

.brand-story{display:grid;grid-template-columns:1fr;gap:var(--space-xl);align-items:center}
@media(min-width:768px){.brand-story{grid-template-columns:1fr 1fr}}
.brand-story-img{border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:4/3}
.brand-story-img img{width:100%;height:100%;object-fit:cover}
.brand-story-content h2{font-family:var(--font-heading);font-size:2.4rem;font-weight:600;margin-bottom:var(--space-md);line-height:1.2}
.brand-story-content p{font-size:1rem;color:var(--color-text-secondary);line-height:1.8;margin-bottom:var(--space-md);font-weight:300}
.brand-story-features{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--space-md);margin-top:var(--space-lg)}
.brand-story-feature{display:flex;gap:var(--space-sm);align-items:flex-start}
.brand-story-feature svg{width:24px;height:24px;color:var(--color-gold);flex-shrink:0;margin-top:2px}
.brand-story-feature h4{font-size:.9rem;font-weight:600;margin-bottom:2px}
.brand-story-feature p{font-size:.8rem;color:var(--color-text-muted);margin:0}

.faq-section{max-width:760px;margin:0 auto}
.faq-item{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);margin-bottom:var(--space-sm);overflow:hidden}
.faq-question{display:flex;justify-content:space-between;align-items:center;padding:var(--space-md) var(--space-lg);cursor:pointer;font-weight:600;font-size:.95rem;color:var(--color-text-primary)}
.faq-question svg{width:20px;height:20px;transition:transform var(--transition-base);color:var(--color-gold);flex-shrink:0}
.faq-item.open .faq-question svg{transform:rotate(180deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height var(--transition-base)}
.faq-item.open .faq-answer{max-height:300px}
.faq-answer-inner{padding:0 var(--space-lg) var(--space-md);font-size:.9rem;color:var(--color-text-secondary);line-height:1.7}

.testimonials-grid{display:grid;grid-template-columns:1fr;gap:var(--space-lg)}
@media(min-width:640px){.testimonials-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.testimonials-grid{grid-template-columns:repeat(3,1fr)}}
.testimonial-card{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-lg)}
.testimonial-stars{color:var(--color-gold);margin-bottom:var(--space-sm)}
.testimonial-text{font-size:.95rem;color:var(--color-text-secondary);line-height:1.7;margin-bottom:var(--space-md);font-style:italic}
.testimonial-author{font-size:.85rem;font-weight:600;color:var(--color-text-primary)}
.testimonial-location{font-size:.8rem;color:var(--color-text-muted)}

.newsletter{background:var(--color-accent);color:#fff;border-radius:var(--radius-lg);padding:var(--space-xl);text-align:center}
.newsletter h2{font-family:var(--font-heading);font-size:2rem;font-weight:600;margin-bottom:var(--space-sm)}
.newsletter p{color:rgba(255,255,255,.7);margin-bottom:var(--space-lg);font-weight:300}
.newsletter-form{display:flex;gap:var(--space-sm);max-width:440px;margin:0 auto;flex-wrap:wrap}
.newsletter-form input{flex:1;min-width:200px;padding:13px 18px;border:none;border-radius:var(--radius-sm);font-size:.9rem}
.newsletter-form button{padding:13px 24px;background:var(--color-gold);color:#fff;border-radius:var(--radius-sm);font-weight:600;transition:background var(--transition-fast);text-transform:uppercase;letter-spacing:.03em;font-size:.85rem}
.newsletter-form button:hover{background:var(--color-gold-hover)}

.collection-hero{position:relative;min-height:280px;display:flex;align-items:center;overflow:hidden;border-radius:var(--radius-md);margin-bottom:var(--space-xl)}
.collection-hero img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.collection-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(30,42,58,.85),rgba(30,42,58,.4))}
.collection-hero-content{position:relative;z-index:2;padding:var(--space-xl);max-width:600px}
.collection-hero-content h1{font-family:var(--font-heading);font-size:2.6rem;font-weight:600;color:#fff;margin-bottom:var(--space-sm)}
.collection-hero-content p{color:rgba(255,255,255,.85);font-size:1rem;font-weight:300}

/* ---- Blog Styles ---- */
.blog-hero{position:relative;min-height:380px;display:flex;align-items:flex-end;overflow:hidden;border-radius:var(--radius-md);margin-bottom:var(--space-xl)}
.blog-hero img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.blog-hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(30,42,58,.88) 0%,rgba(30,42,58,.3) 60%,rgba(30,42,58,.1) 100%)}
.blog-hero-content{position:relative;z-index:2;padding:var(--space-xl);max-width:700px}
.blog-hero-content h1{font-family:var(--font-heading);font-size:2rem;font-weight:600;color:#fff;line-height:1.25;margin-bottom:var(--space-sm)}
@media(min-width:768px){.blog-hero-content h1{font-size:2.8rem}}
.blog-meta{display:flex;flex-wrap:wrap;gap:var(--space-md);align-items:center;font-size:.85rem;color:rgba(255,255,255,.8);margin-top:var(--space-sm)}
.blog-meta span{display:inline-flex;align-items:center;gap:4px}
.blog-category-badge{display:inline-block;padding:4px 14px;background:var(--color-gold);color:#fff;border-radius:var(--radius-full);font-size:.75rem;font-weight:600;letter-spacing:.03em;text-transform:uppercase;margin-bottom:var(--space-sm)}
.blog-layout{display:grid;grid-template-columns:1fr;gap:var(--space-xl)}
@media(min-width:1024px){.blog-layout{grid-template-columns:1fr 280px}}
.blog-article{max-width:760px}
.blog-article-body{font-size:1.05rem;line-height:1.85;color:var(--color-text-secondary)}
.blog-article-body h2{font-family:var(--font-heading);font-size:1.6rem;font-weight:600;color:var(--color-text-primary);margin:var(--space-xl) 0 var(--space-md);line-height:1.3}
.blog-article-body h3{font-family:var(--font-heading);font-size:1.25rem;font-weight:600;color:var(--color-text-primary);margin:var(--space-lg) 0 var(--space-sm)}
.blog-article-body p{margin-bottom:var(--space-md)}
.blog-article-body ul,.blog-article-body ol{padding-left:var(--space-lg);margin-bottom:var(--space-md)}
.blog-article-body li{margin-bottom:var(--space-sm);line-height:1.7}
.blog-article-body a{color:var(--color-gold);font-weight:500;text-decoration:underline;text-decoration-color:var(--color-gold-light);text-underline-offset:2px;transition:text-decoration-color var(--transition-fast)}
.blog-article-body a:hover{text-decoration-color:var(--color-gold)}
.blog-article-body strong{color:var(--color-text-primary);font-weight:600}
.blog-article-body blockquote{border-left:4px solid var(--color-gold);padding:var(--space-md) var(--space-lg);margin:var(--space-lg) 0;background:var(--color-surface-alt);border-radius:0 var(--radius-sm) var(--radius-sm) 0;font-style:italic;color:var(--color-text-secondary)}
.blog-toc{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-lg);margin-bottom:var(--space-xl)}
.blog-toc h3{font-size:.85rem;font-weight:600;text-transform:uppercase;letter-spacing:.06em;color:var(--color-text-muted);margin-bottom:var(--space-sm)}
.blog-toc ol{padding-left:var(--space-md);list-style:decimal}
.blog-toc li{margin-bottom:var(--space-xs);font-size:.9rem}
.blog-toc a{color:var(--color-text-secondary);transition:color var(--transition-fast)}
.blog-toc a:hover{color:var(--color-gold)}
.blog-sidebar{position:sticky;top:90px;height:fit-content}
.blog-sidebar-section{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-lg);margin-bottom:var(--space-lg)}
.blog-sidebar-section h3{font-family:var(--font-heading);font-size:1.1rem;font-weight:600;margin-bottom:var(--space-md)}
.blog-sidebar-post{display:flex;gap:var(--space-sm);padding:var(--space-sm) 0;border-bottom:1px solid var(--color-border)}
.blog-sidebar-post:last-child{border-bottom:none}
.blog-sidebar-post img{width:60px;height:60px;border-radius:var(--radius-sm);object-fit:cover;flex-shrink:0}
.blog-sidebar-post-info h4{font-size:.85rem;font-weight:600;line-height:1.4;margin-bottom:2px}
.blog-sidebar-post-info h4 a{color:var(--color-text-primary)}
.blog-sidebar-post-info h4 a:hover{color:var(--color-gold)}
.blog-sidebar-post-info span{font-size:.75rem;color:var(--color-text-muted)}
.blog-cta{background:linear-gradient(135deg,var(--color-gold-light),var(--color-surface-alt));border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-xl);margin:var(--space-xl) 0;text-align:center}
.blog-cta h3{font-family:var(--font-heading);font-size:1.5rem;font-weight:600;color:var(--color-text-primary);margin-bottom:var(--space-sm)}
.blog-cta p{color:var(--color-text-secondary);margin-bottom:var(--space-md)}
.blog-faq{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-lg);margin:var(--space-xl) 0}
.blog-faq h2{font-family:var(--font-heading);font-size:1.5rem;font-weight:600;margin-bottom:var(--space-md)}
.blog-faq-item{border-bottom:1px solid var(--color-border);padding:var(--space-md) 0}
.blog-faq-item:last-child{border-bottom:none}
.blog-faq-item h3{font-size:1rem;font-weight:600;color:var(--color-text-primary);margin-bottom:var(--space-sm);cursor:pointer;display:flex;justify-content:space-between;align-items:center}
.blog-faq-item h3 svg{width:20px;height:20px;color:var(--color-gold);transition:transform var(--transition-base);flex-shrink:0}
.blog-faq-item.open h3 svg{transform:rotate(180deg)}
.blog-faq-item-answer{max-height:0;overflow:hidden;transition:max-height var(--transition-base);font-size:.95rem;color:var(--color-text-secondary);line-height:1.7}
.blog-faq-item.open .blog-faq-item-answer{max-height:300px}
.blog-faq-item-answer p{padding-top:var(--space-sm)}
.blog-share{display:flex;align-items:center;gap:var(--space-sm);padding:var(--space-lg) 0;border-top:1px solid var(--color-border);border-bottom:1px solid var(--color-border);margin:var(--space-xl) 0}
.blog-share span{font-size:.85rem;font-weight:600;color:var(--color-text-muted);margin-right:var(--space-sm)}
.blog-share-btn{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:var(--radius-sm);background:var(--color-surface-alt);border:1px solid var(--color-border);transition:all var(--transition-fast);cursor:pointer}
.blog-share-btn:hover{background:var(--color-gold);border-color:var(--color-gold)}
.blog-share-btn svg{width:18px;height:18px;color:var(--color-text-secondary)}
.blog-share-btn:hover svg{color:#fff}
.blog-related{margin-top:var(--space-2xl)}
.blog-related h2{font-family:var(--font-heading);font-size:1.5rem;font-weight:600;margin-bottom:var(--space-lg)}
.blog-author-box{display:flex;gap:var(--space-md);align-items:center;padding:var(--space-lg);background:var(--color-surface-alt);border-radius:var(--radius-md);margin:var(--space-xl) 0}
.blog-author-avatar{width:56px;height:56px;border-radius:50%;background:var(--color-gold);display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.3rem;font-weight:700;flex-shrink:0}
.blog-author-info h4{font-size:.95rem;font-weight:600;color:var(--color-text-primary);margin-bottom:2px}
.blog-author-info p{font-size:.85rem;color:var(--color-text-muted);margin:0}
.blog-listing-hero{position:relative;min-height:320px;display:flex;align-items:center;overflow:hidden;border-radius:var(--radius-md);margin-bottom:var(--space-xl)}
.blog-listing-hero img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.blog-listing-hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(30,42,58,.85),rgba(30,42,58,.4))}
.blog-listing-hero-content{position:relative;z-index:2;padding:var(--space-xl);max-width:600px}
.blog-listing-hero-content h1{font-family:var(--font-heading);font-size:2.5rem;font-weight:600;color:#fff;margin-bottom:var(--space-sm)}
.blog-listing-hero-content p{color:rgba(255,255,255,.85);font-size:1.1rem}
.blog-featured-card{display:grid;grid-template-columns:1fr;gap:0;border-radius:var(--radius-md);overflow:hidden;border:1px solid var(--color-border);margin-bottom:var(--space-xl);background:var(--color-surface);transition:all var(--transition-base)}
.blog-featured-card:hover{box-shadow:var(--shadow-lg)}
@media(min-width:768px){.blog-featured-card{grid-template-columns:1.2fr 1fr}}
.blog-featured-card-img{aspect-ratio:16/9;overflow:hidden}
.blog-featured-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.blog-featured-card:hover .blog-featured-card-img img{transform:scale(1.04)}
.blog-featured-card-body{padding:var(--space-xl)}
.blog-featured-card-body h2{font-family:var(--font-heading);font-size:1.6rem;font-weight:600;line-height:1.3;margin-bottom:var(--space-sm)}
.blog-featured-card-body h2 a{color:var(--color-text-primary)}
.blog-featured-card-body h2 a:hover{color:var(--color-gold)}
.blog-featured-card-body p{color:var(--color-text-secondary);line-height:1.7;margin-bottom:var(--space-md)}
.blog-card-meta{display:flex;flex-wrap:wrap;gap:var(--space-sm);font-size:.8rem;color:var(--color-text-muted);align-items:center}
.blog-card-meta span{display:inline-flex;align-items:center;gap:4px}
.blog-grid{display:grid;grid-template-columns:1fr;gap:var(--space-lg)}
@media(min-width:640px){.blog-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.blog-grid{grid-template-columns:repeat(3,1fr)}}
.blog-card{background:var(--color-surface);border-radius:var(--radius-md);overflow:hidden;border:1px solid var(--color-border);transition:all var(--transition-base);display:flex;flex-direction:column}
.blog-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.blog-card-img{aspect-ratio:16/9;overflow:hidden}
.blog-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.blog-card:hover .blog-card-img img{transform:scale(1.05)}
.blog-card-body{padding:var(--space-lg);display:flex;flex-direction:column;flex:1}
.blog-card-category{font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--color-gold);margin-bottom:var(--space-xs)}
.blog-card-title{font-family:var(--font-heading);font-size:1.15rem;font-weight:600;line-height:1.35;margin-bottom:var(--space-sm)}
.blog-card-title a{color:var(--color-text-primary)}
.blog-card-title a:hover{color:var(--color-gold)}
.blog-card-excerpt{font-size:.9rem;color:var(--color-text-secondary);line-height:1.6;flex:1;margin-bottom:var(--space-md);display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.blog-card-readmore{display:inline-block;margin-top:var(--space-sm);font-size:.85rem;font-weight:600;color:var(--color-gold)}
