:root {
  --primary: #247b69;
  --gray: #6e6e73;
  --border: #e8e8ea;
  --light: #f7f7f8;
  --text: #0f0f10;
}

* { margin:0; padding:0; box-sizing:border-box }

html body {
    font-family: 'DM Sans', sans-serif !important;
    background:#fff !important;
    color: var(--text) !important;
    line-height:1.6;
    font-weight:300;
    -webkit-font-smoothing: antialiased;
}

/* ANNOUNCEMENT */
.announce {
  background: var(--primary);
  color: var(--light);
  text-align: center;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: sticky;
  top: 0;
}
.announce strong { color: #fff; font-weight: 500; }
.announce-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  cursor: pointer;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  animation: pulse-announce 2s ease-in-out infinite;
}

@keyframes pulse-announce {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(200, 169, 110, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(200, 169, 110, 0);
  }
}

/* ── Animation supplémentaire au hover ── */
.announce-btn:hover {
  animation: pulse-announce 1s ease-in-out infinite;
}

/* NAV CART */
.nav-cart {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-count {
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
/* NAV */
nav {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  border-bottom: 0.5px solid var(--border);
}
.logo {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--gray);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* BREADCRUMB */
.breadcrumb {
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.3px;
  border-bottom: 0.5px solid var(--border);
}
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

/* LEFT — PRODUCT IMAGE */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 48px 60px 80px;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(1,21,64,0.04) 0%, transparent 70%);
}
.product-img-placeholder {
  width: 400px;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.product-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(1,21,64,0.1));
  transition: transform .4s ease, filter .4s ease;
}
.hero-visual:hover .product-img-placeholder img {
  transform:scale(1.1);
  filter:drop-shadow(0 12px 24px rgba(1,21,64,.14));
}
/* RIGHT — INFO */
.hero-info {
  padding: 64px 56px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 0.5px solid var(--border);
}
.hero-info h1 {
  font-size: 53px;
  font-weight: 300;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--primary);
  margin-bottom: 6px;
}
.tagline {
  font-size: 17px;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0.2px;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 360px;
}

/* PRICE ROW */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  margin-top: 30px;
}
.price {
  font-size: 23px;
  font-weight: 300;
  letter-spacing: -1px;
  color: var(--primary);
}
.price-old {
  font-size: 21px;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 300;
  opacity: 0.6;
}
.price-save {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(1,21,64,0.06);
  padding: 3px 8px;
}
.rating-line {
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 0.3px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rating-stars {
  color: var(--primary);
  letter-spacing: 1px;
}

/* FEATURES */
/* FEATURES (feats) */
.feats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0.2px;
}
.feat:first-child { border-top: 0.5px solid var(--border); }
.feat-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.4;
  flex-shrink: 0;
}

/* CTA */
.order-form {
  margin: 0;
  padding: 0;
}
.cta-group {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
}
.btn-primary {
  flex: 0.8;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 18px 32px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.15s;
  text-align: center;
  text-decoration:none;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary {
  width: 52px;
  background: transparent;
  border: 0.5px solid var(--border);
  color: var(--gray);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* TABS */
.tabs-wrap {
  padding: 0 48px;
  border-top: 0.5px solid var(--border);
}
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 0.5px solid var(--border);
}
.tab-btn {
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  font-family: inherit;
  font-weight: 300;
  border-bottom: 1.5px solid transparent;
  margin-bottom: -0.5px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 500; }
.tab-btn:hover { color: var(--primary); }

.tab-content {
  display: none;
  padding: 52px 0;
  max-width: 900px;
  margin: 0 auto;
}
.tab-content.active { display: block; }

.tab-content h2 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.5px;
  color: var(--primary);
  margin-bottom: 16px;
}
.tab-content h3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  margin-top: 32px;
}
.tab-content h3:first-child { margin-top: 0; }
.tab-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}
.tab-content ul {
  list-style: none;
  margin-bottom: 16px;
}
.tab-content li {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
  padding: 9px 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.tab-content li::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── FEATURE GRID (generic) ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  margin: 32px 0;
}
.feature-card {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--light); }
.feature-icon {
  font-size: 18px;
  opacity: 0.6;
  line-height: 1;
}
.feature-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--primary);
}
.feature-desc {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
}

/* ── FEATURE GRID 2 COLS (generic) ── */
.feature-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  margin: 32px 0;
}
.feature-card-2 {
  background: #fff;
  padding: 28px 24px;
}
.feature-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.5;
  margin-bottom: 10px;
}
.feature-card-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.feature-card-text {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.65;
}

/* ── INFO TABLE (generic) ── */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 8px;
  border: 0.5px solid var(--border);
}
.info-table th {
  text-align: left;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 10px;
  border-bottom: 0.5px solid var(--border);
  font-weight: 400;
  opacity: 0.7;
}
.info-table td {
  padding: 10px;
  border-bottom: 0.5px solid var(--border);
  color: var(--gray);
  font-weight: 300;
}
.info-table td:first-child { color: var(--primary); font-weight: 400; }

/* ── INFO PILLS (generic) ── */
.info-pills {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}
.info-pill {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border);
}
.info-pill:first-child { border-top: 0.5px solid var(--border); }
.pill-tag {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(1,21,64,0.06);
  padding: 3px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pill-text {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
}

/* ── STEPPER ── */
.stepper {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 0.5px solid var(--border);
  position: relative;
}
.step:first-child { border-top: 0.5px solid var(--border); }
.step-num {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--primary);
  opacity: 0.25;
  font-weight: 500;
  width: 28px;
  flex-shrink: 0;
  padding-top: 2px;
}
.step-body {}
.step-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.2px;
  margin-bottom: 4px;
}
.step-text {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
}

/* timeline results */
.timeline {
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 0.5px solid var(--border);
}
.timeline-item {
  background: #fff;
  padding: 20px 18px 24px;
}
.tl-week {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.5;
  margin-bottom: 10px;
}
.tl-result {
  font-size: 13px;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.tl-desc {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.5;
}

/* REVIEWS */
.reviews-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}
.reviews-sidebar {}
.reviews-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}
.score-big {
  font-size: 56px;
  font-weight: 300;
  color: var(--primary);
  letter-spacing: -2px;
  line-height: 1;
}
.score-info { display: flex; flex-direction: column; gap: 4px; }
.score-stars { font-size: 14px; letter-spacing: 3px; color: var(--primary); }
.score-count { font-size: 11px; color: var(--gray); letter-spacing: 0.3px; }

.bar-list { margin-bottom: 0; }
.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.bar-label { font-size: 11px; color: var(--gray); width: 36px; letter-spacing: 0.3px; }
.bar-track {
  flex: 1;
  height: 1px;
  background: var(--border);
  position: relative;
}
.bar-fill {
  position: absolute;
  left: 0; top: 0; height: 100%;
  background: var(--primary);
}
.bar-count { font-size: 11px; color: var(--gray); opacity: 0.5; width: 28px; text-align: right; }

.review-list { display: flex; flex-direction: column; gap: 0; }
.review {
  padding: 28px 0;
  border-bottom: 0.5px solid var(--border);
}
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.rev-stars { font-size: 12px; letter-spacing: 2px; color: var(--primary); }
.rev-date { font-size: 11px; color: var(--gray); opacity: 0.5; }
.rev-text { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 10px; font-weight: 300; }
.rev-author { font-size: 11px; color: var(--gray); letter-spacing: 0.5px; opacity: 0.6; }

/* FAQ */
.faq-item {
  border-bottom: 0.5px solid var(--border);
}

.faq-heading {
  margin: 0;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  padding: 22px 0;

  background: none;
  border: none;
  cursor: pointer;

  text-align: left;

  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--primary);

  transition: opacity 0.2s ease;
}

.faq-q:hover {
  opacity: 0.7;
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--gray);

  flex-shrink: 0;

  opacity: 0.5;

  transition:
    transform 0.35s cubic-bezier(.22,1,.36,1),
    opacity 0.25s ease;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
  opacity: 1;
}

/* ACCORDION BODY */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;

  transition:
    grid-template-rows 0.45s cubic-bezier(.22,1,.36,1),
    opacity 0.3s ease;

  opacity: 0;
}

.faq-a > div {
  overflow: hidden;

  font-size: 13px;
  line-height: 1.8;
  color: var(--gray);
  font-weight: 300;

  max-width: 600px;

  padding-right: 24px;
  padding-bottom: 0;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.open .faq-a > div {
  padding-bottom: 22px;
}
/* SIMILAR */
.similar-section {
  padding: 64px 48px;
}
.section-label  {
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--border);
}
.similar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.product-card {
  background: #fff;
  padding: 28px 24px 24px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 10px;
}
.product-card a {
  text-decoration : none;
}
.product-card:hover { background: var(--light); }
.card-img-wrap {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-img-wrap img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform .4s ease, filter .4s ease; 
}
.product-card:hover .card-img-wrap img { 
  transform:scale(1.1);
  filter:drop-shadow(0 12px 24px rgba(1,21,64,.14));
}
.card-name {
  font-size: 13px;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
  text-align: center;
}
.card-rating {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
}
.card-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.card-price {
  font-size: 15px;
  font-weight: 300;
  color: var(--primary);
  letter-spacing: -0.3px;
}
.card-add {
  width: 100%;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--light);
  border: 0.5px solid var(--border);
  border-radius: 50px;
  padding: 11px 12px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
  text-align: center;
}
.card-add:hover { opacity: 0.8; }

/* FOOTER */
footer {
  border-top: 0.5px solid var(--border);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.5px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }

/* STICKY */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 99;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-name { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--light); }
.sticky-price { font-size: 20px; font-weight: 300; color: #fff; letter-spacing: -0.5px; }
.sticky-btn {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 13px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  border-radius: 50px;
  text-decoration:none;
}

/* POPUP */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1,21,64,0.3);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.popup {
  background: #fff;
  border-radius: 20px;
  width: 440px;
  max-width: calc(100vw - 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.35s ease;
}
.popup-overlay.open .popup {
  transform: translateY(0);
}
.popup-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 300;
  color: var(--gray);
  cursor: pointer;
  opacity: 0.5;
  line-height: 1;
  transition: opacity 0.2s;
  z-index: 2;
}
.popup-close:hover { opacity: 1; }
.popup-img {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.popup-img img {
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(1,21,64,0.1));
  transition: transform .4s ease, filter .4s ease;
}
.popup:hover .popup-img img { 
  transform:scale(1.1);
  filter:drop-shadow(0 12px 24px rgba(1,21,64,.14));
}
.popup-body {
  padding: 28px 32px 32px;
}
.popup-name {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.8px;
  color: var(--primary);
  margin-bottom: 8px;
}
.popup-tagline {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0.2px;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 360px;
}
.popup-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--gray);
}
.popup-stars-val { color: var(--primary); letter-spacing: 1px; font-size: 13px; }
.popup-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--border);
}
.popup-price { font-size: 22px; font-weight: 300; letter-spacing: -0.8px; color: var(--primary); }
.popup-price-old { font-size: 14px; color: var(--gray); text-decoration: line-through; opacity: 0.5; }
.popup-save {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(1,21,64,0.06);
  padding: 3px 8px;
}
.popup-btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  border-radius: 50px;
  transition: opacity 0.2s;
}
.popup-btn:hover { opacity: 0.85; }

/* ══════════════════════════════════════════════════════════════
   NOVALYA PRODUCT TEMPLATE — MOBILE RESPONSIVE CSS
   Version mobile complète pour écrans < 768px
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  
  /* ── RESET & BASE ── */
  html, body {
    font-size: 14px;
    overflow-x: hidden;
  }

  /* ── ANNOUNCEMENT BAR ── */
  .announce {
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
    font-size: 10px;
    letter-spacing: 1px;
  }
  
  .announce-btn {
    font-size: 9px;
    padding: 6px 16px;
  }

  /* ── NAVIGATION ── */
  nav {
    height: 56px;
    padding: 0 20px;
  }
  
  .logo {
    font-size: 9px;
    letter-spacing: 2.5px;
  }
  
  .nav-links {
    display: none; /* Masquer sur mobile ou créer un menu burger */
  }
  
  .nav-right {
    gap: 16px;
  }
  
  .nav-cart {
    font-size: 11px;
    gap: 6px;
  }
  

  /* ── BREADCRUMB ── */
  .breadcrumb {
    padding: 12px 20px;
    font-size: 10px;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  /* ── HERO SECTION ── */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  /* Hero Visual */
  .hero-visual {
    padding: 32px 20px 40px;
    min-height: 400px;
  }
  
  .product-img-placeholder {
    width: 100%;
    max-width: 320px;
    height: 320px;
    margin-top: 20px;
  }
  
  .product-img-placeholder img {
    filter: drop-shadow(0 15px 30px rgba(1,21,64,0.12));
  }
  
  /* Hero Info */
  .hero-info {
    padding: 40px 20px;
    border-left: none;
    border-top: 0.5px solid var(--border);
  }
  
  .hero-info h1 {
    font-size: 28px;
    letter-spacing: -1.2px;
    margin-bottom: 8px;
  }
  
  .tagline {
    font-size: 13px;
    margin-bottom: 28px;
    max-width: 100%;
    line-height: 1.6;
  }

  /* ── PRICE ROW ── */
  .price-row {
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 24px;
    margin-top: 24px;
    gap: 10px;
  }
  
  .price {
    font-size: 22px;
    letter-spacing: -0.8px;
  }
  
  .price-old {
    font-size: 15px;
  }
  
  .price-save {
    font-size: 9px;
    padding: 4px 10px;
  }
  
  .rating-line {
    width: 100%;
    margin-left: 0;
    font-size: 12px;
    gap: 8px;
    margin-top: 8px;
  }
  
  .rating-stars {
    font-size: 13px;
  }

  /* ── FEATURES LIST ── */
  .feats {
    margin-bottom: 28px;
  }
  
  .feat {
    padding: 12px 0;
    font-size: 13px;
    gap: 12px;
  }
  
  .feat-dot {
    width: 5px;
    height: 5px;
  }

  /* ── CTA BUTTONS ── */
  .cta-group {
    margin-bottom: 28px;
    gap: 10px;
  }
  
  .btn-primary {
    flex: 1;
    padding: 16px 28px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }
  
  .btn-secondary {
    display: none;
  }

  /* ── TABS SECTION ── */
  .tabs-wrap {
    padding: 0 20px;
  }
  
  .tabs-nav {
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
  }
  
  .tabs-nav::-webkit-scrollbar {
    display: none;
  }
  
  .tab-btn {
    padding: 16px 18px;
    font-size: 10px;
    letter-spacing: 1.2px;
    flex-shrink: 0;
  }
  
  .tab-content {
    padding: 40px 0;
  }
  
  .tab-content h2 {
    font-size: 20px;
    letter-spacing: -0.4px;
    margin-bottom: 14px;
  }
  
  .tab-content h3 {
    font-size: 12px;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    margin-top: 28px;
  }
  
  .tab-content p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 14px;
  }
  
  .tab-content li {
    font-size: 14px;
    padding: 8px 0;
    gap: 10px;
  }

  /* ── FEATURE GRID ── */
  .feature-grid {
    grid-template-columns: 1fr;
    margin: 28px 0;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
  
  .feature-icon {
    font-size: 20px;
  }
  
  .feature-title {
    font-size: 13px;
  }
  
  .feature-desc {
    font-size: 13px;
    line-height: 1.65;
  }

  /* ── FEATURE GRID 2 COLS ── */
  .feature-grid-2 {
    grid-template-columns: 1fr;
    margin: 28px 0;
  }
  
  .feature-card-2 {
    padding: 24px 20px;
  }
  
  .feature-label {
    font-size: 9px;
    margin-bottom: 8px;
  }
  
  .feature-card-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .feature-card-text {
    font-size: 13px;
    line-height: 1.65;
  }

  /* ── INFO TABLE ── */
  .info-table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .info-table th,
  .info-table td {
    padding: 10px 8px;
    font-size: 12px;
  }
  
  .info-table th {
    font-size: 9px;
  }

  /* ── INFO PILLS ── */
  .info-pills {
    margin-top: 8px;
  }
  
  .info-pill {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 0;
  }
  
  .pill-tag {
    font-size: 9px;
    padding: 4px 10px;
  }
  
  .pill-text {
    font-size: 13px;
    line-height: 1.65;
  }

  /* ── STEPPER ── */
  .stepper {
    margin: 28px 0;
  }
  
  .step {
    padding: 20px 0;
    gap: 16px;
  }
  
  .step-num {
    font-size: 10px;
    width: 24px;
  }
  
  .step-title {
    font-size: 13px;
  }
  
  .step-text {
    font-size: 13px;
    line-height: 1.65;
  }

  /* ── TIMELINE ── */
  .timeline {
    grid-template-columns: 1fr;
    margin: 28px 0;
  }
  
  .timeline-item {
    padding: 20px 16px 22px;
  }
  
  .tl-week {
    font-size: 9px;
    margin-bottom: 8px;
  }
  
  .tl-result {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .tl-desc {
    font-size: 12px;
    line-height: 1.55;
  }

  /* ── REVIEWS SECTION ── */
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .reviews-head {
    gap: 14px;
    margin-bottom: 24px;
  }
  
  .score-big {
    font-size: 48px;
    letter-spacing: -1.8px;
  }
  
  .score-stars {
    font-size: 13px;
    letter-spacing: 2px;
  }
  
  .score-count {
    font-size: 11px;
  }
  
  .bar-row {
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .bar-label {
    font-size: 11px;
    width: 32px;
  }
  
  .bar-count {
    font-size: 11px;
    width: 24px;
  }
  
  .review {
    padding: 24px 0;
  }
  
  .review-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 12px;
  }
  
  .rev-stars {
    font-size: 13px;
  }
  
  .rev-date {
    font-size: 11px;
  }
  
  .rev-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
  }
  
  .rev-author {
    font-size: 11px;
  }

  /* ── FAQ ── */
  .faq-q {
    padding: 18px 0;
    font-size: 13px;
    gap: 12px;
  }
  
  .faq-q::after {
    font-size: 24px;
  }
  
  .faq-a > div {
    font-size: 13px;
    line-height: 1.75;
    padding-right: 0;
    max-width: 100%;
  }
  
  .faq-item.open .faq-a > div {
    padding-bottom: 18px;
  }

  /* ── SIMILAR PRODUCTS ── */
  .similar-section {
    padding: 48px 20px;
  }
  
  .section-label {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 28px;
    gap: 12px;
  }
  
  .similar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-card {
    padding: 24px 20px 20px;
  }
  
  .card-img-wrap {
    height: 240px;
    margin-bottom: 16px;
  }
  
  .card-name {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .card-rating {
    font-size: 11px;
    margin-bottom: 16px;
    gap: 6px;
  }
  
  .card-price {
    font-size: 16px;
  }
  
  .card-add {
    font-size: 10px;
    padding: 12px 14px;
  }

  /* ── FOOTER ── */
  footer {
    padding: 28px 20px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    font-size: 11px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  /* ── STICKY BAR ── */
  .sticky-bar {
    padding: 14px 20px;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  
  .sticky-bar > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .sticky-name {
    font-size: 11px;
    letter-spacing: 0.8px;
  }
  
  .sticky-price {
    font-size: 18px;
    letter-spacing: -0.4px;
  }
  
  .sticky-btn {
    padding: 14px 24px;
    font-size: 10px;
    width: 100%;
    text-align: center;
  }

  /* ── POPUP ── */
  .popup {
    width: calc(100vw - 32px);
    max-width: 100%;
    margin: 0 16px;
  }
  
  .popup-close {
    top: 12px;
    right: 16px;
    font-size: 24px;
  }
  
  .popup-img {
    height: 240px;
  }
  
  .popup-img img {
    height: 200px;
  }
  
  .popup-body {
    padding: 24px 24px 28px;
  }
  
  .popup-name {
    font-size: 20px;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
  }
  
  .popup-stars {
    gap: 8px;
    margin-bottom: 18px;
    font-size: 11px;
  }
  
  .popup-stars-val {
    font-size: 13px;
  }
  
  .popup-price-row {
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .popup-price {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
  
  .popup-price-old {
    font-size: 14px;
  }
  
  .popup-save {
    font-size: 9px;
    padding: 4px 10px;
  }
  
  .popup-btn {
    padding: 15px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }

  /* ── TOUCH OPTIMIZATIONS ── */
  .btn-primary,
  .btn-secondary,
  .tab-btn,
  .faq-q,
  .card-add,
  .sticky-btn,
  .popup-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  /* Améliorer la zone de clic */
  .tab-btn,
  .faq-q {
    min-height: 44px;
  }

  /* ── SCROLLBAR CUSTOM (WebKit) ── */
  .tabs-nav::-webkit-scrollbar,
  .breadcrumb::-webkit-scrollbar,
  .info-table::-webkit-scrollbar {
    height: 2px;
  }
  
  .tabs-nav::-webkit-scrollbar-track,
  .breadcrumb::-webkit-scrollbar-track,
  .info-table::-webkit-scrollbar-track {
    background: var(--light);
  }
  
  .tabs-nav::-webkit-scrollbar-thumb,
  .breadcrumb::-webkit-scrollbar-thumb,
  .info-table::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
  }

  /* ── PERFORMANCE & ANIMATIONS ── */
  .product-card:hover .card-img-wrap img {
    transform: none; /* Désactiver sur mobile */
  }
  
  .product-card:active {
    background: var(--light);
    transition: background 0.1s;
  }

}

/* ══════════════════════════════════════════════════════════════
   BREAKPOINTS SUPPLÉMENTAIRES
   ══════════════════════════════════════════════════════════════ */

/* Très petits écrans (< 375px) */
@media (max-width: 374px) {
  .hero-info h1 {
    font-size: 24px;
  }
  
  .product-img-placeholder {
    width: 100%;
    height: 280px;
  }
  
  .similar-grid {
    grid-template-columns: 1fr;
  }
  
  .card-img-wrap {
    height: 200px;
  }
}

/* Tablettes portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-visual {
    padding: 48px 40px 60px;
  }
  
  .hero-info {
    padding: 48px 40px;
  }
  
  .hero-info h1 {
    font-size: 32px;
  }
  
  .product-img-placeholder {
    max-width: 380px;
    height: 380px;
  }
  
  .similar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }
  
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tabs-wrap {
    padding: 0 40px;
  }
  
  .tabs-nav {
    justify-content: center;
  }
  
  .popup {
    width: 460px;
  }
}

/* Landscape mobile (orientation paysage) */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-visual {
    min-height: auto;
    padding: 24px 20px 32px;
  }
  
  .product-img-placeholder {
    height: 240px;
    margin-top: 10px;
  }
  
  .popup-img {
    height: 200px;
  }
  
  .popup-img img {
    height: 160px;
  }
}