:root {
  --noir: #0a0a0a;
  --blanc: #fafaf8;
  --or: #ff4c76;
  --or-clair: #ce2f54;
  --gris-fonce: #1a1a1a;
  --gris: #4a4a4a;
  --gris-clair: #f0ede8;
  --accent: #ff003b;
  --ombre: 0 8px 40px rgba(0, 0, 0, 0.12);
  --ombre-forte: 0 20px 60px rgba(0, 0, 0, 0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --trans: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--blanc);
  color: var(--noir);
  overflow-x: hidden;
}

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

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.563);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  transition: var(--trans);
}

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

/* .header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2rem;
  height: 72px;
} */

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--noir);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--or);
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gris);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or);
  transition: width 0.4s ease;
}

nav a:hover {
  color: var(--noir);
}
nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--gris-clair);
  border-radius: 50px;
  padding: 8px 16px;
  gap: 8px;
  transition: var(--trans);
  border: 1px solid transparent;
}

.search-bar:focus-within {
  border-color: var(--or);
  background: white;
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

.search-bar input {
  border: none;
  background: none;
  outline: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  width: 140px;
  color: var(--noir);
}

.search-bar svg {
  color: var(--gris);
  flex-shrink: 0;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--noir);
  transition: var(--trans);
  position: relative;
}

.icon-btn:hover {
  background: var(--gris-clair);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: var(--or);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--noir);
  border-radius: 2px;
  transition: var(--trans);
}

/* ─── HERO SLIDER ─── */
.hero {
  margin-top: 72px;
  height: calc(100vh - 72px);
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
  transform: scale(1.04);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.72) 0%,
    rgba(10, 10, 10, 0.2) 60%,
    transparent 100%
  );
}

.slide-content {
  position: absolute;
  bottom: 15%;
  left: 8%;
  max-width: 560px;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.4s;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  border: 1px solid var(--or);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.slide-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-desc {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 420px;
}

.slide-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--or);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 8px 24px rgba(222, 61, 91, 0.4);
}

.btn-primary:hover {
  background: #eb0f42;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 110, 155, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--trans);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}

/* Slider controls */
.slider-nav {
  position: absolute;
  bottom: 8%;
  right: 8%;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
}

.slider-btn:hover {
  background: var(--or);
  border-color: var(--or);
}

.slider-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--trans);
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--or);
}

/* ─── SECTIONS COMMUNES ─── */
section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or) !important;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--noir);
  line-height: 1.2;
}

.see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--or);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: gap 0.3s;
}

.see-all:hover {
  gap: 14px;
}

/* ─── CATÉGORIES ─── */
.categories-bg {
  background: var(--gris-fonce);
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.cat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  outline: none;
}

.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--or), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 110, 125, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cat-card:hover::before {
  opacity: 0.08;
}

.cat-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.cat-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.4rem;
}

.cat-count {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
}

.section-header .section-label,
.categories-bg .section-title {
  color: white;
}
.categories-bg .section-label {
  color: var(--or) !important;
}
.categories-bg .see-all {
  color: var(--or-clair);
}

/* ─── PRODUITS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--trans);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ombre-forte);
}

.product-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--gris-clair);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-new {
  background: var(--noir);
  color: white;
}
.badge-promo {
  background: #e84545;
  color: white;
}

.product-quick-add {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.9);
  color: white;
  text-align: center;
  padding: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-quick-add {
  bottom: 0;
}

.product-info {
  padding: 1.25rem 1.5rem 1.5rem;
}

.product-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--noir);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-current {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--noir);
}

.price-old {
  font-size: 0.9rem;
  color: #aaa;
  text-decoration: line-through;
}

.price-discount {
  font-size: 0.75rem;
  font-weight: 700;
  color: #e84545;
  background: rgba(232, 69, 69, 0.1);
  padding: 3px 8px;
  border-radius: 50px;
}

/* ─── BANDEAU PROMO ─── */
.promo-banner {
  background: linear-gradient(135deg, var(--noir) 0%, var(--gris-fonce) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 169, 110, 0.15) 0%,
    transparent 70%
  );
}

.promo-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.promo-top {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.5rem;
}

.promo-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.promo-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.modal {
  background: white;
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

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

.modal-gallery {
  position: relative;
  background: var(--gris-clair);
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-thumbs {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.modal-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--trans);
}

.modal-thumb.active {
  border-color: var(--or);
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gris-clair);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  z-index: 10;
}

.modal-close:hover {
  background: var(--noir);
  color: white;
}

.modal-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.75rem;
}

.modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--noir);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.modal-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.modal-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--noir);
}
.modal-price-old {
  font-size: 1rem;
  color: #aaa;
  text-decoration: line-through;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--gris);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.5rem;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2d8a4e;
  background: rgba(45, 138, 78, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2d8a4e;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.qty-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gris);
}

.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  overflow: hidden;
}

.qty-ctrl button {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--noir);
  transition: background 0.2s;
}

.qty-ctrl button:hover {
  background: var(--gris-clair);
}
.qty-val {
  padding: 0 14px;
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 40px;
  text-align: center;
}

.modal-add-btn {
  width: 100%;
  padding: 16px;
  background: var(--noir);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modal-add-btn:hover {
  background: var(--or);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
  transform: translateY(-2px);
}

/* ─── CART SIDEBAR ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: white;
  z-index: 1600;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gris-clair);
}

.cart-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gris-clair);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.cart-close:hover {
  background: var(--noir);
  color: white;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 0;
  color: #aaa;
  font-size: 0.9rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cart-item-img {
  width: 70px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--gris-clair);
  flex-shrink: 0;
}

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

.cart-item-name {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--or);
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s;
}

.cart-item-remove:hover {
  color: #e84545;
}

.cart-footer {
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--gris-clair);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.cart-total-label {
  font-size: 0.9rem;
  color: var(--gris);
  font-weight: 500;
}
.cart-total-amt {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.checkout-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--or) 0%, #b8924a 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 110, 0.5);
}

/* ─── FOOTER ─── */
footer {
  background: var(--noir);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 2rem 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: white;
  font-size: 1.8rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 1.25rem 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
}

.social-btn:hover {
  background: var(--or);
  border-color: var(--or);
  color: white;
}

.footer-col-title {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--or);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item svg {
  color: var(--or);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: var(--or);
  text-decoration: none;
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--noir);
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--ombre-forte);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-icon {
  color: var(--or);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE NAV ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 1400;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--noir);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gris-clair);
  transition: color 0.3s;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .search-bar {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .logo {
    grid-column: 2;
    text-align: center;
  }
  .header-actions {
    grid-column: 3;
  }

  .modal {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }
  .modal-gallery {
    aspect-ratio: 4/3;
    border-radius: 24px 24px 0 0;
  }

  .modal-info {
    padding: 1rem;
    margin-top: 250px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  section {
    padding: 4rem 1.25rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .cart-sidebar {
    width: 100%;
  }
  .slide-content {
    left: 5%;
    right: 5%;
  }
}
