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

:root {
  --blue:       #1428A0;
  --blue-dark:  #0b1f7a;
  --blue-light: #1a3bc4;
  --blue-pale:  #e8ebf9;
  --green:      #25D366;
  --green-dark: #1ebe5d;
  --orange:     #f59e0b;
  --orange-dark:#d97706;
  --orange-pale:#fff7ed;
  --red:        #ef4444;
  --white:      #ffffff;
  --gray-bg:    #f4f6fc;
  --gray-text:  #555;
  --black:      #111;
  --shadow-sm:  0 2px 12px rgba(20,40,160,.08);
  --shadow-md:  0 8px 30px rgba(20,40,160,.14);
  --shadow-lg:  0 16px 50px rgba(20,40,160,.18);
  --radius:     14px;
  --radius-lg:  22px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  padding-top: 72px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════
   HEADER
═══════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), var(--shadow-sm);
  z-index: 1000; height: 72px;
}
.header-container {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  height: 100%; display: flex; align-items: center; gap: 24px;
}
.logo img { height: 40px; width: auto; object-fit: contain; }
.certified-badge {
  display: flex; align-items: center; gap: 6px;
  background: var(--blue-pale); color: var(--blue);
  font-size: 11px; font-weight: 700; padding: 5px 10px;
  border-radius: 20px; white-space: nowrap; letter-spacing: .3px;
}
.certified-badge svg { width: 14px; height: 14px; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  text-decoration: none; color: var(--black); font-weight: 600;
  font-size: 14px; padding: 8px 12px; border-radius: 8px;
  transition: background .2s, color .2s; white-space: nowrap;
}
.nav a:hover, .nav a.active { background: var(--blue-pale); color: var(--blue); }
.btn-wa-header {
  background: var(--green); color: var(--white); padding: 10px 20px;
  border-radius: 50px; text-decoration: none; font-weight: 700;
  font-size: 14px; white-space: nowrap; transition: all .25s;
  box-shadow: 0 4px 15px rgba(37,211,102,.35);
  display: flex; align-items: center; gap: 7px; flex-shrink: 0;
}
.btn-wa-header:hover { background: var(--green-dark); transform: translateY(-2px); }
.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: var(--blue); margin-left: auto;
}
.menu-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .certified-badge { display: none; }
  .nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 20px; gap: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    display: none; z-index: 999;
    border-top: 2px solid var(--blue-pale);
  }
  .nav.open { display: flex; }
  .nav a { font-size: 16px; padding: 14px 16px; border-radius: 10px; }
  .menu-toggle { display: block; }
  .btn-wa-header { display: none; }
}

/* ═══════════════════════════════
   HERO PROMOTIONS
═══════════════════════════════ */
.promo-hero {
  position: relative;
  background: linear-gradient(135deg, #0b1f7a 0%, #1428A0 50%, #c2410c 100%);
  padding: 80px 20px 100px;
  text-align: center;
  color: white;
  overflow: hidden;
}
/* Cercles décoratifs */
.promo-hero::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  background: rgba(245,158,11,.07);
  border-radius: 50%;
  top: -350px; right: -200px;
  pointer-events: none;
}
.promo-hero::after {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  bottom: -200px; left: -100px;
  pointer-events: none;
}
/* Motif grille subtil */
.promo-hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.promo-hero-content {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
}
.promo-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.2); color: #fcd34d;
  border: 1px solid rgba(245,158,11,.4);
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 30px; margin-bottom: 20px;
}
.promo-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.promo-hero-content h1 span {
  color: #fcd34d;
}
.promo-hero-content p {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  opacity: .85; line-height: 1.6; margin-bottom: 32px;
}
.promo-hero-stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.promo-stat {
  text-align: center;
}
.promo-stat-num {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: #fcd34d; line-height: 1;
}
.promo-stat-label {
  font-size: 12px; opacity: .75; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
}

/* ═══════════════════════════════
   BARRE COUNTDOWN
═══════════════════════════════ */
.countdown-bar {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  padding: 16px 20px;
  text-align: center;
  color: white;
  position: relative;
  z-index: 3;
}
.countdown-bar-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.countdown-label {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; opacity: .9;
}
.countdown-timer {
  display: flex; align-items: center; gap: 6px;
}
.countdown-block {
  background: rgba(0,0,0,.25);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 52px;
  text-align: center;
}
.countdown-num {
  display: block;
  font-size: 20px; font-weight: 900; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-unit {
  display: block;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; opacity: .75;
  margin-top: 3px;
}
.countdown-sep {
  font-size: 22px; font-weight: 900; opacity: .6; margin-top: -6px;
}

/* ═══════════════════════════════
   BREADCRUMB
═══════════════════════════════ */
.breadcrumb { background: var(--gray-bg); border-bottom: 1px solid #e0e4f0; padding: 14px 20px; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 14px; }
.breadcrumb a { color: var(--blue); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #999; }
.breadcrumb .current { color: var(--black); font-weight: 700; }

/* ═══════════════════════════════
   BANDEAU ÉCONOMIES MISES EN AVANT
═══════════════════════════════ */
.promo-highlight {
  background: var(--orange-pale);
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  padding: 36px 20px;
  text-align: center;
}
.promo-highlight-inner { max-width: 900px; margin: 0 auto; }
.promo-highlight h2 { font-size: 18px; font-weight: 800; color: var(--orange-dark); margin-bottom: 20px; }
.savings-badges {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.savings-badge {
  background: var(--orange);
  color: white;
  font-size: 15px; font-weight: 800;
  padding: 10px 20px; border-radius: 50px;
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
  animation: pulse 2s ease-in-out infinite;
}
.savings-badge:nth-child(2) { animation-delay: .3s; background: var(--red); box-shadow: 0 4px 14px rgba(239,68,68,.35); }
.savings-badge:nth-child(3) { animation-delay: .6s; }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ═══════════════════════════════
   SECTION PRODUITS PROMO
═══════════════════════════════ */
.promos-section { background: var(--white); padding: 50px 20px 70px; }
.promos-inner { max-width: 1200px; margin: 0 auto; }

/* Onglets catégories */
.promo-filters {
  display: flex; justify-content: center;
  gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
}
.promo-filter-btn {
  padding: 10px 22px;
  border: 1.5px solid #e0e4f0;
  background: var(--white);
  color: var(--black);
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .2s;
  font-family: inherit;
}
.promo-filter-btn:hover { background: var(--orange-pale); border-color: var(--orange); color: var(--orange-dark); }
.promo-filter-btn.active { background: var(--orange); color: white; border-color: var(--orange); box-shadow: 0 4px 14px rgba(245,158,11,.35); }

.promo-tools {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 12px; margin-bottom: 24px;
}
.promo-count { font-weight: 600; font-size: 14px; color: var(--gray-text); }

/* ═══════════════════════════════
   GRILLE PRODUITS PROMO
═══════════════════════════════ */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) { .promos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .promos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 400px)  { .promos-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════
   CARTE PROMO
═══════════════════════════════ */
.promo-card {
  background: var(--white);
  border: 1.5px solid #eaecf5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all .3s;
  cursor: pointer;
}
.promo-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Ruban économie */
.promo-ribbon {
  position: absolute;
  top: 0; right: 0;
  background: var(--red);
  color: white;
  font-size: 11px; font-weight: 800;
  padding: 6px 12px;
  border-radius: 0 var(--radius-lg) 0 14px;
  z-index: 3;
  letter-spacing: .5px;
}

.promo-img-wrap {
  position: relative; overflow: hidden;
  background: var(--gray-bg); aspect-ratio: 1;
}
.promo-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 12px;
  transition: transform .4s;
}
.promo-card:hover .promo-img-wrap img { transform: scale(1.07); }

/* Badge catégorie */
.promo-cat-badge {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(20,40,160,.85); color: white;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: .5px; backdrop-filter: blur(4px);
}

.promo-card-body { padding: 16px; }
.promo-card-body h3 {
  font-size: 14px; font-weight: 700;
  margin-bottom: 10px; line-height: 1.3;
}

/* Bloc prix */
.promo-price-row {
  display: flex; align-items: baseline;
  gap: 8px; flex-wrap: wrap; margin-bottom: 10px;
}
.promo-price-new {
  font-size: 17px; font-weight: 900; color: var(--red);
}
.promo-price-old {
  font-size: 13px; color: #aaa;
  text-decoration: line-through;
}

/* Barre d'économie */
.promo-savings {
  display: flex; align-items: center;
  gap: 8px; margin-bottom: 12px;
}
.promo-savings-bar-wrap {
  flex: 1; height: 5px;
  background: #eee; border-radius: 3px; overflow: hidden;
}
.promo-savings-bar {
  height: 100%; background: var(--green);
  border-radius: 3px; transition: width 1s ease;
}
.promo-savings-text {
  font-size: 11px; font-weight: 800; color: var(--green);
  white-space: nowrap;
}

/* Stars */
.promo-stars { font-size: 12px; color: var(--orange); margin-bottom: 12px; }

.btn-promo-order {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; background: var(--green); color: white;
  padding: 11px; border-radius: 10px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; transition: all .2s;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-promo-order:hover { background: var(--green-dark); transform: scale(1.02); }
.btn-promo-order svg { width: 15px; height: 15px; }
.btn-promo-order.unavailable {
  background: #ccc; cursor: not-allowed;
}
.btn-promo-order.unavailable:hover { transform: none; }

/* No results */
.no-results {
  grid-column: 1/-1; text-align: center;
  padding: 70px; color: var(--gray-text);
}
.no-results p { font-size: 16px; }

/* ═══════════════════════════════
   BLOC MEILLEURE AFFAIRE
═══════════════════════════════ */
.best-deal {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 60px 20px;
  position: relative; overflow: hidden;
}
.best-deal::before {
  content: "";
  position: absolute; width: 500px; height: 500px;
  background: rgba(245,158,11,.08); border-radius: 50%;
  top: -250px; right: -100px; pointer-events: none;
}
.best-deal-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center; position: relative; z-index: 2;
}
.best-deal-text { color: white; }
.best-deal-eyebrow {
  display: inline-block; color: #fcd34d;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.best-deal-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900; margin-bottom: 12px; line-height: 1.2;
}
.best-deal-text p { font-size: 14px; opacity: .8; line-height: 1.7; margin-bottom: 24px; }
.best-deal-price-block {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 26px;
}
.best-deal-price {
  font-size: 2.2rem; font-weight: 900; color: #fcd34d;
}
.best-deal-oldprice {
  font-size: 1.1rem; color: rgba(255,255,255,.5); text-decoration: line-through;
}
.best-deal-img {
  display: flex; align-items: center; justify-content: center;
}
.best-deal-img img {
  width: 100%; max-width: 300px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 700px) {
  .best-deal-inner { grid-template-columns: 1fr; text-align: center; }
  .best-deal-price-block { justify-content: center; }
  .best-deal-img { display: none; }
}

/* ═══════════════════════════════
   TRUST + CTA
═══════════════════════════════ */
.trust { padding: 60px 20px; background: var(--gray-bg); }
.trust-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.trust h2 { font-size: 22px; font-weight: 800; margin-bottom: 40px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card { background: white; border-radius: var(--radius); padding: 28px 20px; box-shadow: var(--shadow-sm); transition: .3s; text-align: center; }
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trust-icon { font-size: 36px; margin-bottom: 14px; }
.trust-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--blue); }
.trust-card p { font-size: 13px; color: var(--gray-text); line-height: 1.6; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .trust-grid { grid-template-columns: 1fr; } }

.cta-section {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  padding: 80px 20px; text-align: center; color: white; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; width: 500px; height: 500px;
  background: rgba(255,255,255,.06); border-radius: 50%;
  top: -200px; right: -100px; pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 900; margin-bottom: 14px; position: relative; }
.cta-section p { font-size: 16px; opacity: .9; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: all .25s; cursor: pointer; border: none;
}
.btn-white { background: white; color: var(--orange-dark); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.2); }
.btn-ghost { background: rgba(255,255,255,.15); color: white; border: 2px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.25); border-color: white; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer { background: #0a0f2e; color: rgba(255,255,255,.7); padding: 70px 20px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 38px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,.6); font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-col p { font-size: 14px; line-height: 1.8; }
.footer-socials { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.footer-socials a { font-size: 14px; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-socials a:hover { color: var(--green); }
.footer-bottom { text-align: center; padding-top: 24px; font-size: 13px; opacity: .5; max-width: 1200px; margin: 0 auto; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .footer-inner { grid-template-columns: 1fr; } }

/* ═══════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.5); z-index: 1000; transition: all .3s;
}
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ═══════════════════════════════
   MODAL
═══════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.6); display: none;
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  position: relative; background: white; width: 100%;
  max-width: 960px; max-height: 90vh; overflow-y: auto;
  border-radius: 20px; padding: 36px;
  animation: slideUp .3s ease;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border: none; border-radius: 50%;
  background: #f1f1f1; color: #111; font-size: 16px;
  cursor: pointer; transition: .2s; z-index: 10;
}
.modal-close:hover { background: #ef4444; color: white; }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
@media (max-width: 700px) { .modal-body { grid-template-columns: 1fr; } .modal { padding: 24px 18px; } }
.modal-gallery { display: flex; flex-direction: column; gap: 14px; }
.modal-main {
  background: var(--gray-bg); border-radius: 14px;
  height: 300px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.modal-main img { width: 100%; height: 100%; object-fit: contain; }
.modal-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-thumb {
  width: 62px; height: 62px; object-fit: contain;
  background: var(--gray-bg); border-radius: 8px;
  border: 2px solid transparent; cursor: pointer; transition: .2s;
}
.modal-thumb:hover { border-color: var(--green); }
.modal-thumb.active { border-color: var(--blue); }
.modal-info h2 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.modal-stars { font-size: 16px; color: #f59e0b; margin-bottom: 12px; }
.modal-price { font-size: 24px; font-weight: 800; color: var(--red); }
.modal-oldprice { font-size: 15px; color: #999; text-decoration: line-through; margin-left: 8px; }
.modal-stock { display: inline-block; padding: 5px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; margin: 12px 0; }
.modal-stock.in { background: rgba(37,211,102,.12); color: #1ea551; }
.modal-stock.out { background: rgba(239,68,68,.12); color: #ef4444; }
.modal-desc { color: var(--gray-text); line-height: 1.7; font-size: 15px; margin-bottom: 16px; }
.modal-promo-savings {
  background: #fef9ec; border: 1.5px solid var(--orange);
  border-radius: 10px; padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px; font-weight: 700; color: var(--orange-dark);
}
.modal-order {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white; padding: 14px 26px;
  border-radius: 50px; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: .2s;
}
.modal-order:hover { background: var(--green-dark); }
.modal-similar { margin-top: 36px; border-top: 1px solid #eee; padding-top: 28px; }
.modal-similar h3 { font-size: 17px; font-weight: 700; margin-bottom: 18px; }
.similar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 600px) { .similar-grid { grid-template-columns: repeat(2, 1fr); } }
.similar-card {
  background: var(--gray-bg); border-radius: 10px; padding: 12px;
  text-align: center; cursor: pointer; transition: .2s; border: 1px solid #eee;
}
.similar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.similar-card img { width: 100%; height: 80px; object-fit: contain; margin-bottom: 8px; }
.similar-name { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.similar-price { font-size: 12px; color: var(--red); font-weight: 800; }

/* ═══════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
