/* ============ Basket my — style.css ============ */
:root {
  --primary: #ff5a36;
  --primary-dark: #e64a28;
  --dark: #0c0c0f;
  --bg: #0f0f13;
  --bg-2: #15151a;
  --text: #ffffff;
  --muted: #a6a6b0;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.14);
  --danger: #e5484d;
  --success: #2ecc71;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font: 'Poppins', 'Segoe UI', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* ============ Reveal animations ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes revealFallback { to { opacity: 1; transform: translateY(0); } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }

/* ============ Header / Nav ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(12, 12, 15, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  display: flex; align-items: center; gap: 9px;
}
.logo .logo-dot { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  position: relative;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .25s;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  transition: background .3s, transform .3s;
}
.icon-btn:hover { background: var(--glass-strong); transform: translateY(-2px); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 19px; height: 19px;
  padding: 0 4px;
  border-radius: 10px;
  background: var(--primary);
  font-size: .68rem;
  font-weight: 700;
  display: grid; place-items: center;
  color: #fff;
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; width: 40px; height: 40px; place-content: center; align-items: center; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,15,.55) 0%, rgba(12,12,15,.75) 60%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 120px 0 80px; }
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--primary); }
.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .4px;
  border: none;
  transition: transform .3s, box-shadow .3s, background .3s;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255, 90, 54, .4); }
.btn-ghost { background: var(--glass); border: 1px solid var(--border); color: #fff; backdrop-filter: blur(10px); }
.btn-ghost:hover { background: var(--glass-strong); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: .82rem; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ============ Section titles ============ */
.section { padding: 90px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--primary);
  margin: 16px auto 0;
  border-radius: 3px;
}

/* ============ Collections ============ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  animation: fadeUp .5s ease both;
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.collection-card:hover img { transform: scale(1.08); }
.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.75) 100%);
}
.collection-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 26px;
}
.collection-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.collection-info span { color: var(--primary); font-size: .85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ============ Vedettes carousel ============ */
.vedettes-wrap { position: relative; }
.vedettes-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 20px;
}
.vedettes-track::-webkit-scrollbar { display: none; }
.carousel-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--glass-strong);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  color: #fff;
  display: grid; place-items: center;
  z-index: 5;
  transition: background .3s, transform .3s;
}
.carousel-arrow:hover { background: var(--primary); transform: translateY(-50%) scale(1.06); }
.carousel-arrow.prev { left: -12px; }
.carousel-arrow.next { right: -12px; }

/* ============ Product card ============ */
.product-card {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .4s ease, box-shadow .4s ease, border-color .3s;
  animation: fadeUp .5s ease both;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: var(--shadow);
  border-color: rgba(255, 90, 54, .4);
}
.product-card .img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--bg-2);
}
.product-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.07); }
.badge-promo {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.product-card .info { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-card .cat { font-size: .74rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); font-weight: 600; }
.product-card h3 { font-size: 1.05rem; font-weight: 600; margin: 6px 0 10px; }
.product-card .price { font-size: 1.15rem; font-weight: 700; }
.product-card .price .old { color: var(--muted); font-size: .9rem; text-decoration: line-through; font-weight: 400; margin-left: 8px; }
.product-card .btns { margin-top: auto; padding-top: 14px; }

/* ============ Reassurance ============ */
.reassurance {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reassurance-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.reassurance-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.reassurance-item svg { margin-bottom: 16px; }
.reassurance-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.reassurance-item p { font-size: .8rem; color: var(--muted); }

/* ============ Footer ============ */
.site-footer { background: #08080a; padding: 70px 0 30px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { color: var(--muted); font-size: .9rem; margin-top: 16px; max-width: 320px; }
.footer-col h4 { font-size: .95rem; font-weight: 700; margin-bottom: 18px; letter-spacing: .5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { color: var(--muted); font-size: .88rem; transition: color .25s; }
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: .82rem;
}

/* ============ Page hero (inner pages) ============ */
.page-hero {
  position: relative;
  padding: 150px 0 70px;
  background: linear-gradient(180deg, rgba(12,12,15,.2), var(--bg)), url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=1600') center/cover;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
.page-hero p { color: var(--muted); margin-top: 10px; }

/* ============ Filters (produits) ============ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: #fff;
  font-size: .88rem;
  font-weight: 500;
  transition: .3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.products-grid .product-card { width: auto; }

/* ============ Product detail ============ */
.product-detail { padding: 140px 0 80px; }
.pd-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.pd-gallery { position: relative; }
.pd-main-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: 1px solid var(--border);
  color: #fff;
  display: grid; place-items: center;
  z-index: 3;
  transition: background .3s;
}
.gallery-arrow:hover { background: var(--primary); }
.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }
.pd-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.pd-thumb {
  width: 78px; height: 78px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .3s, transform .3s;
  background: var(--bg-2);
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active, .pd-thumb:hover { border-color: var(--primary); transform: translateY(-3px); }

.pd-info .cat { font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); font-weight: 600; }
.pd-info h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; margin: 8px 0 14px; }
.pd-price { font-size: 1.8rem; font-weight: 800; margin-bottom: 18px; }
.pd-price .old { color: var(--muted); font-size: 1.2rem; text-decoration: line-through; font-weight: 400; margin-left: 12px; }
.pd-desc { color: var(--muted); margin-bottom: 26px; }

.size-label { font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.size-label .stock-hint { font-size: .8rem; color: var(--muted); font-weight: 400; }
.size-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.size-btn {
  min-width: 52px; height: 52px;
  padding: 0 12px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  transition: .25s;
}
.size-btn:hover:not(:disabled) { border-color: var(--primary); }
.size-btn.selected { background: var(--primary); border-color: var(--primary); }
.size-btn:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.qty-box { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.qty-box button { width: 44px; height: 48px; background: var(--glass); border: none; color: #fff; font-size: 1.2rem; }
.qty-box input { width: 54px; height: 48px; text-align: center; background: transparent; border: none; color: #fff; font-size: 1rem; font-weight: 600; }

.pd-reassurance { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; padding: 20px; background: var(--glass); border: 1px solid var(--border); border-radius: 14px; }
.pd-reassurance .pr-item { display: flex; align-items: center; gap: 12px; font-size: .86rem; color: var(--muted); }

/* ============ Lightbox ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  opacity: 0; transition: opacity .3s;
}
.lightbox.active { opacity: 1; }
.lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: 22px; right: 26px; color: #fff; font-size: 40px; cursor: pointer; line-height: 1; }

/* ============ Forms ============ */
.form-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .86rem; font-weight: 500; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: #fff;
  font-size: .95rem;
  transition: border-color .3s, background .3s;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,.08);
}
.form-group select option { color: #000; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============ Panier ============ */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: start; }
.cart-item {
  display: flex;
  gap: 18px;
  padding: 18px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
}
.cart-item img { width: 92px; height: 92px; object-fit: cover; border-radius: 12px; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 1rem; font-weight: 600; }
.cart-item-info .size-tag { display: inline-block; font-size: .75rem; background: var(--glass-strong); padding: 2px 10px; border-radius: 100px; margin: 4px 0 8px; }
.cart-item-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.cart-summary {
  position: sticky;
  top: 100px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(14px);
}
.cart-summary h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; color: var(--muted); font-size: .95rem; }
.summary-row.total { color: #fff; font-weight: 700; font-size: 1.2rem; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 6px; }

/* ============ Tabs (auth/compte) ============ */
.tabs { display: flex; gap: 6px; background: var(--glass); border: 1px solid var(--border); border-radius: 100px; padding: 5px; margin-bottom: 26px; }
.tab-btn { flex: 1; padding: 12px; border-radius: 100px; background: none; border: none; color: var(--muted); font-weight: 600; transition: .3s; }
.tab-btn.active { background: var(--primary); color: #fff; }

/* ============ Orders (compte) ============ */
.order-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 18px;
}
.order-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.order-head .oid { font-weight: 700; }
.status-badge { padding: 5px 14px; border-radius: 100px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.status-en_attente { background: rgba(255, 180, 0, .18); color: #ffb400; }
.status-payee { background: rgba(46, 204, 113, .18); color: #2ecc71; }
.status-expediee { background: rgba(52, 152, 219, .18); color: #3498db; }
.status-livree { background: rgba(46, 204, 113, .3); color: #2ecc71; }
.status-annulee { background: rgba(229, 72, 77, .18); color: #e5484d; }
.order-items { border-top: 1px solid var(--border); padding-top: 12px; }
.order-item { display: flex; justify-content: space-between; padding: 6px 0; font-size: .9rem; color: var(--muted); }

/* ============ FAQ ============ */
.faq-item { background: var(--glass); border: 1px solid var(--border); border-radius: 14px; margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 20px 24px; background: none; border: none; color: #fff; font-weight: 600; font-size: 1rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; color: var(--muted); padding: 0 24px; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }

/* ============ Toast ============ */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1a1a20;
  border: 1px solid var(--border);
  color: #fff;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: .9rem;
  z-index: 10000;
  transition: transform .4s ease;
  box-shadow: var(--shadow);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.error { border-color: var(--danger); }
.toast.success { border-color: var(--success); }

/* ============ Cookie banner ============ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(12,12,15,.96);
  border-top: 1px solid var(--border);
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  z-index: 9990;
  backdrop-filter: blur(14px);
}
.cookie-banner p { font-size: .86rem; color: var(--muted); max-width: 600px; }
.cookie-banner .cookie-actions { display: flex; gap: 10px; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .pd-layout { grid-template-columns: 1fr; }
  .carousel-arrow { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    height: 100vh;
    background: rgba(12,12,15,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right .4s ease;
    z-index: 1100;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .collections-grid { grid-template-columns: 1fr; }
  .collection-card { height: 300px; }
  .reassurance-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 60px 0; }

  .product-card { width: 70vw; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .products-grid .product-card { width: auto; }
  .products-grid .product-card .img-wrap { height: 170px; }

  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .gallery-arrow { display: none; }
  .pd-thumbs { display: none; }
  .hero-content { padding: 110px 0 60px; }
}

@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
  .products-grid .product-card .img-wrap { height: 220px; }
}
