/* ============================================
   LUXE — Premium Fashion Store
   Color palette: Black · White · Gold
   ============================================ */

:root {
  --black:    #0a0a0a;
  --black-2:  #111111;
  --black-3:  #1a1a1a;
  --white:    #fafafa;
  --white-2:  #f0ece4;
  --gold:     #c9a84c;
  --gold-2:   #b8932e;
  --gold-3:   #e8c96a;
  --gold-lt:  #f0dea0;
  --grey:     #888888;
  --grey-2:   #555555;
  --border:   rgba(201, 168, 76, 0.2);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad { padding: 100px 0; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--black);
  color: var(--gold);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav-right { justify-content: flex-end; gap: 16px; }

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.25s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--gold-2); }
.nav-link:hover::after { width: 100%; }

.nav-logo a {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--black);
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-logo a:hover { color: var(--gold-2); }

.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--black);
  border-radius: 50%;
  transition: color 0.25s, background 0.25s;
}

.icon-btn:hover {
  color: var(--gold-2);
  background: rgba(201, 168, 76, 0.08);
}

.cart-count, .wishlist-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
}

.cart-count.visible, .wishlist-count.visible {
  opacity: 1;
  transform: scale(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--black);
  z-index: 990;
  padding: 0 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
}

.mobile-menu.open {
  max-height: 400px;
  padding: 24px 40px;
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }

.mobile-menu li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}

.mobile-menu li a:hover { color: var(--gold); }

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-close {
  position: absolute;
  top: 28px; right: 40px;
  color: var(--grey);
  transition: color 0.2s;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}

.search-close:hover { color: var(--white); }

.search-inner {
  width: 100%;
  max-width: 640px;
  padding: 0 40px;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}

.search-overlay.open .search-inner { transform: translateY(0); }

.search-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}

.search-input-wrap {
  position: relative;
  border-bottom: 1px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.search-input-wrap svg { color: var(--gold); flex-shrink: 0; }

#search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  caret-color: var(--gold);
}

#search-input::placeholder { color: rgba(255,255,255,0.2); }

.search-suggestions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-suggestions > span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}

.suggestion-tag {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 11px;
  color: var(--white);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  letter-spacing: 0.05em;
}

.suggestion-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 95vw;
  background: var(--white);
  z-index: 1900;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cart-header h3 span {
  font-size: 16px;
  color: var(--grey);
  font-family: var(--font-sans);
  font-weight: 400;
}

.cart-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}

.cart-close:hover { color: var(--black); background: rgba(0,0,0,0.05); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 12px;
  color: var(--grey);
  text-align: center;
}

.cart-empty svg { opacity: 0.3; }
.cart-empty p { font-family: var(--font-serif); font-size: 18px; }
.cart-empty span { font-size: 12px; opacity: 0.7; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  animation: slideIn 0.3s var(--ease);
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cart-item-thumb {
  width: 72px;
  height: 88px;
  border-radius: 4px;
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  flex-shrink: 0;
}

.cart-item-details { flex: 1; }

.cart-item-cat {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 4px;
}

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
}

.cart-item-line-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* Quantity control */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 2px;
  overflow: hidden;
}

.qty-btn {
  width: 30px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.qty-btn:hover {
  background: var(--black);
  color: var(--white);
}

.qty-value {
  width: 32px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  border-left: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  line-height: 28px;
  letter-spacing: 0.05em;
}

.cart-item-remove {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  color: #cc4444;
  background: rgba(204,68,68,0.06);
}

/* Shipping progress */
.cart-shipping-progress {
  padding: 12px 32px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: var(--white-2);
}

#shipping-progress-msg {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--grey-2);
  margin-bottom: 8px;
  font-weight: 500;
}

.shipping-bar {
  height: 2px;
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.shipping-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.5s var(--ease);
}

/* Cart header actions */
.cart-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-clear-btn {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 2px;
  transition: color 0.2s;
}

.cart-clear-btn:hover { color: #cc4444; }

/* Cart footer */
.cart-footer {
  padding: 20px 32px 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: var(--white-2);
}

.cart-breakdown {
  margin-bottom: 16px;
}

.cart-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 12px;
  color: var(--grey-2);
  letter-spacing: 0.04em;
}

.cart-breakdown-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 8px 0;
}

.cart-total-row {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 8px;
}

.cart-total-row span:last-child {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.full-width { width: 100%; }

.cart-note {
  text-align: center;
  font-size: 10px;
  color: var(--grey);
  margin-top: 10px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* Add-to-cart "in cart" state */
.add-to-cart.in-cart {
  background: var(--gold);
  color: var(--black);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: var(--black);
  transform: translateY(-1px);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background: transparent;
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover { background: var(--black); color: var(--white); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}

.hero-image-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.hero-img {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-img-1 {
  background: linear-gradient(170deg, #1a1208 0%, #2d2010 50%, #0d0a04 100%);
  grid-column: 1 / 3;
}

.hero-img-2 {
  background: linear-gradient(170deg, #111 0%, #1c1c1c 50%, #080808 100%);
}

.hero-img-3 {
  display: none;
}

/* Decorative gold shapes in hero bg */
.hero-img-1::before {
  content: '';
  position: absolute;
  top: 15%; right: 30%;
  width: 200px; height: 400px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 100px;
  transform: rotate(15deg);
}

.hero-img-1::after {
  content: '';
  position: absolute;
  bottom: 10%; right: 25%;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title span { display: block; }
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 48px; left: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.3);
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrapper {
  background: var(--black);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 20px;
  opacity: 0.85;
}

.marquee-dot {
  color: var(--gold) !important;
  opacity: 1 !important;
  padding: 0 4px !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 12px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories { background: var(--white-2); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.category-img {
  height: 480px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease);
}

.category-card:hover .category-img { transform: scale(1.03); }

/* Decorative patterns */
.cat-pattern {
  position: absolute;
  inset: 0;
}

.cat-pattern-1::before {
  content: '';
  position: absolute;
  top: 20%; left: 50%; transform: translate(-50%,-50%);
  width: 120px; height: 220px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 60px;
}

.cat-pattern-1::after {
  content: '';
  position: absolute;
  bottom: 25%; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
}

.cat-pattern-2::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 100px; height: 170px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
}

.cat-pattern-3::before {
  content: '';
  position: absolute;
  top: 30%; right: 20%;
  width: 80px; height: 80px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50%;
}

.category-info {
  padding: 24px 0 4px;
}

.category-info h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}

.cat-link {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  transition: letter-spacing 0.3s;
}

.cat-link:hover { letter-spacing: 0.25em; }

.cat-link span {
  display: inline-block;
  transition: transform 0.2s;
}

.cat-link:hover span { transform: translateX(4px); }

/* ============================================
   PRODUCTS
   ============================================ */
.filter-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 0;
}

.filter-tab {
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  transition: color 0.25s;
}

.filter-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.filter-tab.active, .filter-tab:hover { color: var(--black); }
.filter-tab.active::after { transform: scaleX(1); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}

.product-card {
  cursor: pointer;
}

.product-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--white-2);
}

.product-img {
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-img { transform: scale(1.04); }

/* Product silhouettes (CSS art) */
.product-silhouette {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.silhouette-dress::before {
  content: '';
  width: 70px; height: 180px;
  background: rgba(201,168,76,0.12);
  border-radius: 35px 35px 20px 20px;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.2);
}

.silhouette-suit::before {
  content: '';
  width: 80px; height: 160px;
  background: rgba(201,168,76,0.08);
  border-radius: 8px 8px 4px 4px;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.15);
}

.silhouette-coat::before {
  content: '';
  width: 90px; height: 190px;
  background: rgba(10,10,10,0.12);
  border-radius: 12px 12px 6px 6px;
  box-shadow: inset 0 0 0 1px rgba(10,10,10,0.2);
}

.silhouette-bag::before {
  content: '';
  width: 100px; height: 80px;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.3),
              0 -12px 0 rgba(201,168,76,0.1);
}

.silhouette-shirt::before {
  content: '';
  width: 80px; height: 100px;
  background: rgba(201,168,76,0.1);
  border-radius: 6px 6px 2px 2px;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.18);
}

.silhouette-blouse::before {
  content: '';
  width: 70px; height: 90px;
  background: rgba(201,168,76,0.08);
  border-radius: 12px 12px 4px 4px;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.15);
}

.silhouette-watch::before {
  content: '';
  width: 60px; height: 60px;
  background: rgba(0,0,0,0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.25),
              0 0 0 8px rgba(0,0,0,0.06);
}

.silhouette-trousers::before {
  content: '';
  width: 80px; height: 160px;
  background: rgba(201,168,76,0.06);
  border-radius: 6px 6px 2px 2px;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.12);
}

.product-actions {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.action-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

.action-btn.wishlisted {
  background: var(--gold);
  color: var(--black);
}

.action-btn.wishlisted svg { fill: var(--black); }

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 12px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
}

.badge-gold {
  background: var(--gold);
  color: var(--black);
}

.product-info { padding: 0 4px; }

.product-category {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 6px;
  font-weight: 600;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.04em;
}

.add-to-cart {
  padding: 9px 18px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.15s;
  white-space: nowrap;
}

.add-to-cart:hover {
  background: var(--gold-2);
  color: var(--black);
}

.add-to-cart:active { transform: scale(0.96); }

.load-more-wrap {
  text-align: center;
  margin-top: 64px;
}

/* ============================================
   EDITORIAL
   ============================================ */
.editorial {
  background: var(--black);
  overflow: hidden;
}

.editorial-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.editorial-text .section-eyebrow { color: var(--gold); }

.editorial-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.editorial-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.editorial-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 440px;
}

.editorial-visual {
  position: relative;
}

.editorial-img-main {
  height: 560px;
  background: linear-gradient(160deg, #1a1208 0%, #2d2010 50%, #0d0a04 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.editorial-img-main::before {
  content: '';
  position: absolute;
  top: 15%; left: 50%; transform: translateX(-50%);
  width: 140px; height: 280px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 70px;
}

.editorial-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
}

.editorial-img-accent {
  position: absolute;
  bottom: -24px; left: -40px;
  width: 180px;
  padding: 28px 24px;
  background: var(--gold);
  border-radius: 4px;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
}

/* ============================================
   SERVICES STRIP
   ============================================ */
.services-strip {
  padding: 64px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: var(--white-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

.service-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.service-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2);
}

.service-item h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.service-item p {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter { background: var(--black); text-align: center; }

.newsletter-inner { max-width: 560px; margin: 0 auto; }

.newsletter-inner .section-eyebrow { color: var(--gold); }

.newsletter-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter-inner > p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-form .btn-primary {
  border-radius: 0;
  border: none;
  background: var(--gold);
  color: var(--black);
  padding: 16px 28px;
}

.newsletter-form .btn-primary:hover {
  background: var(--gold-3);
  transform: none;
}

.newsletter-note {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black-2);
  color: var(--white);
  padding: 72px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 220px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--gold); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 2px;
  border-left: 3px solid var(--gold);
  font-size: 12px;
  letter-spacing: 0.06em;
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  transition: transform 0.4s var(--ease-out);
  white-space: nowrap;
  pointer-events: none;
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid .category-card:last-child { display: none; }
  .editorial-inner { gap: 48px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .navbar { padding: 0 24px; }
  .nav-left { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-inner { grid-template-columns: 1fr; gap: 48px; }
  .editorial-img-accent { left: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 0 40px; }
  .hero-scroll-indicator { left: 40px; }
}

@media (max-width: 600px) {
  .section-pad { padding: 64px 0; }
  .container { padding: 0 20px; }
  .navbar { padding: 0 20px; }
  .hero-content { padding: 0 24px; }
  .hero-scroll-indicator { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .product-img { height: 260px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-img { height: 300px; }
  .category-grid .category-card:last-child { display: block; }
  .services-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .announcement-bar { font-size: 9px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-bottom: 1px solid rgba(201,168,76,0.3); }
  .newsletter-form .btn-primary { border-radius: 0; }
  .editorial-inner { padding: 0 20px; }
}

/* ============================================
   PRODUCT DETAIL MODAL
   ============================================ */
@keyframes shakeX {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-panel {
  position: relative;
  background: var(--white);
  border-radius: 4px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(32px) scale(0.98);
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.modal-overlay.open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 10;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  color: var(--black);
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.modal-close:hover {
  background: var(--black);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

/* Image column */
.modal-image-col {
  position: relative;
  overflow: hidden;
  border-radius: 4px 0 0 4px;
}

.modal-image {
  height: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease);
}

.modal-silhouette {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-silhouette::before {
  content: '';
  display: block;
  width: 120px; height: 280px;
  border-radius: 60px;
  background: rgba(201,168,76,0.12);
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.25);
}

.modal-silhouette.sil-suit::before { border-radius: 12px; height: 240px; }
.modal-silhouette.sil-bag::before  { border-radius: 12px; width: 160px; height: 120px; }
.modal-silhouette.sil-watch::before { border-radius: 50%; width: 100px; height: 100px; }
.modal-silhouette.sil-accessory::before { border-radius: 50%; width: 80px; height: 80px; }

.modal-image-badges {
  position: absolute;
  top: 20px; left: 20px;
}

.modal-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
}

.modal-badge.badge-gold {
  background: var(--gold);
  color: var(--black);
}

/* Details column */
.modal-details-col {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.modal-category {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 10px;
}

.modal-name {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.modal-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.modal-description {
  font-size: 13px;
  line-height: 1.75;
  color: var(--grey-2);
  margin-bottom: 28px;
  font-weight: 300;
}

/* Sections */
.modal-section {
  margin-bottom: 24px;
}

.modal-section-label {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
}

.modal-selected-color,
.modal-selected-size {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--grey);
  text-transform: none;
}

/* Color swatches */
.modal-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s;
  outline: none;
}

.swatch::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.swatch:hover { transform: scale(1.1); }

.swatch.selected::after {
  border-color: var(--gold);
}

.swatch.light-swatch::after {
  border-color: transparent;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.15) inset;
}

.swatch.light-swatch.selected::after {
  border-color: var(--gold-2);
}

/* Size buttons */
.modal-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  min-width: 52px;
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--black);
  background: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-align: center;
}

.size-btn:hover {
  border-color: var(--black);
}

.size-btn.selected {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.size-btn.size-one { min-width: 80px; }

.modal-size-guide {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.modal-size-guide a {
  color: var(--gold-2);
  font-weight: 600;
  transition: letter-spacing 0.2s;
}

.modal-size-guide a:hover { letter-spacing: 0.15em; }

/* Qty + Add to cart row */
.modal-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  margin-top: 4px;
}

.modal-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.modal-qty-btn {
  width: 40px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--black);
  background: var(--white);
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.modal-qty-btn:hover {
  background: var(--black);
  color: var(--white);
}

.modal-qty-val {
  width: 44px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  border-left: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  line-height: 48px;
  letter-spacing: 0.05em;
}

.modal-add-btn {
  flex: 1;
  height: 48px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.15s;
}

.modal-add-btn:hover {
  background: var(--gold-2);
  color: var(--black);
}

.modal-add-btn:active { transform: scale(0.98); }

.modal-add-btn.added {
  background: var(--gold);
  color: var(--black);
}

/* Trust signals */
.modal-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.modal-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.03em;
}

.modal-trust-item svg { color: var(--gold-2); flex-shrink: 0; }

/* Cursor hint on product cards */
.product-card { cursor: pointer; }

/* ---- Modal responsive ---- */
@media (max-width: 720px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-panel {
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }
  .modal-overlay.open .modal-panel { transform: translateY(0); }
  .modal-body { grid-template-columns: 1fr; }
  .modal-image { min-height: 280px; border-radius: 16px 16px 0 0; }
  .modal-image-col { border-radius: 16px 16px 0 0; }
  .modal-details-col { padding: 28px 24px 40px; }
  .modal-name { font-size: 24px; }
}
