/* ============================================================
   GLACIER WATCHES — Ultra Luxury E-Commerce
   Typography: Cormorant Garamond + Jost
   Palette: #000000 | #1E7AC1 | #FFFFFF
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black: #000000;
  --blue: #1E7AC1;
  --blue-dark: #155d96;
  --blue-light: #3a91d4;
  --gold: #1E7AC1;
  --gold-light: #3a91d4;
  --white: #FFFFFF;
  --off-white: #F5F4F0;
  --gray-100: #f0efeb;
  --gray-200: #d8d7d2;
  --gray-400: #9a9890;
  --gray-600: #5a5955;
  --gray-800: #1a1917;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --nav-h: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --shadow-sm: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.20);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 12px 48px rgba(0,0,0,0.16);
  --radius: 2px;
  --radius-card: 14px;
  --radius-btn: 4px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── Loading Screen ─────────────────────────────────────────── */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
#loading-screen.hidden {
  animation: loadFadeOut 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
@keyframes loadFadeOut {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); pointer-events: none; }
}
.loading-logo {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  overflow: hidden;
  text-align: center;
}
.loading-logo .logo-blue { color: #1E7AC1; }
.loading-logo .logo-white { color: #ffffff; }
.loading-logo span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: letterRise 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes letterRise {
  to { opacity: 1; transform: translateY(0); }
}
.loading-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--blue-light);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.2s forwards;
}
.loading-bar-wrap {
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.loading-bar {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: var(--blue);
  animation: loadBar 2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
@keyframes loadBar { to { width: 100%; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ── Page Wrapper ───────────────────────────────────────────── */
#page-content {
  opacity: 0;
  animation: pageReveal 0.9s ease 2.4s forwards;
}
@keyframes pageReveal { to { opacity: 1; } }

/* ── Page Transition Overlay ────────────────────────────────── */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: var(--black);
  transform: translateY(100%);
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}
#page-transition.active { transform: translateY(0); }
#page-transition.exit { transform: translateY(-100%); }

/* ── Header / Navigation ────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: background var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
#site-header.transparent { background: transparent; }
#site-header.solid { background: var(--black); }

.header-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}
.site-logo:hover { opacity: 0.7; }
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
}
/* keep footer logo text same but slightly smaller */
footer .site-logo-text {
  font-size: 1.15rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  transition: color var(--transition-fast);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-search-wrap {
  position: relative;
}
.header-search-btn {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: color var(--transition-fast);
  padding: 6px;
}
.header-search-btn:hover { color: var(--white); }

.search-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: 320px;
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-fast);
}
.search-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.9rem;
  padding: 8px 0;
  outline: none;
  letter-spacing: 0.05em;
}
.search-input::placeholder { color: var(--gray-400); font-size: 0.8rem; letter-spacing: 0.1em; }
.search-results { margin-top: 12px; max-height: 300px; overflow-y: auto; }
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: opacity var(--transition-fast);
}
.search-result-item:hover { opacity: 0.7; }
.search-result-item img { width: 44px; height: 44px; object-fit: cover; }
.search-result-info .name { font-size: 0.78rem; color: var(--white); letter-spacing: 0.05em; }
.search-result-info .price { font-size: 0.72rem; color: var(--gold); margin-top: 2px; }

.cart-btn {
  position: relative;
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  transition: color var(--transition-fast);
  padding: 6px;
}
.cart-btn:hover { color: var(--white); }
.cart-count {
  position: absolute;
  top: -2px; right: -4px;
  width: 18px; height: 18px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-count.bump { transform: scale(1.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: all var(--transition-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 100vw);
  height: 100vh;
  background: var(--black);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast), padding var(--transition-fast);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ── Announcement Bar ───────────────────────────────────────── */
.announcement-bar {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: relative;
  z-index: 999;
}
.announcement-bar strong { color: var(--gold-light); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(30,122,193,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%),
    var(--black);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-image {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 20%, black 50%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 20%, black 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 5vw, 80px);
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-btn);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-primary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}
.btn-primary::before { background: var(--gold); }
.btn-primary:hover { color: var(--black); border-color: var(--gold); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline::before { background: rgba(255,255,255,0.08); }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); }
.btn-outline span { position: relative; z-index: 1; }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}
.btn-blue::before { background: var(--blue-dark); }
.btn-blue:hover { border-color: var(--blue-dark); }
.btn-blue span { position: relative; z-index: 1; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-gold::before { background: var(--gold-light); }
.btn-gold:hover { border-color: var(--gold-light); }
.btn-gold span { position: relative; z-index: 1; }

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn-dark::before { background: var(--gray-800); }
.btn-dark span { position: relative; z-index: 1; }

.btn-sm { padding: 10px 24px; font-size: 0.65rem; }
.btn-lg { padding: 20px 48px; font-size: 0.75rem; }

/* ── Section Layout ─────────────────────────────────────────── */
section { padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px); }
.container {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-subtitle {
  font-size: 0.85rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Dark section */
.section-dark { background: var(--black); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.45); }
.section-off { background: var(--off-white); }
.section-blue { background: var(--blue); }
.section-blue .section-title { color: var(--white); }
.section-blue .section-subtitle { color: rgba(255,255,255,0.7); }
.section-blue .section-eyebrow { color: var(--gold-light); }
.section-blue .section-eyebrow::before,
.section-blue .section-eyebrow::after { background: var(--gold-light); }

/* ── Product Card ───────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }

.product-card {
  position: relative;
  cursor: pointer;
  group: true;
}
.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 16px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition);
}
.product-card:hover .product-card-image {
  box-shadow: var(--shadow-card-hover);
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-card-image img { transform: scale(1.07); }
.product-card-image .product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  border-radius: var(--radius-card);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-direction: column;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay .quick-add {
  background: var(--white);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.3s ease 0.05s;
}
.product-card:hover .product-overlay .quick-add {
  transform: translateY(0);
  opacity: 1;
}
.quick-add:hover { background: var(--gold); }
.product-overlay .wishlist-btn {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.25s ease;
  border: none;
  color: var(--black);
}
.product-card:hover .product-overlay .wishlist-btn {
  transform: scale(1);
  opacity: 1;
}
.wishlist-btn:hover { background: var(--gold); color: var(--black); }
.wishlist-btn.active { background: var(--gold); color: var(--black); }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}
.badge-new { background: var(--black); color: var(--white); }
.badge-sale { background: var(--blue); color: var(--white); }
.badge-hot { background: var(--gold); color: var(--black); }
.badge-limited { background: transparent; border: 1px solid var(--gold); color: var(--gold); }

.product-card-info { padding: 0 2px; min-width: 0; }
.product-category-tag {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  line-height: 1.3;
  transition: color var(--transition-fast);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-card:hover .product-name { color: var(--blue); }
.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.05em;
}
.product-price-original {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.product-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}
.star { color: var(--gold); font-size: 0.7rem; }
.star.empty { color: var(--gray-200); }
.reviews-count {
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-left: 4px;
}

/* Dark card variant */
.product-card.dark .product-name { color: var(--white); }
.product-card.dark:hover .product-name { color: var(--gold); }
.product-card.dark .product-price { color: var(--white); }
.product-card.dark .product-category-tag { color: rgba(255,255,255,0.4); }
.product-card.dark .product-card-image { background: var(--gray-800); }

/* ── Featured Collections ───────────────────────────────────── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.collection-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.collection-card:hover img { transform: scale(1.05); }
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
}
.collection-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.collection-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.collection-link {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition-fast), gap var(--transition-fast);
}
.collection-card:hover .collection-link { color: var(--white); gap: 16px; }

/* ── Promo Banner ───────────────────────────────────────────── */
.promo-banner {
  background: var(--blue);
  padding: 60px clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -100%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.promo-content {}
.promo-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.promo-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}
.promo-title em { font-style: italic; color: var(--gold-light); }
.promo-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 440px;
}
.countdown {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-shrink: 0;
}
.countdown-item {
  text-align: center;
  min-width: 64px;
}
.countdown-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.countdown-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-track {
  overflow: hidden;
  position: relative;
}
.testimonials-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  margin-right: 30px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray-100);
}
.testimonial-name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.testimonial-loc {
  font-size: 0.65rem;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.testimonial-rating { display: flex; gap: 3px; margin-bottom: 16px; }
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  justify-content: center;
}
.carousel-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--gray-200);
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: var(--black);
}
.carousel-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.carousel-dot.active { background: var(--black); width: 20px; border-radius: 3px; }

/* ── Brands / Trust Strip ───────────────────────────────────── */
.trust-strip {
  padding: 40px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
  min-width: 180px;
}
.trust-icon {
  font-size: 1.4rem;
  color: var(--blue);
}
.trust-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trust-desc {
  font-size: 0.65rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter-section {
  background: var(--black);
  text-align: center;
  padding: 80px clamp(20px, 5vw, 80px);
}
.newsletter-section .section-title { color: var(--white); }
.newsletter-section .section-subtitle { color: rgba(255,255,255,0.45); }
.newsletter-form {
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 32px auto 0;
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 24px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 16px 28px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--blue-dark); }
.newsletter-note {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  margin-top: 14px;
  letter-spacing: 0.08em;
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--gray-800);
  padding: 80px clamp(20px, 5vw, 80px) 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}
.footer-brand .site-logo {
  display: inline-flex;
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  letter-spacing: 0.04em;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}
.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.footer-col-title {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast), padding var(--transition-fast);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact span { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}
.footer-payments {
  display: flex;
  gap: 8px;
  align-items: center;
}
.payment-icon {
  height: 24px;
  padding: 3px 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
}

/* ── Products Page ──────────────────────────────────────────── */
.products-hero {
  background: var(--black);
  padding: clamp(120px, 15vw, 180px) clamp(20px, 5vw, 80px) clamp(60px, 8vw, 100px);
  text-align: center;
}
.products-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
}
.products-hero h1 em { font-style: italic; color: var(--gold); }
.products-hero p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-top: 16px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  justify-content: center;
  margin-top: 20px;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb span { color: var(--gold); }

.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  padding: 60px clamp(20px, 5vw, 80px);
  max-width: 1600px;
  margin: 0 auto;
}

/* Filters Sidebar */
.filters-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 28px;
}
.filter-header-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.clear-filters {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color var(--transition-fast);
}
.clear-filters:hover { color: var(--blue-dark); }
.filter-group {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}
.filter-group:last-child { border-bottom: none; }
.filter-group-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.filter-group-title .toggle { font-size: 0.7rem; transition: transform var(--transition-fast); }
.filter-group-title .toggle.open { transform: rotate(180deg); }
.filter-options { display: flex; flex-direction: column; gap: 10px; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--gray-600);
  transition: color var(--transition-fast);
}
.filter-option:hover { color: var(--black); }
.filter-checkbox {
  width: 16px; height: 16px;
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition-fast);
}
.filter-option.checked .filter-checkbox {
  background: var(--blue);
  border-color: var(--blue);
}
.filter-option.checked .filter-checkbox::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.65rem;
}
.filter-option-count {
  margin-left: auto;
  font-size: 0.65rem;
  color: var(--gray-400);
}
.price-range-wrap { margin-top: 8px; }
.price-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 2px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) var(--val, 70%), var(--gray-200) var(--val, 70%));
  outline: none;
  margin-bottom: 10px;
}
.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--blue);
}
.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--gray-600);
}
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.color-swatch {
  width: 24px; height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
}
.color-swatch.active { border-color: var(--black); }
.color-swatch:hover { border-color: var(--gray-400); }

/* Products toolbar */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
  flex-wrap: wrap;
}
.products-count {
  font-size: 0.72rem;
  color: var(--gray-400);
  letter-spacing: 0.1em;
}
.toolbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sort-select {
  background: transparent;
  border: 1px solid var(--gray-200);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  outline: none;
  cursor: pointer;
  color: var(--black);
  font-family: inherit;
  min-width: 180px;
}
.view-toggle {
  display: flex;
  gap: 4px;
}
.view-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  background: transparent;
  color: var(--gray-400);
  transition: all var(--transition-fast);
}
.view-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--gray-200);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.page-btn {
  width: 42px; height: 42px;
  border: 1px solid var(--gray-200);
  background: transparent;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-family: inherit;
  color: var(--black);
}
.page-btn:hover, .page-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.page-btn.dots { cursor: default; border-color: transparent; }
.page-btn.dots:hover { background: transparent; color: var(--black); border-color: transparent; }

/* ── Product Detail ─────────────────────────────────────────── */
.product-detail-section {
  padding: clamp(100px, 12vw, 160px) clamp(20px, 5vw, 80px) 80px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1600px;
  margin: 0 auto;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.gallery-main {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gray-100);
  cursor: zoom-in;
  margin-bottom: 12px;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-main.zoomed { cursor: zoom-out; }
.gallery-main.zoomed img { transform: scale(1.8); transform-origin: var(--mx, 50%) var(--my, 50%); }
.gallery-zoom-btn {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast);
}
.gallery-zoom-btn:hover { background: var(--black); }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
@media (max-width: 768px) {
  .gallery-thumbs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding: 0 16px;
  }
  .gallery-thumbs::-webkit-scrollbar { display: none; }
  .gallery-thumb {
    flex: 0 0 68px;
    scroll-snap-align: start;
    width: 68px; height: 68px;
    border-radius: 8px;
  }
  .gallery-main { border-radius: 0; margin-bottom: 8px; }
}
.gallery-thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gray-100);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
}
.gallery-thumb.active { border-color: var(--blue); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info {}
.product-info .breadcrumb { justify-content: flex-start; margin-bottom: 24px; }
.product-info .breadcrumb a, .product-info .breadcrumb span { color: var(--gray-400); }
.product-info .breadcrumb .sep { color: var(--gray-200); }
.product-info .breadcrumb .current { color: var(--black); }
.product-detail-category {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.rating-stars { display: flex; gap: 4px; }
.rating-stars .star { font-size: 0.8rem; }
.rating-text { font-size: 0.72rem; color: var(--gray-400); letter-spacing: 0.05em; }
.rating-link { font-size: 0.72rem; color: var(--blue); letter-spacing: 0.05em; text-decoration: underline; }
.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}
.price-main {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--black);
}
.price-original-detail {
  font-size: 1.2rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.price-save {
  font-size: 0.72rem;
  background: var(--blue);
  color: var(--white);
  padding: 4px 12px;
  letter-spacing: 0.1em;
}
.product-detail-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}
.product-options { margin-bottom: 28px; }
.option-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.option-label span { font-weight: 300; color: var(--gray-600); text-transform: none; letter-spacing: 0.05em; }
.option-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.size-option, .material-option {
  padding: 9px 20px;
  border: 1px solid var(--gray-200);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--black);
  background: transparent;
  font-family: inherit;
}
.size-option:hover, .material-option:hover { border-color: var(--black); }
.size-option.active, .material-option.active { border-color: var(--black); background: var(--black); color: var(--white); }
.size-option.unavailable { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.add-to-cart-section {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  height: 52px;
}
.qty-btn {
  width: 44px; height: 100%;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  font-family: inherit;
}
.qty-btn:hover { background: var(--gray-100); }
.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  height: 100%;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  color: var(--black);
}
.add-to-cart-btn {
  flex: 1;
  min-width: 200px;
}
.wishlist-action {
  width: 52px; height: 52px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  color: var(--black);
  background: transparent;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-fast);
}
.wishlist-action:hover, .wishlist-action.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--off-white);
  font-size: 0.78rem;
}
.product-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-600);
}
.product-meta-item strong { color: var(--black); min-width: 100px; font-weight: 500; }
.product-meta-item .status-in { color: #2e7d32; }
.product-meta-item .status-low { color: #e65100; }
.product-accordions { border-top: 1px solid var(--gray-200); }
.product-accordion {
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.accordion-icon {
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
  color: var(--gray-400);
}
.accordion-header.open .accordion-icon { transform: rotate(45deg); color: var(--black); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.accordion-body.open { max-height: 500px; }
.accordion-content {
  padding: 0 0 20px;
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.accordion-content ul { padding-left: 20px; list-style: disc; }
.accordion-content li { margin-bottom: 6px; }

/* Upsells */
.upsell-section {
  padding: 60px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--gray-200);
  background: var(--off-white);
}
.upsell-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 32px;
  color: var(--black);
}
.upsell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Reviews Section */
.reviews-section {
  padding: 80px clamp(20px, 5vw, 80px);
  max-width: 1600px;
  margin: 0 auto;
}
.reviews-summary {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
}
.reviews-score {
  text-align: center;
}
.score-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--black);
}
.score-stars { display: flex; justify-content: center; gap: 4px; margin: 8px 0; }
.score-total { font-size: 0.7rem; color: var(--gray-400); letter-spacing: 0.1em; }
.reviews-bars { display: flex; flex-direction: column; gap: 8px; }
.review-bar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  color: var(--gray-600);
}
.review-bar-track {
  flex: 1;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}
.review-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.8s ease;
}
.review-bar-pct { min-width: 35px; text-align: right; }
.review-card {
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.82rem; font-weight: 500; }
.reviewer-date { font-size: 0.65rem; color: var(--gray-400); letter-spacing: 0.08em; margin-top: 2px; }
.review-rating { display: flex; gap: 3px; }
.review-title { font-weight: 500; font-size: 0.88rem; margin-bottom: 8px; }
.review-body { font-size: 0.82rem; color: var(--gray-600); line-height: 1.7; }
.verified-badge {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: #2e7d32;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Cart Page ──────────────────────────────────────────────── */
.cart-section {
  padding: clamp(100px, 12vw, 160px) clamp(20px, 5vw, 80px) 80px;
  max-width: 1600px;
  margin: 0 auto;
}
.cart-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 8px;
}
.cart-subtitle { font-size: 0.75rem; color: var(--gray-400); letter-spacing: 0.15em; margin-bottom: 48px; }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.cart-header-row {
  display: grid;
  grid-template-columns: 1fr 120px 120px 100px 40px;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-400);
  align-items: center;
}
.cart-items {}
.cart-item {
  display: grid;
  grid-template-columns: 1fr 120px 120px 100px 40px;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
  animation: itemSlideIn 0.3s ease;
}
@keyframes itemSlideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
.cart-item-product { display: flex; align-items: center; gap: 20px; }
.cart-item-img {
  width: 90px; height: 90px;
  object-fit: cover;
  background: var(--gray-100);
  flex-shrink: 0;
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
}
.cart-item-variant { font-size: 0.68rem; color: var(--gray-400); letter-spacing: 0.1em; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-remove:hover { color: var(--black); }
.cart-item-price { font-size: 0.88rem; font-weight: 500; color: var(--black); }
.cart-item-total { font-size: 0.88rem; font-weight: 600; color: var(--black); }
.cart-item .qty-control { height: 44px; }
.cart-item .qty-btn { width: 38px; font-size: 0.9rem; }
.cart-item .qty-input { width: 42px; font-size: 0.82rem; }

.cart-empty {
  text-align: center;
  padding: 80px 40px;
}
.cart-empty-icon { font-size: 3rem; color: var(--gray-200); margin-bottom: 24px; }
.cart-empty-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 12px;
}
.cart-empty-desc { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 32px; line-height: 1.7; }

/* Order Summary */
.order-summary {
  background: var(--off-white);
  padding: 36px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.order-summary-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  margin-bottom: 14px;
  color: var(--gray-600);
}
.summary-row.total {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--gray-200);
}
.summary-row .label { letter-spacing: 0.05em; }
.summary-row .value { font-family: var(--font-display); font-size: 1.1em; }
.summary-row.total .value { font-size: 1.4rem; }
.promo-input-wrap {
  display: flex;
  margin: 20px 0;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.promo-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  outline: none;
  font-family: inherit;
  text-transform: uppercase;
}
.promo-input::placeholder { letter-spacing: 0.15em; font-size: 0.7rem; }
.promo-apply {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 18px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition-fast);
}
.promo-apply:hover { background: var(--blue); }
.order-summary .btn { width: 100%; justify-content: center; margin-top: 16px; }
.payment-logos {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

/* Checkout Form */
.checkout-section {
  padding: 80px clamp(20px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}
.checkout-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
.form-input {
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  font-size: 0.85rem;
  outline: none;
  background: var(--white);
  color: var(--black);
  font-family: inherit;
  transition: border-color var(--transition-fast);
  letter-spacing: 0.03em;
}
.form-input:focus { border-color: var(--blue); }
.form-select {
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  font-size: 0.85rem;
  outline: none;
  background: var(--white);
  color: var(--black);
  font-family: inherit;
  transition: border-color var(--transition-fast);
  cursor: pointer;
  letter-spacing: 0.03em;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9890' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-select:focus { border-color: var(--blue); }
.payment-methods { margin: 28px 0; }
.payment-tab-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.payment-tab {
  flex: 1;
  min-width: 100px;
  padding: 14px 20px;
  border: 1px solid var(--gray-200);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-600);
}
.payment-tab.active { border-color: var(--black); background: var(--black); color: var(--white); }
.payment-tab:hover:not(.active) { border-color: var(--gray-400); color: var(--black); }
.card-icons { display: flex; gap: 6px; margin-bottom: 16px; }
.card-icon { font-size: 1.5rem; }
.card-fields { display: flex; flex-direction: column; gap: 14px; }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.paypal-placeholder, .stripe-placeholder {
  background: var(--off-white);
  border: 1px dashed var(--gray-200);
  padding: 24px;
  text-align: center;
}
.paypal-placeholder img, .stripe-placeholder img { height: 32px; margin: 0 auto 12px; }
.placeholder-note { font-size: 0.72rem; color: var(--gray-400); letter-spacing: 0.05em; }
.secure-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.65rem;
  color: var(--gray-400);
  letter-spacing: 0.08em;
}
.secure-icon { color: var(--blue); }
.checkout-step-divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 28px 0;
}

/* ── Exit Intent Popup ──────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.popup-overlay.visible { opacity: 1; visibility: visible; }
.exit-popup {
  background: var(--black);
  max-width: 640px;
  width: 100%;
  padding: 60px;
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
.popup-overlay.visible .exit-popup {
  transform: scale(1) translateY(0);
}
.exit-popup::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,122,193,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.popup-close {
  position: absolute;
  top: 20px; right: 20px;
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
  padding: 8px;
}
.popup-close:hover { color: var(--white); }
.popup-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.popup-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.popup-title em { font-style: italic; color: var(--gold); }
.popup-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.popup-code-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}
.popup-code {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold);
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  font-family: monospace;
  flex: 1;
}
.copy-code-btn {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition-fast);
}
.copy-code-btn:hover { background: var(--blue-dark); }
.popup-image {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.popup-dismiss {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: underline;
  transition: color var(--transition-fast);
}
.popup-dismiss:hover { color: rgba(255,255,255,0.6); }

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(440px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 9001;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 60px rgba(0,0,0,0.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.drawer-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
}
.drawer-count { font-size: 0.7rem; color: var(--gray-400); letter-spacing: 0.1em; margin-top: 2px; }
.drawer-close {
  font-size: 1.1rem;
  color: var(--gray-400);
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  transition: color var(--transition-fast);
}
.drawer-close:hover { color: var(--black); }
.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.drawer-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  animation: itemSlideIn 0.3s ease;
}
.drawer-item-img {
  width: 80px; height: 80px;
  object-fit: cover;
  background: var(--gray-100);
  flex-shrink: 0;
}
.drawer-item-info { flex: 1; min-width: 0; }
.drawer-item-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.drawer-item-variant { font-size: 0.65rem; color: var(--gray-400); letter-spacing: 0.08em; margin-bottom: 8px; }
.drawer-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-item-price { font-size: 0.88rem; font-weight: 600; color: var(--black); }
.drawer-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gray-200);
}
.drawer-qty button {
  width: 28px; height: 28px;
  background: transparent;
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background var(--transition-fast);
}
.drawer-qty button:hover { background: var(--gray-100); }
.drawer-qty span {
  width: 32px;
  text-align: center;
  font-size: 0.78rem;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  padding: 0 4px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-item-remove {
  color: var(--gray-400);
  font-size: 0.8rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
  transition: color var(--transition-fast);
  align-self: flex-start;
}
.drawer-item-remove:hover { color: var(--black); }
.drawer-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.drawer-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.88rem;
  font-weight: 500;
}
.drawer-note { font-size: 0.65rem; color: var(--gray-400); text-align: center; margin-top: 12px; letter-spacing: 0.05em; }
.drawer-footer .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.drawer-empty {
  text-align: center;
  padding: 60px 20px;
}
.drawer-empty-icon { font-size: 2.5rem; color: var(--gray-200); margin-bottom: 16px; }
.drawer-empty-text { font-size: 0.82rem; color: var(--gray-400); letter-spacing: 0.05em; }

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  pointer-events: none;
}
.toast {
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  max-width: 400px;
  animation: toastIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.toast.success { border-left: 3px solid var(--gold); }
.toast.error { border-left: 3px solid #e53935; }
.toast.info { border-left: 3px solid var(--blue); }
.toast.hide { animation: toastOut 0.3s ease forwards; }
.toast-icon { font-size: 0.9rem; flex-shrink: 0; }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(8px); }
}

/* ── Scroll Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Utility ────────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 0; }
.divider-dark { border-color: rgba(255,255,255,0.08); }
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── Responsive ─────────────────────────────────────────────── */

/* ─ 1200px ─ */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .product-detail-grid { gap: 48px; }
  .upsell-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─ 1024px ─ */
@media (max-width: 1024px) {
  .products-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; display: none; }
  .filters-sidebar.mobile-open {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 800;
    background: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 28px 24px 40px;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
    max-height: 80vh;
    overflow-y: auto;
  }
  .mobile-filter-btn { display: flex; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .reviews-summary { grid-template-columns: 1fr; gap: 32px; }
  .cart-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ─ 768px ─ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Header */
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .announcement-bar {
    font-size: 0.62rem;
    padding: 8px 16px;
    white-space: nowrap;
    overflow: hidden;
  }
  .announcement-bar span {
    display: inline-block;
    animation: marquee 18s linear infinite;
  }
  @keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Hero */
  .hero { min-height: 100svh; align-items: center; padding-top: 0; padding-bottom: 0; }
  .hero-bg {
    background:
      linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.25) 100%),
      radial-gradient(ellipse 120% 80% at 50% 50%, rgba(30,122,193,0.1) 0%, transparent 70%),
      var(--black);
  }
  .hero-image {
    width: 100%;
    opacity: 0.35;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .hero-content {
    text-align: center;
    padding: 0 clamp(20px, 6vw, 40px);
    max-width: 100%;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-actions { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-scroll { display: none; }

  /* Product grid */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .product-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }

  /* Product card — always show quick-add on touch */
  .product-overlay { opacity: 1 !important; background: rgba(0,0,0,0); }
  .product-overlay .quick-add {
    transform: translateY(0) !important;
    opacity: 1 !important;
    position: absolute;
    bottom: 12px;
    left: 12px; right: 12px;
    padding: 10px 16px;
    font-size: 0.6rem;
    background: var(--white);
    color: var(--black);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    text-align: center;
    justify-content: center;
  }
  .product-overlay .wishlist-btn {
    transform: scale(1) !important;
    opacity: 1 !important;
    top: 10px; right: 10px;
    width: 32px; height: 32px;
    font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .product-name { font-size: 0.9rem; }
  .product-price { font-size: 0.82rem; }

  /* Collections — horizontal scroll */
  .collections-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 16px;
    grid-template-columns: unset;
  }
  .collections-grid::-webkit-scrollbar { display: none; }
  .collection-card {
    flex: 0 0 72vw;
    scroll-snap-align: start;
    aspect-ratio: 3/4;
  }

  /* Testimonials */
  .testimonial-card { flex: 0 0 calc(88vw - 40px); }

  /* Trust strip */
  .trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 28px 20px;
  }
  .trust-item { min-width: unset; flex: unset; }

  /* Promo */
  .promo-banner { flex-direction: column; gap: 28px; }
  .countdown { justify-content: flex-start; }
  .countdown-num { font-size: 2.2rem; }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
    border: none;
    gap: 0;
    max-width: 100%;
  }
  .newsletter-form input {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px 4px 0 0;
    padding: 16px 20px;
  }
  .newsletter-form button {
    border-radius: 0 0 4px 4px;
    padding: 16px 24px;
    width: 100%;
  }

  /* Products page */
  .products-toolbar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .toolbar-right { width: 100%; justify-content: space-between; }
  .sort-select { flex: 1; }

  /* Product detail */
  .product-detail-section {
    padding: calc(var(--nav-h) + 20px) 0 120px;
  }
  .product-detail-grid { gap: 0; }
  .gallery-main { border-radius: 0; }
  .gallery-thumbs { padding: 0 16px; }
  .product-info {
    padding: 24px 20px;
  }
  .product-detail-name { font-size: clamp(1.6rem, 5vw, 2.4rem); }

  /* Cart */
  .cart-header-row { display: none; }
  .cart-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 0;
  }
  .cart-item-product { flex-direction: row; }
  .cart-item-img { width: 80px; height: 80px; }
  .cart-layout { gap: 32px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  /* Exit popup */
  .exit-popup { grid-template-columns: 1fr; padding: 36px 24px; }
  .exit-popup .popup-image { display: none; }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }
  .card-row { grid-template-columns: 1fr; }
  .upsell-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Section padding */
  section { padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 32px); }
}

/* ─ 480px ─ */
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-title { font-size: 2.8rem; }
  .hero-actions .btn { width: 100%; justify-content: center; font-size: 0.65rem; padding: 14px 20px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .add-to-cart-section { flex-direction: column; }
  .add-to-cart-btn { width: 100%; justify-content: center; }
  .cart-layout { gap: 24px; }
  .collection-card { flex: 0 0 80vw; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .product-name { font-size: 0.82rem; }
  .product-category-tag { font-size: 0.55rem; }
  .order-summary { padding: 24px 16px; }
  .product-meta { padding: 16px; }
  .footer-brand .site-logo img { height: 44px; }
}

/* ── Sticky mobile add-to-cart bar (product detail) ─────────── */
@media (max-width: 768px) {
  .sticky-mobile-atc {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 700;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 12px 16px;
    gap: 12px;
    align-items: center;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: transform var(--transition);
  }
  .sticky-mobile-atc.hidden { transform: translateY(100%); }
  .sticky-mobile-atc-name {
    flex: 1;
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--black);
  }
  .sticky-mobile-atc-price {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--black);
    flex-shrink: 0;
  }
  .sticky-mobile-atc .btn {
    flex-shrink: 0;
    padding: 12px 20px;
    font-size: 0.62rem;
  }
  /* Hide sticky bar on desktop */
  #sticky-atc-bar { display: none; }
}

/* ── Mobile filter overlay handle ──────────────────────────── */
@media (max-width: 1024px) {
  .filter-sheet-handle {
    width: 40px; height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    margin: 0 auto 20px;
  }
}

/* ── Smooth scroll padding for anchor links ─────────────────── */
html { scroll-padding-top: calc(var(--nav-h) + 16px); }

/* ── Touch device improvements ──────────────────────────────── */
@media (hover: none) {
  .product-card:hover .product-card-image img { transform: none; }
  .collection-card:hover img { transform: none; }
  .main-nav a::after { display: none; }
}
