﻿/*
Theme Name: Luxury Worldwide
Theme URI: https://luxuryworldwide.com
Author: Luxury Worldwide Team
Author URI: https://luxuryworldwide.com
Description: A refined light-luxury e-commerce theme — ivory & gold palette, EB Garamond typography, inspired by the world's finest maisons. Designed for 1440px+ desktop screens.
Version: 1.0.1
License: GPL-2.0-or-later
Text Domain: luxury-worldwide
*/


/* ═══════════════════════════════════
   TOKENS
═══════════════════════════════════ */
:root {
  --ivory:    #FFFFFF;
  --cream:    #F5F5F5;
  --parchment:#E8E8E8;
  --linen:    #CCCCCC;
  --gold:     #000000;
  --gold-lt:  #333333;
  --gold-dk:  #000000;
  --ink:      #000000;
  --charcoal: #333333;
  --stone:    #666666;
  --mist:     #999999;
  --red:      #CC0000;
  --font-disp: 'EB Garamond', Georgia, serif;
  --font-body: 'Tenor Sans', 'Didact Gothic', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════
   RESET
═══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════
   ELEMENTOR COMPATIBILITY
═══════════════════════════════════ */
/* Gucci-style: nav overlays banner — NO top padding, banner starts at y=0 */
.elementor-content-wrapper {
  padding-top: 0;
  width: 100%;
  max-width: none;
  overflow: visible;
}
/* New Elementor Container (e-con): kill white borders, go full-width */
/* First container → fullscreen banner (Gucci effect) */
.elementor-content-wrapper .e-con:first-child { min-height: 100vh; padding: 0 !important; }
.elementor-content-wrapper .e-con { margin: 0 !important; max-width: none !important; }
.elementor-content-wrapper .e-con-inner {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Legacy Elementor Section format */
.elementor-content-wrapper .elementor-section {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.elementor-content-wrapper .elementor-container {
  max-width: none !important;
}
.elementor-section-full_width,
.elementor-section-boxed > .elementor-container {
  max-width: none;
}
/* Images — fill containers, no gaps */
.elementor-section .elementor-column-gap-no {
  margin: 0;
}
.elementor-widget-image img,
.e-image-base {
  display: block;
  width: 100%; height: 100%; object-fit: cover;
}
/* Prevent body overflow-x from clipping Elementor full-width sections */
body.elementor-page,
body.home {
  overflow-x: visible;
}

/* ═══════════════════════════════════
   TOP BAR
═══════════════════════════════════ */
.top-bar {
  background: var(--ink);
  color: var(--parchment);
  text-align: center;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 11px 0;
  font-family: var(--font-body);
}
.top-bar span { color: var(--gold-lt); }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  height: 76px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: none;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 64px;
  animation: navSlide .9s var(--ease) both;
}
/* Home page — transparent nav overlaying hero banner */
.home nav {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}
@keyframes navSlide { from{opacity:0;transform:translateY(-100%);} to{opacity:1;transform:translateY(0);} }

/* Nav — transparent at top, white on scroll */
body.scrolled nav {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: none;
}

.nav-links { display: flex; gap: 44px; }
.nav-link {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--stone); position: relative; padding-bottom: 3px;
  transition: color .3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-logo {
  font-family: var(--font-disp);
  font-size: 20px; letter-spacing: 10px; font-weight: 400;
  color: var(--ink); text-align: center;
  text-transform: uppercase;
}

.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 6px; }

/* text button (Contact Us) */
.nav-action {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--stone); background: none; border: none;
  cursor: pointer; font-family: var(--font-body);
  transition: color .3s; padding: 6px 10px;
}
.nav-action:hover { color: var(--ink); }

/* icon buttons */
.nav-icon-btn {
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--stone); transition: color .3s; position: relative;
  border-radius: 2px;
}
.nav-icon-btn:hover { color: var(--ink); }
.nav-icon-btn svg { display: block; }

/* hamburger menu */
.nav-menu-btn {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-menu-btn span {
  display: block; height: 1px; background: var(--stone);
  transition: all .3s var(--ease);
}
.nav-menu-btn span:nth-child(1) { width: 22px; }
.nav-menu-btn span:nth-child(2) { width: 16px; }
.nav-menu-btn span:nth-child(3) { width: 22px; }
.nav-menu-btn:hover span { background: var(--ink); }
.nav-menu-btn:hover span:nth-child(2) { width: 22px; }

/* search button text style */
.nav-search-btn {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--stone); background: none; border: none;
  cursor: pointer; font-family: var(--font-body);
  display: flex; align-items: center; gap: 7px;
  padding: 6px 10px; transition: color .3s;
}
.nav-search-btn:hover { color: var(--ink); }
.nav-search-btn svg { flex-shrink: 0; }

/* divider */
.nav-divider {
  width: 1px; height: 18px; background: var(--linen); margin: 0 6px;
}

/* bag count badge */
.bag-count {
  position: absolute; top: 2px; right: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); color: var(--ivory);
  font-size: 9px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* ═══════════════════════════════════
   HERO — Full-Screen Banner (Gucci-style)
═══════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center;
  overflow: hidden;
  /* Default background — replace via WP Customizer → Header Image */
  background: #1a1a1a center/cover no-repeat;
}
/* Dark overlay for text readability on banner image */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.22);
  z-index: 1; pointer-events: none;
}

.hero-l {
  display: flex; flex-direction: column; align-items: center;
  max-width: 800px;
  position: relative; z-index: 2;
  padding-top: 76px; /* clear fixed nav */
  animation: heroL 1.1s .2s var(--ease-out) both;
}
@keyframes heroL { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }

.hero-season {
  display: flex; align-items: center; gap: 18px;
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 40px;
}
.hero-season-rule { width: 48px; height: 1px; background: rgba(255,255,255,0.5); }

.hero-h1 {
  font-family: var(--font-disp);
  font-size: clamp(72px, 6.5vw, 104px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 36px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero-h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
  display: block;
}
.hero-h1 .outline-text {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.5);
  color: transparent;
}

.hero-p {
  font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.75);
  max-width: 600px; margin-bottom: 52px;
  font-family: var(--font-body);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-btns { display: flex; align-items: center; gap: 28px; }

.btn-primary {
  background: #fff; color: #000;
  padding: 15px 48px; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; border: none; cursor: pointer;
  font-family: var(--font-body);
  position: relative; overflow: hidden;
  transition: color .4s;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.08); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-primary span { position: relative; z-index: 1; }

.btn-text {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  transition: color .3s;
}
.btn-text:hover { color: #fff; }
.btn-text-line {
  width: 32px; height: 1px; background: currentColor;
  transition: width .35s var(--ease);
}
.btn-text:hover .btn-text-line { width: 48px; }

.hero-kpi {
  display: flex; gap: 56px; margin-top: 20px;
}
.kpi-num {
  font-family: var(--font-disp);
  font-size: 38px; font-weight: 400; color: #fff; line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.kpi-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* ═══════════════════════════════════
   SECTION UTILITY
═══════════════════════════════════ */
.sec { padding: 120px 100px; }
.sec-alt { background: var(--cream); }

.sec-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.eyebrow {
  font-size: 10px; letter-spacing: 4.5px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.sec-title {
  font-family: var(--font-disp);
  font-size: clamp(40px, 3.6vw, 56px);
  font-weight: 400; line-height: 1.08; color: var(--ink);
}
.sec-title em { font-style: italic; color: var(--gold-dk); }
.sec-more {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--stone); display: flex; align-items: center; gap: 14px;
  transition: color .3s;
}
.sec-more::after { content: ''; width: 28px; height: 1px; background: currentColor; transition: width .35s var(--ease); }
.sec-more:hover { color: var(--gold-dk); }
.sec-more:hover::after { width: 48px; }

/* ═══════════════════════════════════
   CATEGORIES — ASYMMETRIC GRID
═══════════════════════════════════ */
.cats-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.cat {
  position: relative; overflow: hidden; cursor: pointer;
  border: 1px solid var(--linen);
}
.cat-big { grid-row: 1 / 3; }

.cat-fill {
  position: absolute; inset: 0;
  transition: transform .7s var(--ease);
}
.cat:hover .cat-fill { transform: scale(1.04); }

.cf1 { background: linear-gradient(145deg, #EDE6D8 0%, #DDD0BC 100%); }
.cf2 { background: linear-gradient(145deg, #E8E2D8 0%, #D8CFBF 100%); }
.cf3 { background: linear-gradient(145deg, #E4DDD2 0%, #D4C8B8 100%); }
.cf4 { background: linear-gradient(145deg, #EAE3D6 0%, #DAD0C0 100%); }
.cf5 { background: linear-gradient(145deg, #E6DFD4 0%, #D6CCB8 100%); }

/* ═══════════════════════════════════
   PRODUCTS GRID
═══════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--linen);
  border: 1px solid var(--linen);
}
.prod {
  background: var(--ivory);
  cursor: pointer;
  transition: background .3s;
}
.prod:hover { background: var(--cream); }

.prod-img {
  aspect-ratio: 3/4;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.prod-img-fill {
  position: absolute; inset: 0;
  transition: transform .7s var(--ease);
}
.prod:hover .prod-img-fill { transform: scale(1.04); }

.pf1 { background: linear-gradient(155deg, #EDE6D8, #DDD0BC); }
.pf2 { background: linear-gradient(155deg, #E8E3DC, #D8D0C4); }
.pf3 { background: linear-gradient(155deg, #EBE5DA, #DDD4C4); }
.pf4 { background: linear-gradient(155deg, #E6E0D6, #D6CCBC); }

.prod-emoji { font-size: 80px; position: relative; z-index: 1; transition: transform .4s var(--ease); }
.prod:hover .prod-emoji { transform: scale(1.06) translateY(-4px); }

.prod-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  padding: 4px 10px; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
}
.b-new { background: var(--ink); color: var(--ivory); }
.b-sale { background: var(--red); color: #fff; }

.prod-add {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: var(--ink); color: var(--ivory);
  padding: 13px; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  text-align: center; cursor: pointer; font-family: var(--font-body);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.prod:hover .prod-add { transform: translateY(0); }
.prod-wish {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 32px; height: 32px;
  background: rgba(250,248,244,.88); border: 1px solid var(--linen);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; opacity: 0; cursor: pointer;
  transition: opacity .3s;
}
.prod:hover .prod-wish { opacity: 1; }

.prod-info { padding: 22px 24px 26px; border-top: 1px solid var(--linen); }
.prod-brand { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.prod-name { font-family: var(--font-disp); font-size: 18px; line-height: 1.35; color: var(--ink); margin-bottom: 14px; }
.prod-row { display: flex; justify-content: space-between; align-items: center; }
.prod-price { font-family: var(--font-disp); font-size: 19px; color: var(--ink); }
.prod-old { font-size: 12px; color: var(--mist); text-decoration: line-through; margin-left: 8px; }
.prod-off { font-size: 10px; color: var(--red); letter-spacing: 1px; }
.prod-stars { font-size: 11px; color: var(--gold); letter-spacing: 2px; }
.prod-rate { font-size: 11px; color: var(--mist); margin-left: 4px; }

/* ═══════════════════════════════════
   QUALITY STRIP
═══════════════════════════════════ */
.quality-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--linen);
  border-bottom: none;
}
.qual-item {
  padding: 40px 48px;
  display: flex; align-items: center; gap: 20px;
  border-right: 1px solid var(--linen);
}
.qual-item:last-child { border-right: none; }
.qual-icon { font-size: 26px; }
.qual-title { font-size: 13px; letter-spacing: 1px; color: var(--ink); margin-bottom: 4px; }
.qual-desc { font-size: 11px; color: var(--mist); }

/* ═══════════════════════════════════
   PROMO BANNER
═══════════════════════════════════ */
.promo {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ink);
  position: relative; overflow: hidden;
  min-height: 520px;
}
.promo-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-disp); font-size: 260px; font-weight: 400;
  color: rgba(250,248,244,.025); white-space: nowrap; pointer-events: none;
  letter-spacing: -12px;
}
/* diagonal accent */
.promo::before {
  content: '';
  position: absolute; top: -80px; right: 47%;
  width: 1px; height: calc(100% + 160px);
  background: linear-gradient(to bottom, transparent, rgba(184,153,90,.3), transparent);
  transform: rotate(6deg);
}

.promo-l {
  padding: 80px 80px 80px 100px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.promo-tag { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.promo-title {
  font-family: var(--font-disp);
  font-size: 68px; font-weight: 400; line-height: 1.0;
  color: var(--ivory); margin-bottom: 20px;
}
.promo-title em { font-style: italic; color: var(--gold-lt); }
.promo-desc { font-size: 14px; line-height: 1.9; color: rgba(250,248,244,.5); max-width: 360px; margin-bottom: 48px; }

.countdown { display: flex; align-items: flex-start; gap: 6px; margin-bottom: 48px; }
.cd { text-align: center; min-width: 68px; }
.cd-n {
  font-family: var(--font-disp);
  font-size: 54px; line-height: 1;
  color: var(--ivory); display: block;
}
.cd-l { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(250,248,244,.35); margin-top: 8px; }
.cd-sep { font-family: var(--font-disp); font-size: 44px; color: var(--gold); margin-bottom: 24px; line-height: 1.1; }

.btn-gold {
  background: var(--gold); color: var(--ink);
  padding: 15px 48px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--font-body); font-weight: 400;
  position: relative; overflow: hidden;
  transition: color .35s;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--ivory); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.btn-gold:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-gold span { position: relative; z-index: 1; }

.promo-r {
  position: relative; z-index: 1;
  padding: 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  align-content: center;
}
.mini-card {
  background: rgba(250,248,244,.04);
  border: 1px solid rgba(250,248,244,.08);
  padding: 28px 24px; cursor: pointer;
  position: relative;
  transition: background .3s, border-color .3s;
}
.mini-card:hover { background: rgba(250,248,244,.07); border-color: rgba(184,153,90,.3); }
.mini-sale {
  position: absolute; top: 14px; right: 14px;
  background: var(--red); color: #fff;
  font-size: 9px; letter-spacing: 1px; padding: 3px 7px;
}
.mini-icon { font-size: 44px; margin-bottom: 14px; }
.mini-name { font-family: var(--font-disp); font-size: 16px; color: var(--ivory); margin-bottom: 8px; }
.mini-price { font-size: 13px; color: var(--gold-lt); }
.mini-was { font-size: 11px; color: rgba(250,248,244,.3); text-decoration: line-through; margin-left: 6px; }

/* ═══════════════════════════════════
   LOOKBOOK / EDITORIAL
═══════════════════════════════════ */
.lookbook {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--linen);
}
.look-l {
  padding: 100px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--linen);
}
.look-tag { font-size: 10px; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
.look-title {
  font-family: var(--font-disp);
  font-size: 56px; line-height: 1.06; font-weight: 400;
  color: var(--ink); margin-bottom: 28px;
}
.look-title em { font-style: italic; color: var(--gold-dk); }
.look-desc { font-size: 14px; line-height: 1.9; color: var(--stone); max-width: 380px; margin-bottom: 44px; }
.look-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.look-tag-btn {
  padding: 10px 20px; border: 1px solid var(--linen);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--stone); cursor: pointer; background: none; font-family: var(--font-body);
  transition: border-color .3s, color .3s, background .3s;
}
.look-tag-btn:hover { border-color: var(--gold); color: var(--gold-dk); background: rgba(184,153,90,.04); }

.look-r {
  display: grid; grid-template-rows: 1fr 1fr;
}
.look-panel {
  display: flex; align-items: center; justify-content: center;
  font-size: 88px;
  position: relative; overflow: hidden; cursor: pointer;
  border-bottom: none;
  transition: background .4s;
}
.look-panel:last-child { border-bottom: none; }
.lp-bg { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.look-panel:hover .lp-bg { transform: scale(1.04); }
.lpb1 { background: linear-gradient(140deg, #EDE6D8, #DDD0BC); }
.lpb2 { background: linear-gradient(140deg, #E6DFD4, #D6CCB8); }
.look-panel span { position: relative; z-index: 1; }
.look-panel-label {
  position: absolute; bottom: 20px; left: 24px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--stone);
}

/* ═══════════════════════════════════
   REVIEWS
═══════════════════════════════════ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--linen);
  border: 1px solid var(--linen);
}
.review {
  background: var(--ivory); padding: 48px;
  position: relative; cursor: pointer;
  transition: background .3s;
}
.review:hover { background: var(--cream); }
.rv-quote {
  font-family: var(--font-disp);
  font-size: 72px; color: var(--parchment);
  position: absolute; top: 22px; left: 40px; line-height: 1;
}
.rv-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 22px; }
.rv-text {
  font-family: var(--font-disp);
  font-size: 18px; font-style: italic; line-height: 1.75;
  color: var(--ink); margin-bottom: 28px;
}
.rv-rule { width: 36px; height: 1px; background: var(--gold); margin-bottom: 22px; }
.rv-author { display: flex; align-items: center; gap: 14px; }
.rv-av {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--linen);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.av1 { background: linear-gradient(135deg,#EDE6D8,#DDD0BC); }
.av2 { background: linear-gradient(135deg,#E8E3DC,#D8D0C4); }
.av3 { background: linear-gradient(135deg,#EBE5DA,#DDD4C4); }
.rv-name { font-size: 13px; font-weight: 500; color: var(--ink); }
.rv-meta { font-size: 10px; color: var(--mist); margin-top: 3px; letter-spacing: .5px; }
.rv-verified { color: var(--gold); }

/* ═══════════════════════════════════
   NEWSLETTER
═══════════════════════════════════ */
.newsletter {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: center;
  padding: 100px;
  background: var(--cream);
  border-top: 1px solid var(--linen);
}
.nl-l { padding-right: 80px; border-right: 1px solid var(--linen); }
.nl-eyebrow { font-size: 10px; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.nl-title {
  font-family: var(--font-disp);
  font-size: 48px; font-weight: 400; line-height: 1.1;
  color: var(--ink);
}
.nl-title em { font-style: italic; color: var(--gold-dk); }
.nl-desc { font-size: 14px; line-height: 1.9; color: var(--stone); margin-top: 18px; }

.nl-r { padding-left: 80px; display: flex; flex-direction: column; gap: 16px; }
.nl-form { display: flex; height: 52px; }
.nl-input {
  flex: 1; background: var(--ivory); border: 1px solid var(--linen);
  border-right: none; color: var(--ink); font-family: var(--font-body);
  font-size: 13px; padding: 0 24px; outline: none;
  transition: border-color .3s;
}
.nl-input::placeholder { color: var(--mist); }
.nl-input:focus { border-color: var(--gold); }
.nl-btn {
  background: var(--ink); color: var(--ivory);
  padding: 0 32px; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; transition: background .3s;
}
.nl-btn:hover { background: var(--gold-dk); }
.nl-note { font-size: 11px; color: var(--mist); }
.nl-perks { display: flex; gap: 20px; }
.nl-perk { font-size: 11px; color: var(--stone); display: flex; align-items: center; gap: 7px; }
.nl-perk::before { content: '—'; color: var(--gold); }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  background: var(--ink);
  color: rgba(250,248,244,.5);
  padding: 80px 100px 44px;
  border-top: 1px solid rgba(250,248,244,.06);
}
.footer-grid {
  text-align: center; margin-bottom: 48px;
}
.footer-grid .f-desc { margin: 0 auto; }
.f-logo {
  font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
  font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ivory); margin-bottom: 18px; font-weight: 500;
}
.f-desc { font-size: 14px; line-height: 1.9; max-width: 560px; }
.f-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.f-soc {
  width: 36px; height: 36px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s; opacity: .85;
}
.f-soc svg { width: 18px; height: 18px; fill: #000; }
.f-soc:hover { opacity: 1; }
.f-col-title {
  font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ivory); margin-bottom: 22px; font-weight: 500;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.f-col li a { font-size: 14px; color: rgba(250,248,244,.45); transition: color .3s; }
.f-col li a:hover { color: var(--gold-lt); }
.f-contact-row { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.f-contact-lbl { font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.f-contact-val { font-size: 14px; color: rgba(250,248,244,.45); }

.f-bottom {
  padding-top: 36px; border-top: 1px solid rgba(250,248,244,.06);
  display: flex; justify-content: space-between; align-items: center;
}
.f-copy { font-size: 14px; letter-spacing: .5px; }
.f-links { display: flex; gap: 28px; }
.f-links a { font-size: 14px; color: rgba(250,248,244,.35); transition: color .3s; }
.f-links a:hover { color: var(--gold-lt); }
.f-payments { display: flex; gap: 8px; align-items: center; }
.f-pay-lbl { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: rgba(250,248,244,.25); margin-right: 4px; }
.f-pay {
  padding: 5px 12px; border: 1px solid rgba(250,248,244,.1);
  font-size: 14px; color: rgba(250,248,244,.3); letter-spacing: 1px;
}

/* ═══════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .05s; }
.d2 { transition-delay: .15s; }
.d3 { transition-delay: .25s; }
.d4 { transition-delay: .35s; }

/* ═══════════════════════════════════
   SIDEBAR OVERLAY
═══════════════════════════════════ */
.sidebar-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(26,24,20,0);
  pointer-events: none;
  transition: background .45s var(--ease);
}
.sidebar-overlay.open {
  background: rgba(26,24,20,0.46);
  pointer-events: all;
}

/* Sidebar Panel */
.sidebar {
  position: fixed; top: 0; left: 0; z-index: 501;
  width: 420px; height: 100vh;
  background: var(--ivory);
  border-right: 1px solid var(--linen);
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform .52s var(--ease-out);
  overflow: hidden;
}
.sidebar.open { transform: translateX(0); }

/* Header */
.sb-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 36px;
  border-bottom: none;
  flex-shrink: 0;
}
.sb-logo {
  font-family: var(--font-disp);
  font-size: 16px; letter-spacing: 5px; text-transform: uppercase; color: var(--ink);
}
.sb-close {
  width: 36px; height: 36px;
  background: none; border: 1px solid var(--linen);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--stone); transition: border-color .3s, color .3s;
}
.sb-close:hover { border-color: var(--ink); color: var(--ink); }
.sb-close svg { display: block; }

/* Footer */
.sb-foot {
  flex-shrink: 0;
  padding: 24px 40px;
  border-top: 1px solid var(--linen);
  display: flex; gap: 32px;
}
.sb-foot-link {
  font-family: var(--font-disp);
  font-size: 15px; letter-spacing: .5px;
  color: var(--stone); text-decoration: none;
  position: relative; padding-bottom: 3px;
  transition: color .3s;
}
.sb-foot-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--ease);
}
.sb-foot-link:hover { color: var(--ink); }
.sb-foot-link:hover::after { width: 100%; }

/* nav list container */
.sb-nav { flex: 1; overflow-y: auto; overflow-x: hidden; padding: 0; }
.sb-nav::-webkit-scrollbar { width: 0; }

/* each category row */
.sb-item {
  display: flex; align-items: stretch; justify-content: space-between;
  padding: 0 40px;
  text-decoration: none; cursor: pointer;
  position: relative; background: transparent;
  border-bottom: 1px solid rgba(232,224,208,.55);
  opacity: 0; transform: translateX(-20px);
  transition: background .3s var(--ease),
              border-color .3s,
              opacity .45s var(--ease-out),
              transform .45s var(--ease-out);
}
.sb-item:hover { background: rgba(184,153,90,.03); }
.sb-item:last-child { border-bottom: none; }

/* hover gold line extension */
.sb-item::before {
  content: '';
  position: absolute; bottom: -1px; left: 40px;
  height: 1.5px; width: 0;
  background: linear-gradient(to right, var(--gold-dk), var(--gold-lt) 60%, transparent);
  transition: width .5s var(--ease-out);
  z-index: 2;
}
.sb-item:hover::before { width: calc(100% - 80px); }

/* left content body */
.sb-item-inner {
  display: flex; flex-direction: column;
  padding: 18px 0 16px; flex: 1; gap: 0; overflow: hidden;
}

/* number label */
.sb-item-num {
  font-size: 9px; letter-spacing: 3.5px; color: var(--gold);
  font-family: var(--font-body); line-height: 1;
  margin-bottom: 6px;
  opacity: 0; transform: translateY(4px);
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
}
.sb-item:hover .sb-item-num { opacity: 1; transform: translateY(0); }

/* main title */
.sb-item-name {
  font-family: var(--font-disp);
  font-size: 26px; font-weight: 400; color: var(--ink);
  line-height: 1.15; letter-spacing: -.2px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  transition: color .3s, transform .38s var(--ease-out);
}
.sb-item:hover .sb-item-name { color: var(--charcoal); transform: translateX(6px); }

/* subtitle */
.sb-item-sub {
  font-size: 11px; color: var(--mist); letter-spacing: .3px;
  margin-top: 3px;
  transition: color .28s;
}
.sb-item:hover .sb-item-sub { color: var(--stone); }

/* right arrow circle */
.sb-item-arrow {
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1px solid var(--linen); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--linen); align-self: center; margin-left: 14px;
  transition: border-color .35s, color .35s,
              transform .38s var(--ease-out), background .35s;
}
.sb-item:hover .sb-item-arrow {
  border-color: var(--gold); color: var(--gold-dk);
  background: rgba(184,153,90,.09);
  transform: translateX(5px);
}

/* New / Sale badges */
.sb-badge {
  display: inline-block; font-family: var(--font-body);
  font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--ink); color: var(--ivory);
  padding: 3px 7px; vertical-align: middle; position: relative; top: -2px;
}
.sb-badge-sale {
  display: inline-block; font-family: var(--font-body);
  font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--red); color: #fff;
  padding: 3px 7px; vertical-align: middle; position: relative; top: -2px;
}

/* entrance animations */
.sidebar.open .sb-item { opacity: 1; transform: translateX(0); }
.sidebar.open .sb-item:nth-child(1) { transition-delay: .08s; }
.sidebar.open .sb-item:nth-child(2) { transition-delay: .14s; }
.sidebar.open .sb-item:nth-child(3) { transition-delay: .20s; }
.sidebar.open .sb-item:nth-child(4) { transition-delay: .26s; }
.sidebar.open .sb-item:nth-child(5) { transition-delay: .32s; }
.sidebar.open .sb-item:nth-child(6) { transition-delay: .38s; }

/* ═══════════════════════════════════
   CATALOG OVERLAY PANEL
═══════════════════════════════════ */
.catalog-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(26,24,20,0);
  pointer-events: none;
  transition: background .4s var(--ease);
}
.catalog-overlay.open {
  background: rgba(26,24,20,0.46);
  pointer-events: all;
}

.catalog-panel {
  position: fixed; top: 0; left: 0; z-index: 501;
  width: 340px; height: 100vh;
  background: var(--ivory);
  border-right: 1px solid var(--linen);
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform .45s var(--ease-out);
}
.catalog-panel.open { transform: translateX(0); }

.cat-head {
  display: flex; align-items: center;
  padding: 16px 24px 12px;
  border-bottom: none;
  flex-shrink: 0;
  background: var(--ivory);
  z-index: 2;
}

.cat-close {
  width: 34px; height: 34px;
  background: none; border: 1px solid var(--linen);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--stone); transition: border-color .3s, color .3s;
}
.cat-close:hover { border-color: var(--ink); color: var(--ink); }

.cat-body {
  flex: 1; overflow-y: auto; padding: 0 24px 24px;
}
.cat-body::-webkit-scrollbar { width: 0; }

.cat-group {
  padding: 18px 0;
  border-bottom: 1px solid rgba(232,224,208,.4);
}

.cat-group-title {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--mist); margin-bottom: 8px;
}

/* ── Catalog link (accordion row) ── */
.cat-link {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13px; color: var(--ink);
  padding: 9px 0; cursor: pointer;
  transition: color .2s, padding-left .25s var(--ease);
  user-select: none; text-decoration: none;
}
.cat-link:hover { color: var(--gold-dk); }

/* Right arrow */
.cat-link-arrow {
  font-size: 14px; font-weight: 700; color: var(--mist);
  transition: transform .25s var(--ease), color .2s;
  flex-shrink: 0; margin-left: 12px;
}
.cat-link:hover .cat-link-arrow { color: var(--stone); }
.cat-link.open .cat-link-arrow { transform: rotate(90deg); color: var(--ink); }

/* ── Sub-items container ── */
.cat-subs {
  display: none; padding: 4px 0 8px 0;
  flex-wrap: wrap; gap: 4px 12px; line-height: 1.5;
}
.cat-subs.open { display: flex; }

.cat-sub {
  font-size: 11px; color: var(--stone); letter-spacing: 1px;
  text-decoration: none; transition: color .2s; cursor: pointer;
}
.cat-sub:hover { color: var(--gold-dk); }
.cat-sub + .cat-sub::before { content: '·'; margin-right: 12px; color: var(--linen); }

/* ── Standalone link (no children) ── */
.cat-link--alone { cursor: pointer; }
.cat-link--alone:hover { padding-left: 6px; }

/* ── Brand sub-level ── */
.cat-link--brand {
  padding: 7px 0 7px 0; font-size: 11px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.cat-link--brand .cat-link-arrow { font-size: 12px; font-weight: 700; }

.cat-subs--brand { padding: 2px 0 6px 0; }

/* ── Service items ── */
.cat-svc {
  display: flex; flex-direction: column; gap: 2px; padding: 4px 0;
}
.cat-svc-item {
  font-size: 12px; letter-spacing: 1.5px; color: var(--stone);
  cursor: pointer; transition: color .2s; padding: 7px 0; text-decoration: none;
}
.cat-svc-item:hover { color: var(--gold-dk); }

/* ═══════════════════════════════════
   WISHLIST HEART — active state
═══════════════════════════════════ */
.prod-wish.wished {
  opacity: 1 !important;
  color: var(--red);
}
.prod-wish.wished svg { fill: var(--red); stroke: var(--red); }

/* nav heart: show count when items exist */
.wish-count {
  position: absolute; top: 2px; right: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 9px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  opacity: 0; transform: scale(0);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.wish-count.visible { opacity: 1; transform: scale(1); }

/* heart button heartbeat animation */
@keyframes heartbeat {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.32); }
  55%  { transform: scale(0.92); }
  75%  { transform: scale(1.16); }
  100% { transform: scale(1); }
}
.nav-icon-btn.heart-pop svg { animation: heartbeat .5s var(--ease-out) both; }

/* product wish SVG style */
.prod-wish svg { display: block; transition: fill .25s, stroke .25s; }

/* ═══════════════════════════════════
   MOBILE SEARCH (default hidden)
═══════════════════════════════════ */

/* ═══════════════════════════════════
   TABLET: 768px — 1024px
═══════════════════════════════════ */
@media screen and (max-width: 1024px) {

  nav { grid-template-columns: 120px 1fr 120px; padding: 0 24px; height: 64px; }
  .nav-logo { font-size: 16px; letter-spacing: 6px; }
  .nav-action { display: none; }
  .nav-divider { display: none; }

  .hero { min-height: 100vh; }
  .hero-l { padding: 64px 32px 40px; order: 1; }
  .hero-h1 { font-size: 52px; }
  .hero-p { max-width: 100%; margin-bottom: 32px; }
  .hero-kpi { position: static; margin-top: 40px; gap: 32px; }
  .hero-r { min-height: 360px; border-left: none; order: 0; }
  .pcard { width: 220px; height: 310px; }
  .pcard-icon { font-size: 80px; }
  .chip { display: none; }
  .hero-btns { flex-wrap: wrap; gap: 16px; }

  .sec { padding: 60px 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .sec-title { font-size: 36px; }

  .quality-strip { grid-template-columns: repeat(2, 1fr); }
  .qual-item:nth-child(2) { border-right: none; }

  .reviews-grid { grid-template-columns: 1fr; }

  .newsletter { grid-template-columns: 1fr; padding: 60px 24px; }
  .nl-l { padding-right: 0; border-right: none; margin-bottom: 40px; }
  .nl-r { padding-left: 0; }

  .footer-grid { text-align: center; }
  footer { padding: 60px 24px 36px; }

  .catalog-panel { width: 320px; }
}

/* ═══════════════════════════════════
   PHONE: 320px — 767px
═══════════════════════════════════ */
@media screen and (max-width: 767px) {

  .top-bar { font-size: 8px; letter-spacing: 1px; padding: 8px 0; white-space: nowrap; overflow: hidden; }

  nav { grid-template-columns: 80px 1fr 48px; padding: 0 12px; height: 56px; width: 100%; }
  .nav-links { gap: 6px; }
  .nav-logo { font-size: 12px; letter-spacing: 3px; }
  .nav-search-btn { display: none; }
  .nav-icon-btn { width: 36px; height: 36px; }

  






.hero-l { padding: 56px 20px 32px; }
  .hero-h1 { font-size: 36px; }
  .hero-h1 .outline-text { -webkit-text-stroke: 1px var(--linen); }
  .hero-p { font-size: 13px; margin-bottom: 24px; }
  .hero-season { font-size: 8px; letter-spacing: 3px; margin-bottom: 24px; }
  .hero-kpi { flex-wrap: wrap; gap: 20px; }
  .kpi-num { font-size: 28px; }
  .hero-r { min-height: 260px; }
  .pcard { width: 170px; height: 240px; }
  .pcard-icon { font-size: 60px; }
  .btn-primary { padding: 12px 28px; font-size: 10px; }
  .btn-text { font-size: 10px; }

  .ticker { height: 36px; }
  .ticker-item { font-size: 8px; letter-spacing: 1.5px; padding: 0 24px; }

  .sec { padding: 40px 16px; }
  .sec-header { margin-bottom: 24px; }
  .sec-title { font-size: 28px; }
  .eyebrow { font-size: 8px; letter-spacing: 3px; }
  .sec-more { font-size: 10px; }

  .products-grid { grid-template-columns: 1fr 1fr; }
  .prod-info { padding: 14px 12px 18px; }
  .prod-name { font-size: 14px; }
  .prod-price { font-size: 15px; }
  .prod-emoji { font-size: 50px; }

  .quality-strip { grid-template-columns: 1fr; }
  .qual-item { padding: 24px 20px; border-right: none; border-bottom: none; }
  .qual-item:last-child { border-bottom: none; }

  .reviews-grid { grid-template-columns: 1fr; }
  .review { padding: 28px 20px; }
  .rv-text { font-size: 15px; }

  .newsletter { grid-template-columns: 1fr; padding: 40px 16px; }
  .nl-title { font-size: 32px; }
  .nl-l { padding-right: 0; border-right: none; margin-bottom: 28px; }
  .nl-r { padding-left: 0; }
  .nl-form { height: 44px; }
  .nl-input { font-size: 12px; padding: 0 16px; }
  .nl-btn { padding: 0 20px; font-size: 9px; }
  .nl-perks { flex-wrap: wrap; gap: 10px; }

  footer { padding: 40px 16px 28px; }
  .footer-grid { text-align: center; margin-bottom: 36px; }
  .f-logo { font-size: 18px; letter-spacing: 6px; }
  .f-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .f-links { justify-content: center; flex-wrap: wrap; }

  .catalog-panel { width: 100%; }
  .catalog-panel .cat-body { padding: 0 24px 24px; }
  .cat-group { padding: 16px 0; }
  .cat-group-title { font-size: 10px; }
  .cat-link { font-size: 13px; padding: 8px 0; }
}

/* ═══════════════════════════════════
   WOOCOMMERCE — GLOBAL
═══════════════════════════════════ */
.wc-content { min-height: 60vh; }

/* Breadcrumbs */
.woocommerce-breadcrumb {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); padding: 16px 0;
}
.woocommerce-breadcrumb a { color: var(--stone); transition: color .25s; }
.woocommerce-breadcrumb a:hover { color: var(--ink); }
.wc-breadcrumb-sep { color: var(--mist); margin: 0 6px; }

/* Result count */
.woocommerce-result-count {
  font-size: 11px; letter-spacing: 1.5px; color: var(--mist);
  margin: 0;
}

/* Catalog ordering select */
.woocommerce-ordering select {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 1.5px;
  padding: 10px 36px 10px 16px; border: 1px solid var(--linen);
  background: var(--ivory); color: var(--ink);
  border-radius: 0; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B6358'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  transition: border-color .25s;
}
.woocommerce-ordering select:focus { border-color: var(--gold); outline: none; }

/* ═══════════════════════════════════
   PRODUCT GRID — overrides WC columns
═══════════════════════════════════ */
.woocommerce .products-grid { list-style: none; padding: 0; margin: 0 !important; }
.woocommerce .products-grid::before,
.woocommerce .products-grid::after { display: none !important; }
.woocommerce ul.products li.product {
  float: none; margin: 0; width: auto; clear: none;
}

/* ═══════════════════════════════════
   PRODUCT CARD — dynamic loop item
═══════════════════════════════════ */
.prod-img .attachment-woocommerce_thumbnail {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.prod-img-fill .attachment-woocommerce_thumbnail {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.prod .star-rating {
  font-size: 11px; color: var(--gold); font-family: star;
  display: inline-block; overflow: hidden; position: relative;
  height: 1em; line-height: 1; width: 5.4em;
}
.prod .star-rating::before {
  content: "SSSSS"; color: var(--linen); float: left;
  top: 0; left: 0; position: absolute;
}
.prod .star-rating span { overflow: hidden; float: left; top: 0; left: 0; position: absolute; padding-top: 1.5em; }
.prod .star-rating span::before { content: "SSSSS"; top: 0; position: absolute; left: 0; color: var(--gold); }

/* Product price */
.prod .woocommerce-Price-amount { color: var(--ink); font-family: var(--font-body); }
.prod del .woocommerce-Price-amount { color: var(--mist); }
.prod ins { text-decoration: none; }
.prod .price del { margin-right: 4px; }
.prod .price ins .woocommerce-Price-amount { color: var(--red); }

/* ═══════════════════════════════════
   PAGINATION
═══════════════════════════════════ */
.woocommerce-pagination { margin-top: 48px; text-align: center; }
.woocommerce-pagination ul.page-numbers {
  display: inline-flex; gap: 6px; list-style: none; padding: 0;
  border: none;
}
.woocommerce-pagination .page-numbers li { border: none; float: none; }
.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; font-family: var(--font-body);
  font-size: 12px; letter-spacing: 1px;
  color: var(--stone); background: transparent;
  border: 1px solid var(--linen); border-radius: 0;
  transition: all .25s; text-decoration: none;
  line-height: 1; padding: 0; min-width: 0;
}
.woocommerce-pagination .page-numbers a:hover {
  border-color: var(--gold); color: var(--gold);
}
.woocommerce-pagination .page-numbers .current {
  background: var(--ink); border-color: var(--ink); color: var(--ivory);
}
.woocommerce-pagination .page-numbers .next,
.woocommerce-pagination .page-numbers .prev { font-size: 14px; }

/* ═══════════════════════════════════
   SINGLE PRODUCT PAGE
═══════════════════════════════════ */
#primary .wc-single-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.wc-single-gallery {
  position: sticky; top: 100px;
}

/* Gallery overrides */
.wc-single-gallery .woocommerce-product-gallery { position: relative; }
.wc-single-gallery .woocommerce-product-gallery__image {
  border: 1px solid var(--linen); border-radius: 0; overflow: hidden;
  background: var(--cream);
}
.wc-single-gallery .woocommerce-product-gallery__image img {
  width: 100%; display: block;
}
.wc-single-gallery .flex-control-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-top: 8px; list-style: none; padding: 0;
}
.wc-single-gallery .flex-control-thumbs li { border: none; }
.wc-single-gallery .flex-control-thumbs img {
  border: 1px solid var(--linen); opacity: .5; transition: all .25s;
  cursor: pointer; display: block; width: 100%;
}
.wc-single-gallery .flex-control-thumbs img:hover,
.wc-single-gallery .flex-control-thumbs .flex-active { opacity: 1; border-color: var(--gold); }

/* Summary */
.wc-single-summary .product_title {
  font-family: var(--font-disp); font-size: 40px; font-weight: 400;
  line-height: 1.2; color: var(--ink); margin-bottom: 12px;
}
.wc-single-summary .price {
  font-family: var(--font-disp); font-size: 24px; color: var(--ink);
  margin-bottom: 24px;
}
.wc-single-summary .price del { color: var(--mist); font-size: 18px; margin-right: 8px; }
.wc-single-summary .price ins { text-decoration: none; color: var(--red); }
.wc-single-summary .woocommerce-product-details__short-description {
  font-family: var(--font-body); font-size: 14px; line-height: 1.8;
  color: var(--stone); margin-bottom: 24px;
}
.wc-single-summary .woocommerce-product-details__short-description p { margin: 0; }

/* Quantity */
.wc-single-summary .quantity {
  display: inline-flex; align-items: stretch; margin-right: 12px;
  border: 1px solid var(--linen);
}
.wc-single-summary .quantity .qty {
  width: 64px; padding: 12px 8px; text-align: center;
  font-family: var(--font-body); font-size: 14px;
  border: none; background: var(--ivory); color: var(--ink);
  -moz-appearance: textfield; appearance: textfield;
}
.wc-single-summary .quantity .qty::-webkit-outer-spin-button,
.wc-single-summary .quantity .qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Add to cart button */
.wc-single-summary .single_add_to_cart_button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 48px; font-family: var(--font-body);
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--ink); color: var(--ivory); border: none;
  cursor: pointer; transition: all .35s;
}
.wc-single-summary .single_add_to_cart_button:hover {
  background: var(--gold); color: #fff;
}

/* Product meta */
.wc-single-summary .product_meta {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--linen);
  font-size: 11px; letter-spacing: 1.5px;
  color: var(--mist); text-transform: uppercase;
}
.wc-single-summary .product_meta a { color: var(--gold); transition: color .25s; }
.wc-single-summary .product_meta a:hover { color: var(--ink); }

/* Tabs */
.woocommerce-tabs { max-width: 960px; margin: 0 auto; }
.woocommerce-tabs ul.wc-tabs {
  display: flex; gap: 0; list-style: none; padding: 0; margin: 0 0 32px;
  border-bottom: none;
}
.woocommerce-tabs ul.wc-tabs li {
  border: none; margin: 0; background: none; padding: 0;
  border-radius: 0;
}
.woocommerce-tabs ul.wc-tabs li::before,
.woocommerce-tabs ul.wc-tabs li::after { display: none !important; }
.woocommerce-tabs ul.wc-tabs li a {
  display: block; padding: 14px 28px;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--mist);
  border-bottom: 2px solid transparent; transition: all .25s;
}
.woocommerce-tabs ul.wc-tabs li a:hover { color: var(--ink); }
.woocommerce-tabs ul.wc-tabs li.active a {
  color: var(--ink); border-bottom-color: var(--gold);
}
.woocommerce-tabs .woocommerce-Tabs-panel {
  font-family: var(--font-body); font-size: 14px; line-height: 1.8;
  color: var(--stone); padding: 0;
}

/* Reviews */
.woocommerce-Reviews-title {
  font-family: var(--font-disp); font-size: 24px; font-weight: 400; margin-bottom: 16px;
}
.woocommerce #review_form .form-submit .submit {
  padding: 14px 40px; font-family: var(--font-body); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--ink); color: var(--ivory); border: none; cursor: pointer;
  transition: background .35s; border-radius: 0;
}
.woocommerce #review_form .form-submit .submit:hover { background: var(--gold); }

/* Related products */
.woocommerce .related.products { margin-top: 0; }
.woocommerce .related.products > h2 { display: none; }

/* ═══════════════════════════════════
   CART PAGE
═══════════════════════════════════ */
.wc-cart-wrap { max-width: 100%; }
.woocommerce-cart-form { width: 100%; }
.woocommerce-cart-form .shop_table {
  width: 100%; border-collapse: collapse; border: none;
  font-family: var(--font-body); font-size: 13px;
  border-radius: 0;
}
.woocommerce-cart-form .shop_table thead {
  border-bottom: 2px solid var(--ink);
}
.woocommerce-cart-form .shop_table th {
  padding: 14px 0; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--stone); text-align: left;
  font-weight: 400; background: none;
}
.woocommerce-cart-form .shop_table td {
  padding: 24px 0; border-bottom: none;
  vertical-align: middle; background: none;
}
.woocommerce-cart-form .product-thumbnail img {
  width: 80px; border: 1px solid var(--linen);
}
.woocommerce-cart-form .product-name {
  font-family: var(--font-disp); font-size: 16px;
}
.woocommerce-cart-form .product-name a { color: var(--ink); }
.woocommerce-cart-form .product-price,
.woocommerce-cart-form .product-subtotal {
  font-family: var(--font-body); color: var(--ink);
}

/* Cart quantity */
.woocommerce-cart-form .quantity {
  display: inline-flex; border: 1px solid var(--linen);
}
.woocommerce-cart-form .quantity .qty {
  width: 56px; padding: 8px 4px; text-align: center;
  font-family: var(--font-body); font-size: 13px;
  border: none; background: var(--ivory); color: var(--ink);
}

/* Coupon */
.woocommerce-cart-form .coupon {
  display: flex; gap: 8px;
}
.woocommerce-cart-form .coupon .input-text {
  padding: 12px 16px; font-family: var(--font-body); font-size: 12px;
  border: 1px solid var(--linen); background: var(--ivory); color: var(--ink);
  min-width: 200px; border-radius: 0;
}
.woocommerce-cart-form .coupon .input-text:focus { border-color: var(--gold); outline: none; }
.woocommerce-cart-form .coupon .button {
  padding: 12px 24px; font-family: var(--font-body); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--ink); color: var(--ivory); border: none; cursor: pointer;
  transition: background .35s; border-radius: 0;
}
.woocommerce-cart-form .coupon .button:hover { background: var(--gold); }

/* Update cart */
.woocommerce-cart-form .button[name="update_cart"] {
  padding: 12px 24px; font-family: var(--font-body); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  background: transparent; color: var(--ink); border: 1px solid var(--ink); cursor: pointer;
  transition: all .35s; border-radius: 0;
}
.woocommerce-cart-form .button[name="update_cart"]:hover {
  background: var(--ink); color: var(--ivory);
}

/* Remove button */
.woocommerce-cart-form .remove {
  color: var(--mist) !important; font-size: 20px; font-weight: 300;
  transition: color .25s; text-decoration: none;
}
.woocommerce-cart-form .remove:hover { color: var(--red) !important; background: none; }

/* Cart totals */
.cart-collaterals .cart_totals {
  background: var(--cream); padding: 32px; margin-top: 24px;
  font-family: var(--font-body);
}
.cart-collaterals .cart_totals h2 {
  font-family: var(--font-disp); font-size: 22px; font-weight: 400;
  margin-bottom: 16px; color: var(--ink);
}
.cart-collaterals .cart_totals table {
  width: 100%; border-collapse: collapse; border: none;
}
.cart-collaterals .cart_totals th,
.cart-collaterals .cart_totals td {
  padding: 10px 0; font-size: 13px; border-bottom: none;
}
.cart-collaterals .cart_totals .order-total th,
.cart-collaterals .cart_totals .order-total td {
  font-family: var(--font-disp); font-size: 18px; border-bottom: none;
}

/* Proceed to checkout */
.wc-proceed-to-checkout .checkout-button {
  display: block; width: 100%; padding: 16px;
  font-family: var(--font-body); font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; text-align: center;
  background: var(--ink); color: var(--ivory); border: none; cursor: pointer;
  transition: background .35s; text-decoration: none; border-radius: 0;
  margin-top: 16px;
}
.wc-proceed-to-checkout .checkout-button:hover { background: var(--gold); color: #fff; }

/* Empty cart */
.woocommerce-cart-form__cart-item.cart_item .product-remove { width: 30px; }

/* ═══════════════════════════════════
   CHECKOUT PAGE
═══════════════════════════════════ */
.wc-checkout-wrap { font-family: var(--font-body); }
.wc-checkout-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-bottom: 40px;
}
.wc-checkout-billing h3,
.wc-checkout-shipping h3 {
  font-family: var(--font-disp); font-size: 20px; font-weight: 400;
  margin-bottom: 20px; color: var(--ink);
}

/* Checkout form fields */
.woocommerce-checkout .form-row {
  margin-bottom: 16px;
}
.woocommerce-checkout .form-row label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--stone); margin-bottom: 6px; display: block;
}
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .input-text,
.select2-container .select2-selection--single {
  width: 100%; padding: 14px 16px;
  font-family: var(--font-body); font-size: 14px;
  border: 1px solid var(--linen); background: var(--ivory); color: var(--ink);
  border-radius: 0; transition: border-color .25s;
  line-height: 1.4; height: auto; min-height: 48px;
}
.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus { border-color: var(--gold); outline: none; }
.select2-container--default .select2-selection--single {
  display: flex; align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%; transform: translateY(-50%);
}

/* Order review */
.wc-checkout-review { margin-top: 48px; }
.wc-checkout-review-inner {
  background: var(--cream); padding: 40px;
}
.wc-order-title {
  font-family: var(--font-disp); font-size: 22px; font-weight: 400;
  margin-bottom: 20px; color: var(--ink);
}
.woocommerce-checkout-review-order-table {
  width: 100%; border-collapse: collapse; font-size: 13px;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 12px 0; border-bottom: none;
  text-align: left;
}
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  font-family: var(--font-disp); font-size: 18px; border-bottom: none;
}

/* Place order button */
#place_order {
  width: 100%; padding: 18px;
  font-family: var(--font-body); font-size: 13px; letter-spacing: 2.5px;
  text-transform: uppercase; text-align: center;
  background: var(--ink); color: var(--ivory); border: none; cursor: pointer;
  transition: background .35s; border-radius: 0; margin-top: 20px;
}
#place_order:hover { background: var(--gold); color: #fff; }

/* Payment methods */
.woocommerce-checkout #payment { background: none; }
.woocommerce-checkout #payment ul.payment_methods {
  list-style: none; padding: 0; margin: 0 0 16px;
  border: none;
}
.woocommerce-checkout #payment ul.payment_methods li {
  padding: 12px 0; border-bottom: none;
  font-size: 13px;
}
.woocommerce-checkout #payment div.payment_box {
  background: var(--ivory); padding: 12px; margin-top: 8px;
  font-size: 12px; color: var(--stone); border-radius: 0;
}
.woocommerce-checkout #payment div.payment_box::before { display: none; }

/* ═══════════════════════════════════
   MY ACCOUNT PAGE
═══════════════════════════════════ */
.wc-account-wrap {
  display: grid; grid-template-columns: 240px 1fr; gap: 48px;
}
.woocommerce-MyAccount-navigation {
  border-right: 1px solid var(--linen); padding-right: 24px;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none; padding: 0; margin: 0;
}
.woocommerce-MyAccount-navigation-link {
  margin-bottom: 4px;
}
.woocommerce-MyAccount-navigation-link a {
  display: block; padding: 10px 16px;
  font-family: var(--font-body); font-size: 12px; letter-spacing: 1.5px;
  color: var(--stone); transition: all .25s; text-decoration: none;
}
.woocommerce-MyAccount-navigation-link a:hover { color: var(--ink); background: var(--cream); }
.woocommerce-MyAccount-navigation-link.is-active a {
  color: var(--gold); font-weight: 600;
}
.woocommerce-MyAccount-content {
  font-family: var(--font-body); font-size: 14px; line-height: 1.8; color: var(--stone);
}
.woocommerce-MyAccount-content p { margin-bottom: 16px; }
.woocommerce-MyAccount-content .woocommerce-Button {
  padding: 12px 32px; font-family: var(--font-body); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--ink); color: var(--ivory); border: none; cursor: pointer;
  transition: background .35s; border-radius: 0;
}
.woocommerce-MyAccount-content .woocommerce-Button:hover { background: var(--gold); }

/* Account tables (orders, downloads, addresses) */
.woocommerce-MyAccount-content table {
  width: 100%; border-collapse: collapse; border: none;
}
.woocommerce-MyAccount-content table th {
  padding: 14px 0; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--stone); text-align: left;
  font-weight: 400; border-bottom: 2px solid var(--ink);
}
.woocommerce-MyAccount-content table td {
  padding: 14px 0; font-size: 13px; border-bottom: none;
}

/* ═══════════════════════════════════
   NOTICES
═══════════════════════════════════ */
.woocommerce-notices-wrapper { margin-bottom: 24px; }
.wc-notice,
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px; margin-bottom: 12px;
  font-family: var(--font-body); font-size: 13px; line-height: 1.6;
  list-style: none; border-radius: 0;
}
.wc-notice--success,
.woocommerce-message {
  background: var(--ivory); border-left: 3px solid var(--gold); color: var(--ink);
}
.wc-notice--error,
.woocommerce-error {
  background: #FDF5F4; border-left: 3px solid var(--red); color: var(--ink);
}
.wc-notice--info,
.woocommerce-info {
  background: var(--cream); border-left: 3px solid var(--stone); color: var(--ink);
}
.wc-notice-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button {
  float: right; margin-left: 16px; order: 10;
  padding: 8px 20px; font-family: var(--font-body); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--ink); color: var(--ivory); border: none; cursor: pointer;
  transition: background .35s; text-decoration: none; border-radius: 0;
}
.woocommerce-message .button:hover,
.woocommerce-error .button:hover,
.woocommerce-info .button:hover { background: var(--gold); color: #fff; }

.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before { display: none !important; }

/* ═══════════════════════════════════
   WIDGETS (sidebar)
═══════════════════════════════════ */
.woocommerce.widget_product_categories ul { list-style: none; padding: 0; margin: 0; }
.woocommerce.widget_product_categories ul li {
  padding: 6px 0; font-size: 12px; letter-spacing: 1.5px;
}
.woocommerce.widget_product_categories ul li a {
  color: var(--stone); transition: color .25s;
}
.woocommerce.widget_product_categories ul li a:hover { color: var(--gold); }
.woocommerce .widget_price_filter .price_slider {
  background: var(--linen); margin-bottom: 16px;
}
.woocommerce .widget_price_filter .price_slider .ui-slider-range {
  background: var(--gold);
}
.woocommerce .widget_price_filter .price_slider .ui-slider-handle {
  background: var(--ink); border-radius: 0; top: -4px; border: none;
}

/* ═══════════════════════════════════
   WP ADMIN BAR OFFSET
═══════════════════════════════════ */
.admin-bar nav { top: 32px; }
.admin-bar .sidebar { top: 32px; height: calc(100vh - 32px); }

/* ═══════════════════════════════════
   RESPONSIVE — WOOCOMMERCE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .wc-single-layout { grid-template-columns: 1fr; gap: 40px; }
  .wc-single-gallery { position: static; }
  .wc-checkout-grid { grid-template-columns: 1fr; }
  .wc-account-wrap { grid-template-columns: 1fr; }
  .woocommerce-MyAccount-navigation { border-right: none; padding-right: 0; border-bottom: none; padding-bottom: 16px; }
}
@media (max-width: 767px) {
  .woocommerce-cart-form .shop_table thead { display: none; }
  .woocommerce-cart-form .shop_table td { display: block; text-align: right; padding: 12px 0; }
  .woocommerce-cart-form .shop_table td::before { content: attr(data-title); float: left; font-weight: 600; text-transform: uppercase; font-size: 10px; letter-spacing: 1.5px; }
  .woocommerce-cart-form .shop_table tr { display: block; margin-bottom: 20px; border-bottom: 2px solid var(--linen); }
  .wc-checkout-grid { grid-template-columns: 1fr; }
}

