/* =============================================
   COEURTY STORE - Feuille de style principale
   Thème: Luxe Rose & Or - Abidjan
   ============================================= */

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

:root {
  --gold:        #c49010;
  --gold-light:  #f0c040;
  --gold-dark:   #a07808;
  --pink:        #e8748a;
  --pink-light:  #f9c4d0;
  --pink-dark:   #c4506a;
  --black:       #1a1a1a;
  --dark:        #f5f4f2;
  --card:        #ffffff;
  --card2:       #f9f7f5;
  --border:      #e8e4e0;
  --text:        #1a1a1a;
  --text-muted:  #7a7672;
  --white:       #ffffff;
  --radius:      14px;
  --shadow:      0 8px 32px rgba(0,0,0,.10);
  --transition:  .25s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
.font-display { font-family: 'Playfair Display', serif; }

/* ── GRADIENTS ── */
.gold-gradient { background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pink-gradient { background: linear-gradient(135deg, var(--pink-light), var(--pink), var(--pink-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,160,23,.2);
}

.header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; gap: 20px;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 52px; width: 52px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text span:first-child { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--gold); }
.logo-text span:last-child { font-size: .7rem; color: var(--pink); letter-spacing: 2px; text-transform: uppercase; }

/* Search */
.search-wrap { flex: 1; max-width: 520px; position: relative; }
.search-wrap input {
  width: 100%; padding: 10px 20px 10px 46px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 50px; color: var(--text); font-family: 'Outfit', sans-serif; font-size: .95rem;
  transition: var(--transition);
}
.search-wrap input:focus { outline: none; border-color: var(--gold); background: var(--card2); }
.search-wrap input::placeholder { color: var(--text-muted); }
.search-wrap .search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.search-wrap button {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none; border-radius: 50px; padding: 6px 18px;
  color: var(--black); font-weight: 700; font-size: .85rem; cursor: pointer;
}

/* Nav icons */
.header-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.icon-btn {
  position: relative; display: flex; flex-direction: column; align-items: center;
  gap: 2px; color: var(--text); cursor: pointer; transition: var(--transition);
  background: none; border: none; font-size: .7rem; font-family: 'Outfit', sans-serif;
}
.icon-btn:hover { color: var(--gold); }
.icon-btn svg { width: 22px; height: 22px; }
.badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--pink); color: #fff; border-radius: 50%;
  width: 18px; height: 18px; font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Online counter */
.online-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 14px;
  font-size: .8rem; white-space: nowrap;
}
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46,204,113,.4); } 50% { box-shadow: 0 0 0 6px rgba(46,204,113,0); } }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 4px; }

/* ── NAV BAR ── */
nav.category-nav {
  background: var(--white); border-bottom: 1px solid var(--border);
  margin-top: 72px;
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 4px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; white-space: nowrap;
  color: var(--text-muted); font-size: .9rem; font-weight: 500;
  border-bottom: 2px solid transparent; transition: var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--gold); border-color: var(--gold); }
.nav-link svg { width: 16px; height: 16px; }

/* ── HERO ── */
.hero {
  min-height: 88vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #fff8f0 0%, #fdf0f4 35%, #f8f0ff 70%, #fffaf5 100%);
  margin-top: 110px;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(212,160,23,.12) 0%, transparent 60%),
              radial-gradient(ellipse 40% 60% at 30% 30%, rgba(232,116,138,.1) 0%, transparent 50%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 60px 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,.1); border: 1px solid rgba(212,160,23,.3);
  border-radius: 50px; padding: 6px 16px; font-size: .8rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 480px; margin-bottom: 36px; }

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

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,.4); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  border: 1px solid rgba(255,255,255,.2); cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-logo-glow {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(212,160,23,.15) 0%, transparent 70%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  animation: float 4s ease-in-out infinite;
}
.hero-logo-glow img { width: 280px; height: 280px; object-fit: cover; border-radius: 50%; border: 3px solid rgba(212,160,23,.4); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.hero-stats {
  display: flex; gap: 40px; margin-top: 40px;
}
.hero-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); }
.hero-stat span { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ── MARQUEE ── */
.marquee-section {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 10px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span { padding: 0 32px; color: var(--black); font-weight: 700; font-size: .85rem; letter-spacing: 1px; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section { padding: 80px 20px; max-width: 1400px; margin: 0 auto; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 16px; flex-wrap: wrap; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
.section-title span { color: var(--gold); }
.section-link { color: var(--gold); font-size: .9rem; font-weight: 600; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.section-link:hover { color: var(--gold-light); }

/* ── CATEGORIES ── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.cat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 16px;
  text-align: center; cursor: pointer; transition: var(--transition);
  text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.cat-card:hover { border-color: var(--gold); transform: translateY(-4px); background: var(--card2); }
.cat-card:hover .cat-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); }
.cat-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(212,160,23,.1); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: var(--transition); }
.cat-card h3 { font-size: .95rem; font-weight: 600; }
.cat-card p { font-size: .75rem; color: var(--text-muted); }

/* ── PRODUCT GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(196,144,16,.4); box-shadow: 0 20px 60px rgba(0,0,0,.12); }

.product-img {
  aspect-ratio: 1; overflow: hidden; background: var(--card2); position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img .no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; background: linear-gradient(135deg, #1a0510, #0e0818); }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--pink); color: #fff;
  border-radius: 6px; padding: 3px 10px; font-size: .72rem; font-weight: 700;
}
.product-badge.new { background: var(--gold); color: var(--black); }

.product-wish {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.85); border: 1px solid var(--border);
  border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); backdrop-filter: blur(8px);
  opacity: 0;
}
.product-card:hover .product-wish { opacity: 1; }
.product-wish:hover { background: var(--pink); border-color: var(--pink); }
.product-wish svg { width: 16px; height: 16px; }

.product-info { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-category { font-size: .72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.product-name { font-size: 1rem; font-weight: 600; line-height: 1.3; }
.product-price-row { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.product-price { font-size: 1.15rem; font-weight: 700; color: var(--gold); }
.product-old-price { font-size: .85rem; color: var(--text-muted); text-decoration: line-through; }
.product-discount { font-size: .72rem; color: var(--pink); font-weight: 700; background: rgba(232,116,138,.1); padding: 2px 8px; border-radius: 4px; }

.product-actions { padding: 0 16px 16px; display: flex; gap: 8px; }

.btn-cart {
  flex: 1; background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); border: none; border-radius: 8px; padding: 10px;
  font-weight: 700; font-size: .9rem; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-cart:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,160,23,.4); }

.btn-whatsapp {
  background: #25D366; color: #fff;
  border: none; border-radius: 8px; padding: 10px 14px;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-1px); }
.btn-whatsapp svg { width: 18px; height: 18px; }

/* ── PROMO BANNER ── */
.promo-banner {
  margin: 0 20px; border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, #1a0510, #0e0515, #1a0a08);
  border: 1px solid rgba(212,160,23,.2);
  position: relative;
}
.promo-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(212,160,23,.15) 0%, transparent 60%);
}
.promo-inner {
  padding: 60px 40px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center; position: relative; z-index: 1;
}
.promo-inner h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; margin-bottom: 12px; }
.promo-inner p { color: var(--text-muted); margin-bottom: 24px; }
.promo-price { font-size: 3rem; font-weight: 900; font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: 4px; }
.promo-price small { font-size: 1rem; color: var(--text-muted); font-family: 'Outfit', sans-serif; text-decoration: line-through; }

/* ── CART SIDEBAR ── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.35);
  z-index: 2000; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw; background: var(--white);
  border-left: 1px solid var(--border); z-index: 2001;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  padding: 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; }
.close-btn { background: none; border: 1px solid var(--border); border-radius: 8px; padding: 6px 10px; color: var(--text); cursor: pointer; transition: var(--transition); }
.close-btn:hover { border-color: var(--pink); color: var(--pink); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.cart-empty svg { width: 64px; height: 64px; margin: 0 auto 16px; opacity: .3; }

.cart-item {
  display: flex; gap: 12px; padding: 12px;
  background: var(--card); border-radius: 10px; margin-bottom: 10px;
}
.cart-item img { width: 70px; height: 70px; border-radius: 8px; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: .9rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { color: var(--gold); font-weight: 700; font-size: .9rem; }
.cart-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { background: var(--card2); border: 1px solid var(--border); border-radius: 6px; width: 28px; height: 28px; color: var(--text); cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-num { font-weight: 700; font-size: .9rem; min-width: 24px; text-align: center; }
.remove-item { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 4px; }
.remove-item:hover { color: var(--pink); }

.cart-footer { padding: 20px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total strong { font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.cart-total span { font-size: 1.3rem; font-weight: 700; color: var(--gold); }

.btn-whatsapp-order {
  width: 100%; padding: 16px; background: #25D366; color: #fff;
  border: none; border-radius: 12px; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition);
}
.btn-whatsapp-order:hover { background: #128C7E; transform: translateY(-2px); }

.whatsapp-select { display: flex; gap: 10px; margin-bottom: 12px; }
.wa-btn {
  flex: 1; padding: 10px; background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3); border-radius: 8px;
  color: #25D366; font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); text-align: center;
}
.wa-btn:hover { background: rgba(37,211,102,.2); }

/* ── TOAST ── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 20px; font-size: .9rem;
  display: flex; align-items: center; gap: 10px; max-width: 320px;
  animation: slideInToast .3s ease;
  box-shadow: var(--shadow);
}
.toast.success { border-color: #2ecc71; }
.toast.error { border-color: var(--pink); }
@keyframes slideInToast { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── FOOTER ── */
footer {
  background: var(--dark); border-top: 2px solid var(--border);
  padding: 60px 20px 24px;
}
.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin: 16px 0; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.footer-logo img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.footer-logo span { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); }
.footer-whatsapp { display: flex; flex-direction: column; gap: 8px; }
.wa-contact {
  display: flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,.08); border: 1px solid rgba(37,211,102,.2);
  border-radius: 10px; padding: 10px 14px; color: #2ecc71;
  font-size: .9rem; font-weight: 600; transition: var(--transition); text-decoration: none;
}
.wa-contact:hover { background: rgba(37,211,102,.15); }
.wa-contact svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--gold); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: .9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--text-muted); flex-wrap: wrap; gap: 10px;
}

/* ── SHOP PAGE FILTERS ── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.filter-sidebar {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; position: sticky; top: 130px;
}
.filter-group { margin-bottom: 24px; }
.filter-group h3 { font-size: .9rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.filter-option { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 6px 0; font-size: .9rem; color: var(--text-muted); transition: var(--transition); }
.filter-option:hover { color: var(--text); }
.filter-option input[type="checkbox"] { accent-color: var(--gold); }
.price-range input[type="range"] { width: 100%; accent-color: var(--gold); }
.sort-select {
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); padding: 8px 12px; border-radius: 8px; font-family: 'Outfit', sans-serif;
  font-size: .9rem; cursor: pointer;
}
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.results-count { color: var(--text-muted); font-size: .9rem; }

/* ── PRODUCT DETAIL ── */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-gallery { position: sticky; top: 130px; }
.main-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; background: var(--card); margin-bottom: 12px; }
.main-img img { width: 100%; height: 100%; object-fit: cover; }
.thumb-row { display: flex; gap: 10px; }
.thumb { width: 70px; height: 70px; border-radius: 8px; overflow: hidden; border: 2px solid var(--border); cursor: pointer; transition: var(--transition); }
.thumb.active, .thumb:hover { border-color: var(--gold); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info h1 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 12px; }
.star-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--gold); }
.size-picker, .color-picker { margin-bottom: 20px; }
.size-picker h3, .color-picker h3 { font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn { padding: 8px 16px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; color: var(--text); cursor: pointer; font-size: .9rem; font-family: 'Outfit', sans-serif; transition: var(--transition); }
.size-btn.active, .size-btn:hover { border-color: var(--gold); color: var(--gold); }
.color-options { display: flex; gap: 10px; }
.color-dot { width: 32px; height: 32px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: var(--transition); }
.color-dot.active, .color-dot:hover { border-color: var(--gold); transform: scale(1.15); }
.qty-large { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.qty-large .qty-btn { width: 40px; height: 40px; font-size: 1.2rem; }
.detail-actions { display: flex; gap: 12px; flex-direction: column; }
.detail-actions .btn-cart { font-size: 1rem; padding: 14px; }
.detail-actions .btn-whatsapp { padding: 14px; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 8px; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-muted); margin-bottom: 32px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ── PAGINATION ── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: var(--card); border: 1px solid var(--border); color: var(--text); cursor: pointer; font-size: .9rem; transition: var(--transition); font-family: 'Outfit', sans-serif; }
.page-btn.active, .page-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); font-weight: 700; }

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed; bottom: 24px; left: 24px; z-index: 1500;
  background: #25D366; color: #fff;
  border-radius: 50%; width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  animation: wa-pulse 2s ease-in-out infinite;
  cursor: pointer; border: none;
  text-decoration: none;
}
.whatsapp-fab svg { width: 28px; height: 28px; }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 40px rgba(37,211,102,.6); } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
}

@media (max-width: 768px) {
  nav.category-nav { margin-top: 64px; }
  .hero { margin-top: 100px; min-height: auto; }
  .hero-content { padding: 40px 20px; }
  .search-wrap { display: none; }
  .menu-toggle { display: flex; }
  .online-pill { display: none; }
  .logo-text span:last-child { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .promo-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
  .cart-sidebar { width: 100vw; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 12px; }
  .product-actions { padding: 0 12px 12px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
