/* ============================================================
   WISSO — Stylesheet principal
   Palette : Noir charbon #111 · Blanc cassé #F9F7F4 · Accent or #C8A96E · Gris doux #6B6B6B
   Typo : Syne (display) + Inter (body)
   ============================================================ */

:root {
  --black:   #111111;
  --white:   #F9F7F4;
  --gold:    #C8A96E;
  --gold-dk: #A8893E;
  --gray:    #6B6B6B;
  --gray-lt: #E8E5E0;
  --gray-bg: #F2EFE9;
  --red:     #D94F3D;
  --radius:  6px;
  --shadow:  0 4px 24px rgba(17,17,17,.08);
  --shadow-hover: 0 8px 40px rgba(17,17,17,.14);
  --trans:   .22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--black);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

/* ── LAYOUT ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── TOPBAR ── */
.topbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
  padding: 10px 24px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,247,244,.95);
  border-bottom: 1px solid var(--gray-lt);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.03);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

/* Logo */
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.04em;
}
.logo-w { color: var(--gold); }
.logo-white { color: var(--white); }
.logo-white .logo-w { color: var(--gold); }

/* Nav */
.nav { display: flex; align-items: center; gap: 8px; flex: 1; }
.nav-link {
  font-family: 'Syne', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
}
.nav-link:hover, .nav-link.active {
  color: var(--black);
  background: var(--gray-bg);
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  color: var(--black);
  transition: background var(--trans);
}
.action-btn:hover { background: var(--gray-bg); }
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  transition: all var(--trans);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--trans);
  letter-spacing: .02em;
}
.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); }
.btn-sm { padding: 8px 18px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.15);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
  line-height: 1.05;
}
.hero-title em { font-style: normal; color: rgba(255,255,255,1); text-shadow: 0 0 30px rgba(255,255,255,.5); }
.hero-text { color: rgba(255,255,255,.9); font-size: 1.05rem; margin-bottom: 36px; max-width: 420px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-placeholder {
  color: var(--gray);
  font-family: 'Syne', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  opacity: .15;
  user-select: none;
}

/* ── SECTION TITLES ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--gray); max-width: 540px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ── PRODUIT CARD ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid rgba(255,255,255,.3);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-bg);
  overflow: hidden;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: .05em;
}
.product-badge-new { background: var(--gold); color: var(--black); }
.product-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 4rem;
  color: var(--gray-lt);
}
.product-card-body { padding: 18px; }
.product-brand {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.product-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.price-current { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; }
.price-old { font-size: .88rem; color: var(--gray); text-decoration: line-through; }
.price-promo { color: var(--red); }

/* ── CATEGORIES GRID ── */
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.category-card {
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--black);
  transition: all var(--trans);
  cursor: pointer;
  border: 2px solid rgba(255,255,255,.5);
  box-shadow: 0 4px 15px rgba(0,0,0,.05);
}
.category-card:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  border-color: transparent;
}
.category-card-icon { font-size: 2rem; margin-bottom: 10px; }

/* ── FEATURES BANNER ── */
.features-strip {
  background: var(--black);
  color: var(--white);
  padding: 48px 0;
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.feature-icon { font-size: 2rem; margin-bottom: 12px; }
.feature-title { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 6px; }
.feature-text { font-size: .85rem; color: rgba(249,247,244,.6); }

/* ── PRODUITS PAGE ── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.filters-sidebar {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 100px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.filter-group { margin-bottom: 28px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-title {
  font-family: 'Syne', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
  color: var(--black);
}
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-option { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: .9rem; }
.filter-option input { accent-color: var(--gold); width: 16px; height: 16px; }
.shop-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.results-count { color: var(--gray); font-size: .9rem; }
.sort-select {
  padding: 8px 16px;
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  background: var(--white);
  cursor: pointer;
}

/* ── PRODUCT DETAIL ── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-gallery { position: sticky; top: 100px; }
.gallery-main {
  aspect-ratio: 1;
  background: var(--gray-bg);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb {
  width: 72px; height: 72px;
  background: var(--gray-bg);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--trans);
  flex-shrink: 0;
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info .product-brand { font-size: .8rem; margin-bottom: 8px; }
.product-info h1 { margin-bottom: 16px; }
.product-price-lg { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.price-lg { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 700; }
.product-desc { color: var(--gray); line-height: 1.75; margin-bottom: 28px; }

/* Tailles */
.size-label { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.size-btn {
  width: 52px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  background: var(--white);
  transition: all var(--trans);
}
.size-btn:hover:not(:disabled) { border-color: var(--black); }
.size-btn.selected { background: var(--black); color: var(--white); border-color: var(--black); }
.size-btn:disabled { opacity: .3; cursor: not-allowed; text-decoration: line-through; }

/* Qty */
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty-control { display: flex; align-items: center; border: 2px solid var(--gray-lt); border-radius: var(--radius); overflow: hidden; }
.qty-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; font-weight: 700;
  transition: background var(--trans);
}
.qty-btn:hover { background: var(--gray-bg); }
.qty-input {
  width: 50px; height: 44px;
  text-align: center;
  border: none; border-left: 2px solid var(--gray-lt); border-right: 2px solid var(--gray-lt);
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem;
  background: var(--white);
}

/* ── PANIER ── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: 12px;
  padding: 16px;
}
.cart-item-img {
  width: 100px; height: 100px;
  background: var(--gray-bg);
  border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 4px; }
.cart-item-meta { font-size: .85rem; color: var(--gray); }
.cart-item-price { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; text-align: right; }
.cart-remove { color: var(--gray); font-size: .8rem; cursor: pointer; margin-top: 8px; display: block; text-align: right; transition: color var(--trans); }
.cart-remove:hover { color: var(--red); }

/* Order summary */
.order-summary {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 100px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  border: 1px solid rgba(255,255,255,.5);
}
.order-summary h3 { margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: .95rem; }
.summary-row strong { font-family: 'Syne', sans-serif; font-size: 1.1rem; }
.summary-divider { border: none; border-top: 1px solid var(--gray-lt); margin: 16px 0; }
.free-shipping-notice { background: var(--white); border-radius: 8px; padding: 12px; text-align: center; font-size: .85rem; color: var(--gray); margin-bottom: 16px; }
.free-shipping-notice strong { color: var(--gold); }

/* ── FORMULAIRES ── */
.form-page { max-width: 500px; margin: 0 auto; padding: 64px 24px; }
.form-page h1 { text-align: center; margin-bottom: 8px; }
.form-page .subtitle { text-align: center; color: var(--gray); margin-bottom: 40px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
  color: var(--black);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  background: var(--white);
  color: var(--black);
  transition: border-color var(--trans);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { color: var(--red); font-size: .82rem; margin-top: 4px; }

/* ── ALERTS ── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: .9rem;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.alert-error { background: #fdecea; color: #c62828; border-left: 4px solid var(--red); }
.alert-info { background: #e3f2fd; color: #1565c0; border-left: 4px solid #2196f3; }

/* ── CHECKOUT ── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-section {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.checkout-section h3 { margin-bottom: 20px; font-size: 1.1rem; }
.cod-badge {
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cod-icon { font-size: 2rem; }
.cod-text strong { display: block; font-family: 'Syne', sans-serif; color: #2e7d32; }
.cod-text span { font-size: .85rem; color: var(--gray); }

/* ── ADMIN ── */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--black); color: var(--white); padding: 28px 0; }
.admin-logo { padding: 0 24px 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
.admin-menu { margin-top: 20px; }
.admin-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: 'Syne', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(249,247,244,.65);
  transition: all var(--trans);
}
.admin-menu a:hover, .admin-menu a.active { background: rgba(200,169,110,.12); color: var(--gold); }
.admin-content { background: var(--gray-bg); padding: 32px; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.stat-card .stat-value { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 700; }
.stat-card .stat-label { font-size: .82rem; color: var(--gray); margin-top: 4px; }
.stat-card .stat-icon { font-size: 1.8rem; margin-bottom: 8px; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.data-table th {
  padding: 14px 16px;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--black);
  color: var(--white);
}
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-lt); font-size: .9rem; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--gray-bg); }
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
}
.status-en_attente { background: #fff3cd; color: #856404; }
.status-confirmee { background: #d1ecf1; color: #0c5460; }
.status-en_preparation { background: #d4edda; color: #155724; }
.status-expediee { background: #cce5ff; color: #004085; }
.status-livree { background: #d4edda; color: #155724; }
.status-annulee { background: #f8d7da; color: #721c24; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.page-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  background: var(--white);
  cursor: pointer;
  transition: all var(--trans);
}
.page-btn:hover, .page-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 80px 24px; color: var(--gray); }
.empty-icon { font-size: 4rem; margin-bottom: 16px; }
.empty-state h2 { color: var(--black); margin-bottom: 8px; }

/* ── FOOTER ── */
.footer { background: var(--black); color: var(--white); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: .88rem; color: rgba(249,247,244,.6); margin-top: 14px; max-width: 260px; line-height: 1.7; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  color: rgba(249,247,244,.7);
  transition: all var(--trans);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; color: var(--gold); }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .88rem; color: rgba(249,247,244,.6); transition: color var(--trans); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(249,247,244,.4);
}
.payment-badges { display: flex; gap: 20px; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 16px 0; font-size: .85rem; color: var(--gray); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* ── ORDER CONFIRMATION ── */
.confirmation-page { max-width: 680px; margin: 0 auto; padding: 64px 24px; text-align: center; }
.confirmation-icon { font-size: 5rem; margin-bottom: 24px; }
.confirmation-number { display: inline-block; background: var(--gray-bg); border-radius: var(--radius); padding: 8px 20px; font-family: 'Syne', sans-serif; font-weight: 700; color: var(--gold); font-size: 1.1rem; margin: 12px 0 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { min-height: 50vw; order: -1; }
  .hero-content { padding: 60px 40px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar { gap: 16px; font-size: 11px; }
  .nav { display: none; flex-direction: column; position: fixed; inset: 70px 0 0; background: var(--white); padding: 24px; z-index: 99; overflow-y: auto; }
  .nav.open { display: flex; }
  .hamburger { display: flex; }
  .hero-content { padding: 48px 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .payment-badges { flex-direction: column; gap: 8px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-price { grid-column: 2; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero-title { font-size: 2rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
}

/* ── UTILS ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-gray { color: var(--gray); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.d-flex { display: flex; } .gap-2 { gap: 16px; } .align-center { align-items: center; }
.hidden { display: none; }
.tag { display: inline-block; background: var(--gray-bg); border-radius: 4px; padding: 2px 10px; font-size: .78rem; font-weight: 600; color: var(--gray); }
