/* ============================================================
   KUKS & CO — Main Stylesheet
   Minimal Luxury · ESTD 2025
   ============================================================ */

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

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy:        #1C3163;
  --midnight:    #00071B;
  --champagne:   #D6B585;
  --champagne-lt:#EDD9AF;
  --offwhite:    #FEFFFF;
  --cream:       #F8F5EE;

  /* UI Grays */
  --gray-50:     #F9F8F6;
  --gray-100:    #F0EEE8;
  --gray-200:    #E2DFD6;
  --gray-300:    #C8C4BA;
  --gray-400:    #9D9990;
  --gray-500:    #6E6B63;
  --gray-700:    #3D3B35;
  --gray-900:    #1A1916;

  /* Semantic */
  --success:     #2D7A4F;
  --warning:     #C17B1A;
  --danger:      #C0392B;
  --info:        #1C3163;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing Scale */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,7,27,0.06);
  --shadow-sm: 0 2px 8px rgba(0,7,27,0.08);
  --shadow-md: 0 4px 20px rgba(0,7,27,0.10);
  --shadow-lg: 0 8px 40px rgba(0,7,27,0.14);
  --shadow-xl: 0 16px 60px rgba(0,7,27,0.18);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;

  /* Layout */
  --container-max: 1360px;
  --container-pad: clamp(16px, 4vw, 60px);

  /* Nav */
  --nav-height: 72px;
  --nav-bg: rgba(255,254,255,0.96);
}

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

/* ── Typography ─────────────────────────────────────────────── */
.t-display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.t-heading {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}
.t-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.t-body { font-family: var(--font-body); font-weight: 300; line-height: 1.7; }

h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.1; }
h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; }
h3 { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 400; }
h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 500; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section { padding: var(--space-16) 0; }
.section-sm { padding: var(--space-10) 0; }

/* ── Section Header ─────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-10);
  gap: var(--space-4);
}
.section-header__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: var(--space-2);
}
.section-header h2 { color: var(--midnight); }
.section-header__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.section-header__link:hover { color: var(--champagne); border-color: var(--champagne); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--midnight);
  color: var(--offwhite);
}
.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--midnight);
  border: 1px solid var(--midnight);
}
.btn-outline:hover {
  background: var(--midnight);
  color: var(--offwhite);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--champagne);
  color: var(--midnight);
}
.btn-gold:hover {
  background: var(--champagne-lt);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: 8px 20px; font-size: 12px; }
.btn-lg { padding: 16px 40px; font-size: 14px; }
.btn-icon { padding: 10px; width: 40px; height: 40px; justify-content: center; }

/* ── Badge ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.badge-navy { background: var(--navy); color: var(--offwhite); }
.badge-gold { background: var(--champagne); color: var(--midnight); }
.badge-success { background: #D4EDDA; color: var(--success); }
.badge-warning { background: #FFF3CD; color: var(--warning); }
.badge-danger { background: #FDECEA; color: var(--danger); }
.badge-gray { background: var(--gray-100); color: var(--gray-500); }

/* ── Card ───────────────────────────────────────────────────── */
.card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-body { padding: var(--space-6); }

/* ── Product Card ───────────────────────────────────────────── */
.product-card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-base) var(--ease);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-100);
}
.product-card__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.product-card:hover .product-card__image-wrap img { transform: scale(1.06); }
.product-card__actions {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--dur-base) var(--ease);
}
.product-card:hover .product-card__actions { opacity: 1; transform: translateX(0); }
.product-card__action-btn {
  width: 36px; height: 36px;
  background: var(--offwhite);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.product-card__action-btn:hover { background: var(--midnight); color: var(--offwhite); transform: scale(1.1); }
.product-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
}
.product-card__info { padding: var(--space-4); }
.product-card__brand {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--midnight);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-card__price-row { display: flex; align-items: center; gap: var(--space-2); }
.product-card__price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--midnight);
}
.product-card__price-original {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.product-card__discount { font-size: 11px; font-weight: 500; color: var(--success); }
.product-card__rating {
  display: flex; align-items: center; gap: 4px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--gray-500);
}
.product-card__stars { color: var(--champagne); font-size: 12px; }

/* ── Form Elements ──────────────────────────────────────────── */
.form-group { margin-bottom: var(--space-5); }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-2);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--midnight);
  background: var(--offwhite);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,49,99,0.08);
}
.form-control::placeholder { color: var(--gray-300); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E6B63' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ── Divider ────────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--gray-200); margin: var(--space-8) 0; }
.divider-gold { border-top-color: var(--champagne); }

/* ── Grid ───────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-6);
}
.product-grid-5 { grid-template-columns: repeat(5, 1fr); }
.product-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: 12px;
  color: var(--gray-400);
  padding: var(--space-4) 0;
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb__sep { color: var(--gray-300); }
.breadcrumb .active { color: var(--midnight); }

/* ── Star Rating ────────────────────────────────────────────── */
.stars { color: var(--champagne); letter-spacing: 2px; }
.rating-bar-wrap { display: flex; align-items: center; gap: var(--space-3); font-size: 13px; }
.rating-bar {
  flex: 1; height: 6px;
  background: var(--gray-200); border-radius: var(--radius-pill); overflow: hidden;
}
.rating-bar__fill { height: 100%; background: var(--champagne); border-radius: var(--radius-pill); }

/* ── Toast ──────────────────────────────────────────────────── */
#toast-container {
  position: fixed; bottom: var(--space-6); right: var(--space-6);
  z-index: 9999; display: flex; flex-direction: column; gap: var(--space-3);
}
.toast {
  background: var(--midnight); color: var(--offwhite);
  padding: 14px 20px; border-radius: var(--radius-md);
  font-size: 14px; box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: var(--space-3);
  animation: toastIn var(--dur-base) var(--ease-out);
  min-width: 260px;
}
@keyframes toastIn { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform: translateY(0); } }
.toast-success { border-left: 3px solid #4CAF50; }
.toast-info    { border-left: 3px solid var(--champagne); }

/* ── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,7,27,0.5);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: var(--space-6); opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base) var(--ease);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--offwhite); border-radius: var(--radius-xl);
  max-width: 560px; width: 100%; padding: var(--space-10);
  box-shadow: var(--shadow-xl); transform: translateY(20px);
  transition: transform var(--dur-base) var(--ease);
}
.modal-overlay.active .modal { transform: translateY(0); }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination {
  display: flex; align-items: center; gap: var(--space-2);
  justify-content: center; padding: var(--space-10) 0;
}
.pagination__item {
  width: 40px; height: 40px; display: flex;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm); font-size: 14px;
  font-weight: 400; color: var(--gray-500); cursor: pointer;
  transition: all var(--dur-fast);
  border: 1px solid transparent;
}
.pagination__item:hover { background: var(--gray-100); color: var(--midnight); }
.pagination__item.active {
  background: var(--midnight); color: var(--offwhite); border-color: var(--midnight);
}
.pagination__item.dots { cursor: default; }
.pagination__item.dots:hover { background: transparent; }

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: var(--radius-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ── Selection ──────────────────────────────────────────────── */
::selection { background: var(--champagne); color: var(--midnight); }

/* ── Utilities ──────────────────────────────────────────────── */
.text-navy { color: var(--navy); }
.text-midnight { color: var(--midnight); }
.text-gold { color: var(--champagne); }
.text-muted { color: var(--gray-400); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.bg-midnight { background: var(--midnight); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.fw-500 { font-weight: 500; }
.fs-sm { font-size: 13px; }
.fs-xs { font-size: 12px; }
.rounded { border-radius: var(--radius-md); }
.rounded-pill { border-radius: var(--radius-pill); }
.overflow-hidden { overflow: hidden; }
.w-100 { width: 100%; }
.text-center { text-align: center; }

/* ── Announcement Bar ───────────────────────────────────────── */
.announcement-bar {
  background: var(--midnight);
  color: var(--champagne);
  text-align: center;
  padding: 10px var(--container-pad);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.announcement-bar a { color: var(--champagne-lt); border-bottom: 1px solid rgba(214,181,133,0.4); }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 900;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: var(--nav-height);
  transition: box-shadow var(--dur-base);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar__inner {
  display: flex; align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  gap: var(--space-8);
}
.navbar__logo {
  display: flex; align-items: center; gap: var(--space-3);
  flex-shrink: 0;
}
.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: 0.04em;
}
.navbar__logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  line-height: 1;
}

/* Mega Nav */
.navbar__nav { display: flex; align-items: center; gap: 0; flex: 1; }
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 4px;
  padding: 0 18px;
  height: var(--nav-height);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
  transition: color var(--dur-fast);
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item.active > a { color: var(--midnight); }
.nav-item > a::after {
  content: '';
  position: absolute; bottom: 0; left: 18px; right: 18px;
  height: 2px; background: var(--champagne);
  transform: scaleX(0); transition: transform var(--dur-base) var(--ease);
}
.nav-item:hover > a::after,
.nav-item.active > a::after { transform: scaleX(1); }

/* Chevron */
.nav-chevron {
  font-size: 10px; color: var(--gray-400);
  transition: transform var(--dur-fast);
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Mega Dropdown */
.mega-menu {
  position: absolute; top: calc(var(--nav-height) - 1px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--offwhite);
  border: 1px solid var(--gray-200);
  border-top: 2px solid var(--champagne);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 640px;
  padding: var(--space-6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
  z-index: 100;
}
.nav-item:hover .mega-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.mega-menu__col-title {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--gray-100);
}
.mega-menu__link {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  color: var(--gray-700);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.mega-menu__link:hover { color: var(--navy); padding-left: 4px; }

/* Nav Actions */
.navbar__actions { display: flex; align-items: center; gap: var(--space-2); margin-left: auto; }
.navbar__action-btn {
  position: relative; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); font-size: 18px;
  color: var(--gray-700); transition: all var(--dur-fast);
}
.navbar__action-btn:hover { background: var(--gray-100); color: var(--midnight); }
.navbar__badge {
  position: absolute; top: 5px; right: 5px;
  width: 16px; height: 16px;
  background: var(--champagne); color: var(--midnight);
  border-radius: 50%; font-size: 9px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.navbar__search {
  display: flex; align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 8px 16px; gap: var(--space-2);
  background: var(--gray-50); transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  min-width: 220px;
}
.navbar__search:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,49,99,0.08);
  background: var(--offwhite);
}
.navbar__search input {
  border: none; background: transparent; outline: none;
  font-size: 13px; color: var(--midnight); width: 100%;
}
.navbar__search input::placeholder { color: var(--gray-400); }
.navbar__search-icon { font-size: 15px; color: var(--gray-400); flex-shrink: 0; }

/* Mobile Toggle */
.navbar__mobile-toggle {
  display: none; width: 40px; height: 40px;
  flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; border-radius: var(--radius-sm);
}
.navbar__mobile-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--midnight); border-radius: 1px;
  transition: all var(--dur-base);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 890;
  background: var(--offwhite);
  transform: translateX(-100%);
  transition: transform var(--dur-slow) var(--ease);
  padding: calc(var(--nav-height) + var(--space-6)) var(--container-pad) var(--space-6);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__link {
  display: block; padding: var(--space-4) 0;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 300;
  color: var(--midnight); border-bottom: 1px solid var(--gray-100);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.mobile-nav__link:hover { color: var(--navy); padding-left: var(--space-3); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--midnight);
  color: var(--gray-300);
  padding: var(--space-16) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300;
  color: var(--offwhite);
  margin-bottom: var(--space-4);
}
.footer__tagline {
  font-size: 13px; color: var(--gray-400);
  line-height: 1.7; margin-bottom: var(--space-6);
}
.footer__social { display: flex; gap: var(--space-3); }
.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,254,255,0.12);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 15px;
  color: var(--gray-400); transition: all var(--dur-fast);
}
.footer__social-link:hover {
  border-color: var(--champagne); color: var(--champagne);
  background: rgba(214,181,133,0.08);
}
.footer__col-title {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: var(--space-5);
}
.footer__link {
  display: block; padding: 5px 0;
  font-size: 13px; color: var(--gray-400);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.footer__link:hover { color: var(--offwhite); padding-left: 4px; }
.footer__bottom {
  border-top: 1px solid rgba(255,254,255,0.08);
  padding: var(--space-6) 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); flex-wrap: wrap;
}
.footer__copy { font-size: 12px; color: var(--gray-500); }
.footer__bottom-links { display: flex; gap: var(--space-5); }
.footer__bottom-link { font-size: 12px; color: var(--gray-500); transition: color var(--dur-fast); }
.footer__bottom-link:hover { color: var(--gray-300); }
.footer__payment-icons { display: flex; gap: var(--space-3); }
.footer__payment-icon {
  background: rgba(255,254,255,0.06); border: 1px solid rgba(255,254,255,0.1);
  border-radius: var(--radius-sm); padding: 4px 8px;
  font-size: 11px; font-weight: 500; color: var(--gray-400);
  letter-spacing: 0.04em;
}

/* Newsletter in footer */
.newsletter-form {
  display: flex; gap: 0;
  border: 1px solid rgba(255,254,255,0.15);
  border-radius: var(--radius-sm); overflow: hidden;
  margin-top: var(--space-4);
}
.newsletter-form input {
  flex: 1; padding: 10px 14px;
  background: transparent; border: none; outline: none;
  font-size: 13px; color: var(--offwhite); font-family: var(--font-body);
}
.newsletter-form input::placeholder { color: var(--gray-500); }
.newsletter-form button {
  padding: 10px 18px;
  background: var(--champagne); color: var(--midnight);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background var(--dur-fast);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--champagne-lt); }

/* ── Page Header ────────────────────────────────────────────── */
.page-header {
  background: var(--cream);
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--gray-200);
}
.page-header h1 { color: var(--midnight); margin-bottom: var(--space-3); }

/* ── Skeleton Loader ────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -700px 0; }
  100% { background-position: 700px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 700px 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .product-grid-5 { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .navbar__nav, .navbar__search { display: none; }
  .navbar__mobile-toggle { display: flex; }
  .product-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  :root { --nav-height: 60px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: var(--space-10) 0; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
