
    /* Font fallback while Inter loads */
    body { font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }

    /* ============================================================
   LOADING SCREEN
   ============================================================ */
    #voltride-loader {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    #voltride-loader.fade-out {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .loader-spinner {
      width: 44px;
      height: 44px;
      border: 3px solid #e5e7eb;
      border-top-color: #1a1a1a;
      border-radius: 50%;
      animation: loaderSpin 0.9s linear infinite;
    }

    @keyframes loaderSpin {
      to {
        transform: rotate(360deg);
      }
    }

    /* ============================================================
   COOKIE BANNER. RGPD / EU. preto e branco, mobile-first
   ============================================================ */
    #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      background: #ffffff;
      border-top: 1px solid #e5e7eb;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
      padding: 14px 16px 18px;
      transform: translateY(100%);
      transition: transform 0.35s ease;
      font-family: 'Inter', sans-serif;
    }

    #cookie-banner.visible {
      transform: translateY(0);
    }

    .cookie-inner {
      max-width: 480px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cookie-title {
      font-size: 13px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 2px;
    }

    .cookie-desc {
      font-size: 11.5px;
      color: #6b7280;
      line-height: 1.55;
    }

    .cookie-desc a {
      color: #111111;
      text-decoration: underline;
      text-underline-offset: 2px;
      font-weight: 500;
    }

    .cookie-actions {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .cookie-btn-accept {
      flex: 1;
      background: #111111;
      color: #ffffff;
      border: none;
      border-radius: 6px;
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: background 0.2s;
      text-align: center;
    }

    .cookie-btn-accept:hover {
      background: #000000;
    }

    .cookie-btn-reject {
      flex: 1;
      background: transparent;
      color: #6b7280;
      border: 1px solid #d1d5db;
      border-radius: 6px;
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all 0.2s;
      text-align: center;
    }

    .cookie-btn-reject:hover {
      border-color: #6b7280;
      color: #374151;
    }

    .cookie-gdpr-note {
      font-size: 10.5px;
      color: #9ca3af;
      text-align: center;
      letter-spacing: 0.2px;
    }

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

    :root {
      --bg: #ffffff;
      --card: #ffffff;
      --text: #111111;
      --text-muted: #404040;
      --accent: #0f0f0f;
      --accent-hover: #1a1a1a;
      --danger: #e53935;
      --border: #eaeaea;
      --trustpilot: #00b67a;
      --star: #fbbf24;
      --shadow: 0 1px 3px rgba(0, 0, 0, .06);
      --shadow-lg: 0 4px 12px rgba(0, 0, 0, .08);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 480px;
      margin: 0 auto;
      background: var(--card);
      min-height: 100vh;
      padding-bottom: 120px;
    }

    /* TOP BAR */
    .top-bar {
      background: #1a1a1a;
      color: #fff;
      text-align: center;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .3px;
    }

    .top-bar span {
      color: #ffffff;
      font-weight: 700;
    }


    /* TRUST HEADER */
    .trust-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 16px;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      color: var(--text-muted);
    }

    .trust-header .shield {
      color: var(--accent);
      font-size: 16px;
    }

    /* IMAGE CAROUSEL */
    .carousel {
      position: relative;
      width: 100%;
      aspect-ratio: 4/3;
      overflow: hidden;
      background: #ffffff;
      border-radius: 12px;
    }

    .carousel-track {
      display: flex;
      height: 100%;
      will-change: transform, opacity;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      transform: translate3d(0,0,0);
      transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .carousel-track.no-transition {
      transition: none !important;
    }

    .carousel-slide {
      min-width: 100%;
      height: 100%;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      contain: layout paint;
    }

    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center center;
      display: block;
      transform-origin: center center;
      will-change: transform;
      user-select: none;
      -webkit-user-drag: none;
      padding: 0;
      /* filter removido,causava repaint e travamento na transição */
    }

    /* Progress bar estilo Nike */
    .carousel-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 14px 0 6px;
    }
    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #d4d4d4;
      border: 0;
      padding: 0;
      cursor: pointer;
      transition: width .25s ease, background .25s ease;
    }
    .carousel-dot.active {
      width: 24px;
      background: #111;
    }

    /* Video player premium */
    .carousel-slide video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .video-container {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .video-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 64px;
      height: 64px;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      cursor: pointer;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .25s ease;
    }

    .video-play-btn:hover {
      background: rgba(0, 0, 0, 0.7);
      transform: translate(-50%, -50%) scale(1.08);
    }

    .video-play-btn svg {
      width: 24px;
      height: 24px;
      fill: #fff;
      margin-left: 3px;
    }

    .video-play-btn.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .video-controls {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 12px 16px;
      background: linear-gradient(transparent, rgba(0,0,0,0.5));
      display: flex;
      align-items: center;
      gap: 12px;
      opacity: 0;
      transition: opacity .3s ease;
      z-index: 3;
    }

    .video-container:hover .video-controls,
    .video-container.playing .video-controls {
      opacity: 1;
    }

    .video-controls button {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      display: flex;
      align-items: center;
    }

    .video-controls button svg {
      width: 20px;
      height: 20px;
      fill: #fff;
    }

    .video-progress {
      flex: 1;
      height: 3px;
      background: rgba(255,255,255,0.3);
      border-radius: 2px;
      cursor: pointer;
      position: relative;
    }

    .video-progress-fill {
      height: 100%;
      background: #fff;
      border-radius: 2px;
      width: 0%;
      transition: width .1s linear;
    }

    .video-time {
      font-size: 11px;
      color: #fff;
      font-family: -apple-system, BlinkMacSystemFont, sans-serif;
      min-width: 32px;
      text-align: right;
    }

    .video-mute-btn svg {
      width: 18px;
      height: 18px;
    }

    /* PRODUCT INFO */
    .product-info {
      padding: 0;
    }

    .product-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #fff9ed 0%, #fdf1d6 100%);
  padding: 5px 24px 5px 0;
  border-radius: 999px;
  border: 1px solid #f3c560;
  box-shadow: 0 2px 7px rgba(214, 158, 46, .15);
  margin-bottom: 10px;
  overflow: hidden;
}
.product-badge .badge-trophy {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding: 0 16px 0 11px;
  background: linear-gradient(135deg, #fde08a 0%, #f6c84c 100%);
  clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
}
.product-badge .badge-trophy svg { width: 17px; height: 17px; display: block; }
.product-badge .badge-divider {
  width: 1.5px;
  height: 14px;
  background: #f0a92e;
  border-radius: 2px;
  flex-shrink: 0;
}
.product-badge .badge-rank {
  font-size: 14px;
  font-weight: 900;
  color: #ef8b1f;
  line-height: 1;
  font-style: italic;
  letter-spacing: -.5px;
}
.product-badge .badge-text {
  font-size: 11px;
  font-weight: 800;
  color: #2b2b2b;
  text-transform: uppercase;
  letter-spacing: .3px;
  line-height: 1;
  white-space: nowrap;
}
.product-badge .badge-laurel {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .5;
  pointer-events: none;
}
.product-badge .badge-laurel svg { width: 15px; height: 22px; display: block; }

    .product-title {
      font-size: 19px;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 6px;
    }

    .product-rating {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 12px;
      font-size: 13px;
    }

    .product-rating .stars {
      color: var(--star);
      letter-spacing: 1px;
    }

    .product-rating .count {
      color: var(--text-muted);
    }

    .price-row {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 4px;
    }

    .price-current {
      font-size: 28px;
      font-weight: 800;
      color: #1a1a1a;
    }

    .price-original {
      font-size: 16px;
      color: var(--text-muted);
      text-decoration: line-through;
    }

    .price-installment {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    /* URGENCY */
.urgency-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.65); }
}
.urgency-body {
  flex: 1;
  min-width: 0;
}
.urgency-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ef4444;
  margin-bottom: 4px;
}
.urgency-text {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 9px;
  line-height: 1.3;
}
.stock-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.stock-fill {
  height: 100%;
  width: 18%;
  background: linear-gradient(90deg, #ef4444, #f97316);
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.urgency-count {
  flex-shrink: 0;
  text-align: center;
  line-height: 1;
}
.urgency-count-val {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.urgency-count-unit {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}
    /* VARIANTS */
.variant-section {
  margin-bottom: 20px;
}
.variant-label {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
}
.variant-label strong {
  color: #1a1a1a;
  font-weight: 600;
}
.variant-swatches {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.swatch-wrap {
  position: relative;
  cursor: pointer;
  padding-bottom: 22px;
  min-width: 54px;
}
.swatch-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}
.swatch-ring.active {
  border-color: #1a1a1a;
}
.swatch-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease;
}
.swatch-wrap:hover .swatch-circle {
  transform: scale(1.08);
}
.swatch-wrap.sold-out .swatch-circle {
  opacity: 0.35;
}
.swatch-wrap.sold-out::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 50%;
  width: 24px;
  height: 1.5px;
  background: #9ca3af;
  transform: translateX(-50%) rotate(-45deg);
  pointer-events: none;
}
.swatch-tooltip {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: #6b7280;
  white-space: nowrap;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
}

    /* QUANTITY */
    .qty-section {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .qty-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
    }

    .qty-control {
      display: flex;
      align-items: center;
      border: 2px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }

    .qty-btn {
      width: 36px;
      height: 36px;
      border: none;
      background: #f9fafb;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }

    .qty-btn:hover {
      background: #e5e7eb;
    }

    .qty-value {
      width: 40px;
      text-align: center;
      font-size: 15px;
      font-weight: 700;
      border: none;
      background: transparent;
    }

    /* BUY BUTTON */
    .buy-section {
      padding: 0;
    }

    .buy-btn {
      width: 100%;
      padding: 18px 24px;
      background: linear-gradient(180deg, #2a2a2a 0%, #000000 100%);
      color: #ffffff;
      border: none;
      border-radius: 14px; /* More rounded as requested */
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.2s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      font-family: 'Inter', sans-serif;
    }

    .buy-btn:hover {
      background: linear-gradient(180deg, #404040 0%, #1a1a1a 100%);
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    .buy-btn:active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .buy-btn .btn-icon {
      font-size: 18px;
      display: flex;
      align-items: center;
    }

    .buy-btn .btn-price {
      margin-left: 4px;
    }

    /* PAYMENT ICONS ROW (below buy button) */
    .payment-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      padding: 14px 16px 0;
      flex-wrap: wrap;
    }

    .payment-row img {
      height: 28px;
      width: auto;
      border-radius: 4px;
    }

    .buy-btn .lock {
      font-size: 14px;
    }

    /* BENEFITS */
.benefits {
  display: flex;
  justify-content: space-around;
  padding: 20px 4px 4px;
  border-top: 0.5px solid var(--border);
  margin-top: 16px;
  gap: 4px;
}
.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  padding: 16px 12px 14px;
  border-radius: 12px;
  transition: background 0.18s ease, color 0.18s ease;
  cursor: default;
}
.benefit:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-primary);
}
.benefit .b-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0.5px solid rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.benefit:hover .b-icon {
  border-color: rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.04);
}
.benefit .b-icon i {
  font-size: 20px;
  transition: color 0.18s ease;
}

    /* DESCRIPTION TABS */
    .desc-section {
      padding: 16px;
      border-top: 8px solid var(--bg);
    }

    .desc-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .desc-content {
      font-size: 14px;
      color: #374151;
      line-height: 1.7;
    }

    .desc-content ul {
      padding-left: 20px;
      margin: 8px 0;
    }

    .desc-content li {
      margin-bottom: 6px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin: 14px 0;
    }

    .feature-card {
      background: #f9fafb;
      border-radius: 10px;
      padding: 14px;
      text-align: center;
    }

    .feature-card .f-icon {
      font-size: 28px;
      margin-bottom: 6px;
    }

    .feature-card .f-title {
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .feature-card .f-desc {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* TRUSTPILOT SECTION */
    .reviews-section {
      padding: 16px;
      border-top: 8px solid var(--bg);
    }

    .tp-header {
      text-align: center;
      margin-bottom: 16px;
    }

    .tp-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .tp-logo .tp-star {
      color: var(--trustpilot);
    }

    .tp-overall {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .tp-stars-big {
      display: flex;
      justify-content: center;
      gap: 3px;
      margin-bottom: 6px;
    }

    .tp-star-box {
      width: 20px;
      height: 20px;
      background: transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: transparent;
      font-size: 0;
      border-radius: 0;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect width='24' height='24' fill='%2300b67a'/><path d='M12 5l2.06 4.79 5.21.41-3.95 3.39 1.22 5.06L12 16l-4.54 2.65 1.22-5.06-3.95-3.39 5.21-.41z' fill='%23fff'/></svg>");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }

    .tp-stars-inline {
      display: inline-flex;
      gap: 2px;
      vertical-align: middle;
      margin-right: 4px;
    }

    .tp-star-mini {
      width: 18px;
      height: 18px;
      background: transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: transparent;
      font-size: 0;
      border-radius: 0;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect width='24' height='24' fill='%2300b67a'/><path d='M12 5l2.06 4.79 5.21.41-3.95 3.39 1.22 5.06L12 16l-4.54 2.65 1.22-5.06-3.95-3.39 5.21-.41z' fill='%23fff'/></svg>");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }

    .tp-count {
      font-size: 13px;
      color: var(--text-muted);
    }

    .tp-count strong {
      color: var(--text);
    }

    /* REVIEW CARDS */
    .review-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px;
      margin-bottom: 12px;
    }
    .review-photos {
      display: flex;
      gap: 8px;
      margin-top: 12px;
      flex-wrap: wrap;
    }
    .review-photos img {
      width: 160px;
      height: 160px;
      object-fit: cover;
      border-radius: 10px;
      cursor: zoom-in;
      border: 1px solid var(--border);
      transition: transform .15s ease, border-color .15s ease;
      background: #fafafa;
    }
    .review-photos img:hover {
      transform: scale(1.04);
      border-color: #111;
    }
    @media (max-width: 480px) {
      .review-photos img { width: 120px; height: 120px; }
    }

    .review-top {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .review-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      flex-shrink: 0;
    }

    .review-meta {
      flex: 1;
    }

    .review-name {
      font-size: 14px;
      font-weight: 600;
    }

    .review-date {
      font-size: 11px;
      color: var(--text-muted);
    }

    .review-verified {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 3px 9px 3px 6px;
      background: #ecfdf5;
      border: 1px solid #a7f3d0;
      border-radius: 999px;
      color: #047857;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1px;
      width: fit-content;
      margin-top: 2px;
    }
    .review-verified svg {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
    }

    .review-stars {
      color: var(--star);
      font-size: 13px;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }

    .review-title {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .review-text {
      font-size: 13px;
      color: #4b5563;
      line-height: 1.6;
    }

    .show-more-reviews {
      width: 100%;
      padding: 12px;
      border: 2px solid var(--border);
      border-radius: 10px;
      background: #fff;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      color: var(--text);
      transition: all .2s;
      margin-top: 4px;
    }

    .show-more-reviews:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    /* PAYMENT METHODS */
    .payment-section {
      padding: 16px;
      border-top: 8px solid var(--bg);
      text-align: center;
    }

    .payment-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .payment-icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .payment-icon {
      height: 32px;
      padding: 4px 10px;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
      min-width: 52px;
    }

    .payment-icon img {
      height: 22px;
      width: auto;
    }

    /* STICKY BOTTOM BAR */
    .sticky-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      max-width: none;
      transform: none;
      background: #fff;
      border-top: 1px solid var(--border);
      padding: 12px 0;
      z-index: 100;
      box-shadow: 0 -4px 16px rgba(0, 0, 0, .08);
      display: none;
    }

    .sticky-bar.visible {
      display: block;
    }

    .sticky-bar-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .sticky-bar-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
      min-width: 0;
    }

    .sticky-bar-name {
      font-size: 14px;
      color: #6b7280;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .sticky-bar-price-row {
      display: flex;
      align-items: baseline;
      gap: 10px;
    }

    .sticky-bar-price {
      font-size: 22px;
      font-weight: 800;
      color: #111;
    }

    .sticky-bar-original {
      font-size: 14px;
      color: #9ca3af;
      text-decoration: line-through;
    }

    .sticky-bar-btn {
      flex-shrink: 0;
      background: #111;
      color: #fff;
      border: 0;
      border-radius: 999px;
      padding: 0 42px;
      height: 54px;
      font-family: inherit;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: .2px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background .15s, transform .1s;
    }

    .sticky-bar-btn:hover { background: #000; }
    .sticky-bar-btn:active { transform: scale(.98); }

    @media (max-width: 768px) {
      .sticky-bar { padding: 9px 0; }
      .sticky-bar-inner { padding: 0 14px; gap: 10px; }
      .sticky-bar-name { font-size: 12px; max-width: 42vw; }
      .sticky-bar-price { font-size: 19px; }
      .sticky-bar-original { font-size: 12px; }
      .sticky-bar-btn { height: 48px; padding: 0 18px; font-size: 13.5px; }
      .sticky-bar-btn { border-radius: 10px; }
    }

    @media (max-width: 380px) {
      .sticky-bar-btn { padding: 0 16px; font-size: 13px; }
    }

    /* GUARANTEE */
.guarantee-section {
  padding: 20px 16px;
  border-top: 8px solid var(--bg);
  text-align: center;
}
.guarantee-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #1a1a1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.guarantee-icon i {
  font-size: 24px;
}
.guarantee-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}
.guarantee-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
    /* FAQ */
    .faq-section {
      padding: 16px;
      border-top: 8px solid var(--bg);
    }

    .faq-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 12px;
      text-align: center;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 10px;
      margin-bottom: 8px;
      overflow: hidden;
    }

    .faq-question {
      padding: 14px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      transition: background .2s;
    }

    .faq-question:hover {
      background: #f9fafb;
    }

    .faq-answer {
      padding: 0 14px;
      max-height: 0;
      overflow: hidden;
      transition: all .3s ease;
      font-size: 13px;
      color: #4b5563;
      line-height: 1.7;
    }

    .faq-item.open .faq-answer {
      padding: 0 14px 14px;
      max-height: 300px;
    }

    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
    }

    .faq-chevron {
      transition: transform .3s;
      font-size: 12px;
    }


    /* RODAPÉ FIXO */
    .footer {
      padding: 24px 16px;
      text-align: center;
      border-top: 8px solid var(--bg);
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 40px;
    }

    .footer p {
      margin: 0;
      line-height: 1.6;
    }

    .footer p:first-child {
      font-weight: 600;
      color: var(--text);
    }

    /* FOOTER */
    .footer {
      padding: 24px 16px;
      text-align: center;
      border-top: 8px solid var(--bg);
      font-size: 12px;
      color: var(--text-muted);
    }

    /* ANIMATIONS */
    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .6;
      }
    }

    .pulse {
      animation: pulse 2s infinite;
    }

    @keyframes slideUp {
      from {
        transform: translateY(20px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .benefits-list {
      list-style: none;
      padding: 0;
      margin: 12px 0;
      font-size: 14px;
      color: #1a1a1a;
    }

    .benefits-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }

    .benefits-list li svg {
      color: var(--trustpilot);
      width: 18px;
      height: 18px;
    }

    
    
    
    .payment-line-minimal {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 16px;
      flex-wrap: wrap;
      padding: 0 16px;
    }
    .payment-line-minimal .label {
      font-size: 13px;
      color: #4b5563;
      font-weight: 500;
    }
        .payment-line-minimal img {
      height: 22px;
      width: auto;
      max-width: 70px;
      object-fit: contain;
      filter: none;
      opacity: 1;
      vertical-align: middle;
      margin: 0 5px;
      background: transparent;
      border: none;
    }
    .payment-line-minimal .payment-logos-strip {
      height: 45px;
      max-width: min(100%, 600px);
      width: auto;
      display: block;
      margin: 0;
      vertical-align: middle;
    }
    .payment-row-new {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
      flex-wrap: wrap;
    }

    .payment-box {
      border: 1px solid #e5e7eb;
      border-radius: 6px;
      padding: 6px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      min-width: 56px;
      height: 44px;
    }

    .payment-box img {
      max-height: 32px;
      max-width: 100%;
      object-fit: contain;
    }

    .desc-product-title {
      font-size: 22px;
      font-weight: 900;
      margin: 24px 16px 12px;
      color: #1a1a1a;
      text-align: left;
      letter-spacing: -0.5px;
      line-height: 1.2;
    }

    .desc-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 20px;
      margin: 0 16px 16px;
    }

    .desc-card-title {
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 10px;
      line-height: 1.2;
      text-align: left;
      letter-spacing: -0.4px;
      color: #1a1a1a;
    }

    .desc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 16px;
    }

    .desc-item {
      background: #f9fafb;
      border-radius: 8px;
      padding: 12px;
    }

    .desc-item-title {
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .desc-item-text {
      font-size: 12px;
      color: #6b7280;
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 12px 0;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 13px;
      line-height: 1.4;
    }

    .check-list li::before {
      content: "✅";
      font-size: 14px;
    }

    strong {
      font-weight: 800;
      letter-spacing: 0.3px;
    }


    .review-title {
      font-weight: 800;
    }

    .product-title {
      font-weight: 900;
    }

    .variant-label {
      font-weight: 800;
    }

    .desc-item-title {
      font-weight: 800;
    }



    :root {
      --trustpilot: #00b67a;
      --tp-dark: #1c1c1c;
      --tp-gray: #f1f1f1;
      --tp-text-muted: #6b7280;
    }

    .tp-star-box {
      width: 20px;
      height: 20px;
      background: transparent !important;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: transparent !important;
      font-size: 0 !important;
      border-radius: 0;
      margin-right: 2px;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect width='24' height='24' fill='%2300b67a'/><path d='M12 5l2.06 4.79 5.21.41-3.95 3.39 1.22 5.06L12 16l-4.54 2.65 1.22-5.06-3.95-3.39 5.21-.41z' fill='%23fff'/></svg>") !important;
      background-size: contain !important;
      background-repeat: no-repeat !important;
      background-position: center !important;
    }

    .tp-logo-container {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
      font-weight: 700;
      color: var(--tp-dark);
    }

    .tp-star-icon {
      color: var(--trustpilot);
      font-size: 20px;
    }

    /* GRÁFICO DE AVALIAÇÕES */
    .reviews-summary-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 20px;
      font-family: 'Inter', sans-serif;
    }

    .summary-header {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--tp-dark);
    }

    .summary-tp-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 4px;
    }

    .summary-stats {
      font-size: 14px;
      color: var(--tp-text-muted);
      margin-bottom: 20px;
    }

    .rating-attribute {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
      font-size: 14px;
      color: var(--tp-dark);
    }

    .attribute-stars {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .notes-title {
      font-size: 16px;
      font-weight: 700;
      margin: 20px 0 12px;
      color: var(--tp-dark);
    }

    .bar-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
      font-size: 13px;
    }

    .bar-label {
      width: 100px;
      color: var(--tp-dark);
    }

    .bar-container {
      flex: 1;
      height: 6px;
      background: var(--tp-gray);
      border-radius: 3px;
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      background: #1c1c1c;
    }

    .bar-percent {
      width: 30px;
      text-align: right;
      color: var(--tp-text-muted);
    }


    /* FAQ RESPONSIVO */
    .faq-section {
      padding: 16px;
      border-top: 8px solid var(--bg);
    }

    .faq-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 12px;
      text-align: center;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 10px;
      margin-bottom: 8px;
      overflow: hidden;
    }

    .faq-question {
      padding: 14px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      transition: background .2s;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .faq-question:hover {
      background: #f9fafb;
    }

    .faq-answer {
      padding: 0 14px;
      max-height: 0;
      overflow: hidden;
      transition: all .3s ease;
      font-size: 12px;
      color: #4b5563;
      line-height: 1.7;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .faq-item.open .faq-answer {
      padding: 0 14px 14px;
      max-height: 500px;
    }

    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
    }

    .faq-chevron {
      transition: transform .3s;
      font-size: 12px;
      flex-shrink: 0;
    }





    /* HEADER STICKY */
    .header {
      position: sticky;
      top: 0;
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
      background: #fff;
      border-bottom: 1px solid #e5e7eb;
      padding: 6px 16px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      height: 80px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .header-icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.2s ease;
      position: relative;
      min-width: 44px;
      min-height: 44px;
    }

    .header-icon-btn svg {
      width: 22px;
      height: 22px;
      stroke: #000;
      stroke-width: 1.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .cart-badge {
      position: absolute;
      top: 2px;
      right: 2px;
      background: #000 !important;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }

    /* REMOVER MARGIN-TOP DO CONTAINER PARA STICKY FUNCIONAR CORRETAMENTE */
    .container {
      margin-top: 0 !important;
    }

    @media (max-width: 480px) {
      .header {
        padding: 10px 12px;
      }

      .header-icon-btn {
        width: 36px;
        height: 36px;
      }

      .header-icon-btn svg {
        width: 20px;
        height: 20px;
      }
    }


    .header-right {
      gap: 16px;
    }

    .header-icon-btn {
      width: 36px;
      height: 36px;
    }

    .header-icon-btn svg {
      width: 20px;
      height: 20px;
    }
    }


    .header-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .header-icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.2s ease;
      position: relative;
      min-width: 44px;
      min-height: 44px;
    }

    .header-icon-btn:active {
      opacity: 0.6;
    }

    .header-icon-btn svg {
      width: 22px;
      height: 22px;
      stroke: #1a1a1a;
      stroke-width: 1.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .cart-badge {
      position: absolute;
      top: 0;
      right: 0;
      background: #1a1a1a;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* RESPONSIVO MOBILE */
    @media (max-width: 480px) {
      .header {
        padding: 10px 12px;
      }

      .header-right {
        gap: 16px;
      }

      .header-icon-btn {
        width: 36px;
        height: 36px;
      }

      .header-icon-btn svg {
        width: 20px;
        height: 20px;
      }
    }



    /* LOGO NO HEADER */
    .header-logo {
      height: 66px;
      width: auto;
      max-width: 300px;
      margin-right: auto;
      object-fit: contain;
      display: block;
    }

    @media (max-width: 480px) {
      .header-logo {
        height: 60px;
        max-width: 280px;
      }
    }

    /* LOGO NO RODAPÉ */
    .footer-logo {
      height: 72px;
      width: auto;
      max-width: 320px;
      margin-bottom: 20px;
      object-fit: contain;
    }

    @media (max-width: 480px) {
      .footer-logo {
        height: 64px;
        max-width: 290px;
      }
    }
  
    /* Enquadramento milimétrico do carrossel */
    .carousel-container {
      overflow: hidden;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
    }

    .carousel-item {
      scroll-snap-align: center;
      scroll-snap-stop: always;
      flex-shrink: 0;
      width: 100%;
    }

    
    /* CART MODAL STYLES REMOVED */
      background: white;
      color: #1a1a1a;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 14px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-align: center;
    }

    
    /* CART MODAL STYLES REMOVED */
      background: white;
      color: #1a1a1a;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 14px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-align: center;
    }

    

    .review-card.hidden {
      display: none
    }

    .benefits-list {
      list-style: none;
      padding: 0;
      margin: 12px 0;
      font-size: 14px;
      color: #1a1a1a;
    }

    .benefits-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }

    .benefits-list li svg {
      color: var(--trustpilot);
      width: 18px;
      height: 18px;
    }

    
    
    
    .payment-line-minimal {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 16px;
      flex-wrap: wrap;
      padding: 0 16px;
    }
    .payment-line-minimal .label {
      font-size: 13px;
      color: #4b5563;
      font-weight: 500;
    }
        .payment-line-minimal img {
      height: 22px;
      width: auto;
      max-width: 70px;
      object-fit: contain;
      filter: none;
      opacity: 1;
      vertical-align: middle;
      margin: 0 5px;
      background: transparent;
      border: none;
    }
    .payment-row-new {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
      flex-wrap: wrap;
    }

    .payment-box {
      border: 1px solid #e5e7eb;
      border-radius: 6px;
      padding: 6px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      min-width: 56px;
      height: 44px;
    }

    .payment-box img {
      max-height: 32px;
      max-width: 100%;
      object-fit: contain;
    }

    .desc-product-title {
      font-size: 22px;
      font-weight: 900;
      margin: 24px 16px 12px;
      color: #1a1a1a;
      text-align: left;
      letter-spacing: -0.5px;
      line-height: 1.2;
    }

    .desc-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 20px;
      margin: 0 16px 16px;
    }

    .desc-card-title {
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 10px;
      line-height: 1.2;
      text-align: left;
      letter-spacing: -0.4px;
      color: #1a1a1a;
    }

    .desc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 16px;
    }

    .desc-item {
      background: #f9fafb;
      border-radius: 8px;
      padding: 12px;
    }

    .desc-item-title {
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .desc-item-text {
      font-size: 12px;
      color: #6b7280;
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 12px 0;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 13px;
      line-height: 1.4;
    }

    .check-list li::before {
      content: "✅";
      font-size: 14px;
    }

    strong {
      font-weight: 800;
      letter-spacing: 0.3px;
    }

    .review-title {
      font-weight: 800;
    }

    .product-title {
      font-weight: 900;
    }

    .variant-label {
      font-weight: 800;
    }

    .desc-item-title {
      font-weight: 800;
    }



    :root {
      --trustpilot: #00b67a;
      --tp-dark: #1c1c1c;
      --tp-gray: #f1f1f1;
      --tp-text-muted: #6b7280;
    }

    .tp-star-box {
      width: 20px;
      height: 20px;
      background: transparent !important;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: transparent !important;
      font-size: 0 !important;
      border-radius: 0;
      margin-right: 2px;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect width='24' height='24' fill='%2300b67a'/><path d='M12 5l2.06 4.79 5.21.41-3.95 3.39 1.22 5.06L12 16l-4.54 2.65 1.22-5.06-3.95-3.39 5.21-.41z' fill='%23fff'/></svg>") !important;
      background-size: contain !important;
      background-repeat: no-repeat !important;
      background-position: center !important;
    }

    .tp-logo-container {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
      font-weight: 700;
      color: var(--tp-dark);
    }

    .tp-star-icon {
      color: var(--trustpilot);
      font-size: 20px;
    }

    /* GRÁFICO DE AVALIAÇÕES */
    .reviews-summary-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 20px;
      font-family: 'Inter', sans-serif;
    }

    .summary-header {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--tp-dark);
    }

    .summary-tp-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 4px;
    }

    .summary-stats {
      font-size: 14px;
      color: var(--tp-text-muted);
      margin-bottom: 20px;
    }

    .rating-attribute {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
      font-size: 14px;
      color: var(--tp-dark);
    }

    .attribute-stars {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .notes-title {
      font-size: 16px;
      font-weight: 700;
      margin: 20px 0 12px;
      color: var(--tp-dark);
    }

    .bar-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
      font-size: 13px;
    }

    .bar-label {
      width: 100px;
      color: var(--tp-dark);
    }

    .bar-container {
      flex: 1;
      height: 6px;
      background: var(--tp-gray);
      border-radius: 3px;
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      background: #1c1c1c;
    }

    .bar-percent {
      width: 30px;
      text-align: right;
      color: var(--tp-text-muted);
    }


    /* FAQ RESPONSIVO */
    .faq-section {
      padding: 16px;
      border-top: 8px solid var(--bg);
    }

    .faq-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 12px;
      text-align: center;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 10px;
      margin-bottom: 8px;
      overflow: hidden;
    }

    .faq-question {
      padding: 14px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      transition: background .2s;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .faq-question:hover {
      background: #f9fafb;
    }

    .faq-answer {
      padding: 0 14px;
      max-height: 0;
      overflow: hidden;
      transition: all .3s ease;
      font-size: 12px;
      color: #4b5563;
      line-height: 1.7;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .faq-item.open .faq-answer {
      padding: 0 14px 14px;
      max-height: 500px;
    }

    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
    }

    .faq-chevron {
      transition: transform .3s;
      font-size: 12px;
      flex-shrink: 0;
    }



    /* HEADER STICKY */
    .header {
      position: sticky;
      top: 0;
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
      background: #fff;
      border-bottom: 1px solid #e5e7eb;
      padding: 6px 16px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      height: 80px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .header-icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.2s ease;
      position: relative;
      min-width: 44px;
      min-height: 44px;
    }

    .header-icon-btn svg {
      width: 22px;
      height: 22px;
      stroke: #000;
      stroke-width: 1.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .cart-badge {
      position: absolute;
      top: 2px;
      right: 2px;
      background: #000 !important;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }

    /* REMOVER MARGIN-TOP DO CONTAINER PARA STICKY FUNCIONAR CORRETAMENTE */
    .container {
      margin-top: 0 !important;
    }

    @media (max-width: 480px) {
      .header {
        padding: 10px 12px;
      }

      .header-icon-btn {
        width: 36px;
        height: 36px;
      }

      .header-icon-btn svg {
        width: 20px;
        height: 20px;
      }
    }


    .header-icon-btn {
      width: 36px;
      height: 36px;
    }

    .header-icon-btn svg {
      width: 20px;
      height: 20px;
    }
    }


    /* LOGO NO HEADER */
    .header-logo {
      height: 66px;
      width: auto;
      max-width: 300px;
      margin-right: auto;
      object-fit: contain;
    }

    @media (max-width: 480px) {
      .header-logo {
        height: 60px;
        max-width: 280px;
      }
    }

    /* LOGO NO RODAPÉ */
    .footer-logo {
      height: 72px;
      width: auto;
      max-width: 320px;
      margin-bottom: 20px;
      object-fit: contain;
    }

    @media (max-width: 480px) {
      .footer-logo {
        height: 64px;
        max-width: 290px;
      }
    }
  

    /* CART MODAL STYLES */
    #cart-modal {
      display: none;
      position: fixed;
      z-index: 100001;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      align-items: center;
      justify-content: center;
      padding: 12px;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }
    #cart-modal.visible {
      display: flex;
    }
    .cart-modal-content {
      background: white;
      width: 100%;
      max-width: 420px;
      max-height: 92vh;
      overflow-y: auto;
      border-radius: 20px;
      position: relative;
      padding: 20px;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      animation: modalSlideUp 0.3s ease-out;
    }
    @keyframes modalSlideUp {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    .cart-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      background: #f3f4f6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 28px;
      line-height: 1;
      font-weight: 400;
      color: #1a1a1a;
      border: none;
    }
    .cart-status-badge {
      display: inline-flex;
      align-items: center;
      background: #f0fdf4;
      color: #15803d;
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .cart-modal-title {
      font-size: 22px;
      font-weight: 900;
      color: #1a1a1a;
      margin-bottom: 4px;
      letter-spacing: -0.5px;
    }
    .cart-modal-subtitle {
      font-size: 13px;
      color: #6b7280;
      margin-bottom: 18px;
    }
    .cart-item-card {
      border: 1px solid #f3f4f6;
      border-radius: 16px;
      padding: 12px;
      display: flex;
      gap: 12px;
      margin-bottom: 18px;
      align-items: center;
    }
    .cart-item-image {
      width: 90px;
      height: 90px;
      flex-shrink: 0;
      background: #f9fafb;
      border-radius: 16px;
      object-fit: contain;
    }
    .cart-item-info {
      flex: 1;
    }
    .cart-item-brand {
      font-size: 12px;
      text-transform: uppercase;
      color: #9ca3af;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }
    .cart-item-name {
      font-size: 15px;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 2px;
    }
    .cart-item-variant {
      font-size: 12px;
      color: #6b7280;
      margin-bottom: 8px;
    }
    .cart-item-price-row {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .cart-item-price-current {
      font-size: 18px;
      font-weight: 900;
      color: #1a1a1a;
    }
    .cart-item-price-original {
      font-size: 13px;
      color: #9ca3af;
      text-decoration: line-through;
    }
    .cart-item-discount-badge {
      background: #1a1a1a;
      color: white;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 8px;
      border-radius: 6px;
    }
    .cart-summary {
      border-top: 1px solid #f3f4f6;
      padding-top: 14px;
      margin-bottom: 18px;
    }
    .summary-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
      font-size: 14px;
      color: #4b5563;
    }
    .summary-row.total {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid #f3f4f6;
      font-size: 17px;
      font-weight: 900;
      color: #1a1a1a;
    }
    .cart-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .btn-checkout {
      background: linear-gradient(180deg, #2a2a2a 0%, #000000 100%);
      color: #ffffff;
      border: none;
      border-radius: 14px; /* More rounded as requested */
      padding: 18px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.2s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .btn-checkout:hover {
      background: linear-gradient(180deg, #404040 0%, #1a1a1a 100%);
      transform: translateY(-1px);
    }
    .btn-continue {
      background: transparent;
      color: #6b7280;
      border: none;
      border-radius: 100px;
      padding: 12px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      transition: all 0.2s ease;
    }
    .btn-continue:hover {
      color: #1a1a1a;
      text-decoration: underline;
    }

    /* ===== UK MINIMALIST REDESIGN ===== */
    body { background:#fff; color:#111; font-size:16px; line-height:1.6; }

    /* Header with nav — strong override of old .header rules */
    .header {
      background:#fff !important;
      border-bottom:1px solid #eaeaea !important;
      box-shadow:0 1px 2px rgba(0,0,0,.04) !important;
      position:sticky !important;
      top:0 !important;
      z-index:100 !important;
      width:100% !important;
      max-width:none !important;
      height:auto !important;
      padding:0 !important;
      display:block !important;
      justify-content:initial !important;
      align-items:initial !important;
      margin:0 !important;
    }
    .header-inner { display:flex; align-items:center; max-width:1280px; margin:0 auto; padding:16px 28px; gap:32px; }
    .header-logo { height:30px !important; width:auto; max-width:230px !important; flex-shrink:0; object-fit:contain; }
    .header-nav { display:flex; gap:28px; align-items:center; flex:1; }
    .header-nav a { color:#111; text-decoration:none; font-size:16px; font-weight:600; letter-spacing:.1px; }
    .header-nav a:first-child { font-weight:700; }
    .header-nav a:hover { color:#000; }
    .header-icons { display:flex; gap:14px; margin-left:auto; }
    .header-icons .header-icon-btn { background:transparent; border:0; cursor:pointer; padding:6px; color:#111; }
    .header-icons .header-icon-btn svg { width:22px; height:22px; stroke:#111; stroke-width:1.6; fill:none; }
    .header-mobile-toggle { display:none !important; }
    @media (max-width:900px) {
      .header-inner { gap:12px; padding:13px 16px; }
      .header-logo { height:26px !important; max-width:180px !important; }
      .header-nav { display:none; position:absolute; top:100%; left:0; right:0; background:#fff; flex-direction:column; padding:16px 20px; border-bottom:1px solid #eaeaea; gap:16px; z-index:60; }
      .header-nav.open { display:flex; }
      .header-mobile-toggle { display:none !important; }
      .header-icons { margin-left:0; gap:6px; }
    }

    /* Top bar */
    .top-bar { background:#0f0f0f; color:#fff; text-align:center; padding:10px 16px; font-size:13px; letter-spacing:.3px; }
    .top-bar span { font-weight:700; }

    /* Hero 2 columns */
    .hero-grid { display:grid; grid-template-columns:1.2fr 1fr; gap:48px; max-width:1200px; margin:0 auto; padding:32px 24px; align-items:start; }
    /* min-width:0 impede que as colunas do grid expandam além do ecrã por causa
       do conteúdo largo (ex.: a fila de miniaturas com overflow-x). */
    .hero-left, .hero-right { min-width:0; }
    @media (max-width:900px) { .hero-grid { grid-template-columns:1fr; gap:24px; padding:16px; } }

    /* Carousel thumbnails strip */
    .carousel-thumbs { display:flex; gap:10px; margin-top:14px; overflow-x:auto; padding-bottom:4px; min-width:0; max-width:100%; }
    .carousel-thumb { flex:0 0 70px; height:70px; border:1.5px solid #eaeaea; border-radius:10px; overflow:hidden; cursor:pointer; padding:4px; background:#fff; transition:border-color .15s; }
    .carousel-thumb:hover, .carousel-thumb.active { border-color:#111; }
    .carousel-thumb img { width:100%; height:100%; object-fit:contain; display:block; }

    /* Mini category label above title */
    .product-category-label { font-size:12px; color:#888; text-transform:uppercase; letter-spacing:1.6px; font-weight:600; margin-bottom:8px; display:block; }

    /* Product title bigger and bolder */
    .product-title { font-size:32px !important; font-weight:800 !important; line-height:1.15 !important; color:#111; margin:8px 0 6px; }
    @media (max-width:768px) { .product-title { font-size:24px !important; } }

    /* Price discount badge */
    .price-row { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin:18px 0 6px; }
    .price-current { font-size:34px; font-weight:800; color:#111; }
    .price-original { font-size:18px; color:#999; text-decoration:line-through; font-weight:500; }
    .price-discount-badge {
      background: linear-gradient(180deg, #ef4444 0%, #b91c1c 100%);
      color: #fff;
      padding: 5px 9px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .4px;
      text-transform: uppercase;
      box-shadow: 0 2px 6px rgba(185, 28, 28, .25), inset 0 1px 0 rgba(255, 255, 255, .15);
      display: inline-flex;
      align-items: center;
      line-height: 1;
    }

    /* CTA button override */
    .buy-btn { background:#111 !important; color:#fff !important; border:0 !important; border-radius:999px !important; height:56px; width:100%; font-family:inherit; font-size:16px !important; font-weight:700 !important; letter-spacing:.2px; display:inline-flex !important; align-items:center !important; justify-content:center !important; gap:0 !important; cursor:pointer; transition:background .15s; padding:0 24px; }
    .buy-btn:hover { background:#000 !important; }
    .buy-btn .buy-btn-icon { stroke:#fff; flex-shrink:0; }
    .buy-btn span { line-height:1; }

    /* Secure payment row */
    .secure-payment { margin-top:20px; text-align:center; }
    .secure-payment-label { font-size:11px; letter-spacing:1.8px; color:#888; font-weight:700; text-transform:uppercase; margin-bottom:12px; }
    .secure-payment-logos { display:flex; justify-content:center; gap:8px; flex-wrap:wrap; align-items:center; }
    .pay-card { background:#fff; border:1px solid #e6e6e6; border-radius:6px; padding:0; width:46px; height:30px; display:inline-flex; align-items:center; justify-content:center; box-sizing:border-box; box-shadow:0 1px 2px rgba(0,0,0,.04); overflow:hidden; }
    .pay-card svg { display:block; width:38px; height:22px; }
    @media (max-width:480px) {
      .pay-card { width:40px; height:26px; }
      .pay-card svg { width:32px; height:18px; }
      .secure-payment-logos { gap:6px; }
    }

    /* Description section minimalist */
    .description-section { max-width:1080px; margin:60px auto; padding:0 24px; }
    .description-section h2 { font-size:28px; font-weight:800; margin-bottom:20px; color:#111; }
    .description-section h3 { font-size:18px; font-weight:700; margin:28px 0 10px; color:#111; }
    .description-section p { color:#333; line-height:1.7; margin-bottom:14px; }
    .description-section ul { list-style:none; padding:0; margin:14px 0; }
    .description-section ul li { padding-left:18px; position:relative; margin-bottom:8px; color:#333; line-height:1.6; }
    .description-section ul li::before { content:"•"; position:absolute; left:0; color:#111; font-weight:700; }
    .description-section table { width:100%; border-collapse:collapse; margin:16px 0; }
    .description-section table td { padding:10px 12px; border-bottom:1px solid #eaeaea; font-size:14px; }
    .description-section table td:first-child { color:#555; width:40%; }
    .description-section table td:last-child { color:#111; font-weight:600; }

    /* Benefits minimal icons */
    .benefits { background:transparent !important; border-top:1px solid #eaeaea; border-bottom:1px solid #eaeaea; padding:32px 16px !important; max-width:1200px; margin:0 auto; }
    .benefits .benefit { color:#111 !important; font-weight:600; font-size:13px; text-align:center; gap:10px; display:flex; flex-direction:column; align-items:center; }
    .benefits .b-icon { background:transparent !important; border:1.5px solid #333 !important; color:#333 !important; width:46px; height:46px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; }
    .benefits .b-icon i { font-size:22px; color:#333; }

    /* Urgency minimalist */
    .urgency-bar { background:#fff !important; border:1px solid #eaeaea !important; border-radius:6px; color:#111 !important; }
    .urgency-bar .urgency-text { color:#111 !important; font-weight:600; }
    .urgency-bar .urgency-dot { background:#e53935; }

    /* Footer 4 columns */
    .footer { background:#0f0f0f; color:#bbb; padding:48px 24px 24px; margin-top:60px; }
    .footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:32px; max-width:1200px; margin:0 auto; }
    .footer-brand { text-align:left; }
    .footer-brand-logo { display:block; width:200px; max-width:100%; height:auto; margin-bottom:22px; }
    .footer-contact { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:16px; max-width:340px; }
    .footer-contact li { display:flex; gap:12px; align-items:flex-start; margin:0; }
    .footer-contact svg { width:18px; height:18px; flex:0 0 18px; margin-top:2px; color:#8DC81A; }
    .footer-contact b { display:block; color:#fff; font-size:13px; font-weight:700; margin-bottom:3px; }
    .footer-contact span { display:block; color:#bbb; font-size:14px; line-height:1.5; }
    .footer-contact a { color:#bbb; text-decoration:none; font-size:14px; }
    .footer-contact a:hover { color:#fff; }
    .footer-col h4 { color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:1px; font-weight:700; margin-bottom:14px; }
    .footer-col ul { list-style:none; padding:0; margin:0; }
    .footer-col li { margin-bottom:8px; }
    .footer-col a { color:#bbb; text-decoration:none; font-size:14px; }
    .footer-col a:hover { color:#fff; }
    .footer-social { display:flex; gap:12px; margin-top:4px; }
    .footer-social a { display:inline-flex; width:34px; height:34px; border:1px solid #444; border-radius:50%; align-items:center; justify-content:center; }
    .footer-social svg { width:16px; height:16px; stroke:#bbb; }
    .footer-bottom { max-width:1200px; margin:32px auto 0; padding-top:20px; border-top:1px solid #2a2a2a; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12px; }
    .footer-bottom a { color:#bbb; text-decoration:none; }
    .footer-bottom a:hover { color:#fff; }
    @media (max-width:768px) {
      .footer-grid { grid-template-columns:repeat(2, 1fr); }
      .footer-brand { grid-column:1 / -1; }
      .footer-bottom { flex-direction:column; text-align:center; }
    }
    @media (max-width:480px) {
      .footer-grid { grid-template-columns:1fr; }
    }

    /* Sticky bar minimalist */
    .sticky-bar { background:#fff !important; border-top:1px solid #eaeaea; box-shadow:0 -2px 12px rgba(0,0,0,.06); }
    .sticky-bar-price { color:#111 !important; font-weight:800; }

    /* Hide old description card styles within new flow */
    .description-section .desc-card { background:transparent !important; box-shadow:none !important; padding:0 !important; }
    .description-section .desc-card-title { color:#111 !important; font-weight:700; }

    /* ===== RESPONSIVE OVERRIDES — REDESIGN FIX ===== */
    /* Force container fluid and avoid old fixed widths */
    .container { max-width:1200px; margin:0 auto; padding:0 24px; }
    @media (max-width:768px) { .container { padding:0 16px; } }

    /* Hero: force minimum desktop sizes regardless of older inline styles */
    @media (min-width:901px) {
      .hero-grid { padding:40px 24px; gap:56px; }
      .product-title { font-size:34px !important; line-height:1.15 !important; }
      .price-current { font-size:36px; }
      .price-original { font-size:20px; }
      .buy-btn { font-size:17px !important; height:56px; }
      .product-info p { font-size:15px; }
      .product-badge { transform:scale(1); }
      .product-info { padding:0 !important; }
    }

    /* Mobile cleanups: stack hero, reduce paddings, keep natural left alignment */
    @media (max-width:900px) {
      .hero-grid { grid-template-columns:1fr; padding:14px 16px 24px; gap:18px; }
      .carousel { max-width:100%; }
      .carousel-thumbs { padding-bottom:6px; }
      .carousel-thumb { flex:0 0 56px; height:56px; }
      .hero-right { padding:0; text-align:left; }
      .hero-right .product-info { padding:0 !important; }
      .hero-right .buy-section { padding:0 !important; }
      .hero-right .product-badge { margin-left:0; }
      .hero-right .price-row { justify-content:flex-start; }
      .hero-right .variant-swatches { justify-content:flex-start; }
      /* Only centre the standalone elements: CTA already full-width, secure payment + benefits row */
      .hero-right .secure-payment { text-align:center; }
      .buy-btn { padding:0 18px !important; }
      .product-title { font-size:22px !important; line-height:1.2 !important; text-align:left; }
      .price-current { font-size:28px; }
      .price-original { font-size:16px; }
      .price-discount-badge { font-size:11px; padding:4px 7px; }
      .buy-btn { font-size:15px !important; height:50px; }
      .description-section { margin:32px auto; padding:0 16px; text-align:left; }
      .description-section h2 { font-size:22px; margin-bottom:14px; }
      .description-section h3 { font-size:16px; margin:20px 0 8px; }
      .description-section p, .description-section li { font-size:14px; }
      .description-section table td { font-size:13px; padding:8px 10px; }
      .benefits { padding:20px 12px !important; gap:8px; justify-content:space-around; }
      .benefits .benefit { font-size:11px; }
      .benefits .b-icon { width:40px; height:40px; }
      .benefits .b-icon i { font-size:18px; }
      .reviews-section { text-align:left; }
    }

    /* Hide redundant old footer-logo/payment-section that conflict with new footer */
    .footer-logo, .payment-section, [class*="payment-line-minimal"] { display:none !important; }

    /* Clean up old top-bar margins */
    .container > .top-bar { display:none; }

    /* Ensure new sections don't get squeezed by container width on desktop */
    @media (min-width:1201px) {
      .description-section { max-width:920px; }
    }

    /* Remove old urgency dark background, simplify visually */
    .urgency-bar { box-shadow:none !important; padding:10px 12px !important; gap:10px; }
    .urgency-bar .urgency-body { color:#111 !important; }
    .urgency-bar .urgency-count-val { color:#e53935 !important; }
    .urgency-bar .stock-bar { background:#f3f3f3 !important; }
    .urgency-bar .stock-bar-fill { background:#e53935 !important; }

    /* Tidy variant section spacing */
    .variant-section { margin:18px 0 10px; }
    .variant-label { font-size:14px; color:#111; margin-bottom:8px; }
    .variant-label strong { font-weight:700; }
    .variant-swatches { gap:14px 16px !important; flex-wrap:wrap !important; }
    .swatch-wrap { cursor:pointer; position:relative; padding-bottom:0 !important; min-width:auto !important; display:flex !important; flex-direction:column !important; align-items:center !important; gap:6px; width:auto; }
    .swatch-ring { border:1.5px solid #ddd !important; padding:2px !important; border-radius:50% !important; transition:border-color .15s; width:38px !important; height:38px !important; box-sizing:border-box; }
    .swatch-ring.active { border-color:#111 !important; }
    .swatch-circle { width:28px !important; height:28px !important; border-radius:50% !important; box-shadow:none !important; }
    .swatch-tooltip { position:static !important; transform:none !important; left:auto !important; bottom:auto !important; font-size:11px !important; color:#555 !important; text-align:center; line-height:1.1; }

    /* Reviews section margin clean-up for new minimalist context */
    .reviews-section { max-width:1080px; margin:60px auto; padding:0 24px; }
    @media (max-width:768px) {
      .reviews-section { margin:32px auto; padding:0 16px; }
    }

    /* Hide ribbons/banners that may have remained from old design */
    .desc-product-title { display:none !important; }
    .guarantee-section { display:none !important; }
    .desc-grid, .desc-item, .desc-card { display:block !important; }
    .desc-card { margin:0 !important; }

    /* Payment methods image (single image, replaces inline SVG cards) */
    .secure-payment-img { display:block; margin:0 auto; max-width:340px; width:100%; height:auto; }
    @media (max-width:480px) { .secure-payment-img { max-width:300px; } }

    /* ===== MINI CART DRAWER (slide-in from left) ===== */
    .mini-cart {
      display:none !important;
      position:fixed !important;
      inset:0 !important;
      z-index:9000 !important;
      background:transparent !important;
      padding:0 !important;
      align-items:initial !important;
      justify-content:initial !important;
    }
    .mini-cart.visible { display:block !important; }
    .mini-cart-backdrop {
      position:absolute; inset:0;
      background:rgba(0,0,0,.35);
      opacity:0;
      transition:opacity .3s ease;
    }
    .mini-cart.visible .mini-cart-backdrop { opacity:1; }
    .mini-cart-panel {
      position:absolute;
      left:0; top:0;
      width:100%;
      max-width:480px;
      height:100%;
      background:#fff;
      display:flex;
      flex-direction:column;
      transform:translateX(-100%);
      transition:transform .35s cubic-bezier(.2,.8,.2,1);
      box-shadow:6px 0 24px rgba(0,0,0,.14);
      box-sizing:border-box;
    }
    .mini-cart.visible .mini-cart-panel { transform:translateX(0); }
    .mini-cart-header {
      display:flex; justify-content:space-between; align-items:center;
      padding:18px 22px;
      border-bottom:1px solid #eee;
      flex-shrink:0;
    }
    .mini-cart-title {
      display:flex; align-items:center; gap:10px;
      font-size:17px; font-weight:700; color:#111;
    }
    .mini-cart-close {
      background:transparent; border:1px solid #ddd; border-radius:50%;
      width:34px; height:34px; cursor:pointer;
      display:inline-flex; align-items:center; justify-content:center;
      padding:0;
    }
    .mini-cart-close:hover { background:#f5f5f5; }
    .mini-cart-shipping-banner {
      display:flex; gap:10px; align-items:center;
      background:#eef3f8;
      margin:14px 22px 0;
      padding:11px 14px;
      border-radius:8px;
      font-size:14px; color:#0a1933;
      flex-shrink:0;
    }
    .mini-cart-body { flex:1 1 auto; overflow-y:auto; padding:6px 22px; }
    .mini-cart-item {
      display:grid;
      grid-template-columns:80px 1fr auto;
      gap:14px;
      align-items:flex-start;
      padding:18px 0;
      border-bottom:1px solid #eee;
    }
    .mini-cart-item-img {
      width:80px; height:80px;
      object-fit:cover;
      border-radius:6px;
      background:#f5f5f5;
    }
    .mini-cart-item-name {
      font-size:14px; font-weight:600; color:#111;
      line-height:1.4;
    }
    .mini-cart-item-name .cart-item-brand { font-weight:700; }
    .mini-cart-item-variant, .mini-cart-item-qty {
      font-size:12px; color:#777; margin-top:5px;
    }
    .mini-cart-item-side {
      display:flex; flex-direction:column; align-items:flex-end;
      justify-content:space-between; height:80px;
    }
    .mini-cart-item-price {
      font-size:15px; font-weight:800; color:#111; white-space:nowrap;
    }
    .mini-cart-item-remove { background:transparent; border:0; cursor:pointer; padding:4px; }
    .mini-cart-item-remove:hover svg { stroke:#e53935; }
    .mini-cart-footer {
      padding:18px 22px 22px;
      border-top:1px solid #eee;
      flex-shrink:0;
    }
    .mini-cart-summary { margin-bottom:14px; }
    .mini-cart-row {
      display:flex; justify-content:space-between;
      padding:8px 0;
      font-size:14px; color:#444;
    }
    .mini-cart-row:not(.mini-cart-total) { border-bottom:1px solid #eee; }
    .mini-cart-total {
      font-size:18px; font-weight:800; color:#111;
      padding-top:14px;
    }
    .mini-cart-shipping-free { color:#16a34a; font-weight:700; }
    .mini-cart-gift { background:#f6f9f6; border-radius:10px; }
    .mini-cart-gift-label { font-size:12px; font-weight:700; color:#16a34a; margin-bottom:2px; }
    .mini-cart-gift .gift-free { color:#16a34a; font-weight:800; }
    .mini-cart-gift .gift-old { color:#9ca3af; text-decoration:line-through; font-weight:600; font-size:12px; }
    .mini-cart-checkout {
      width:100%;
      display:inline-flex !important; align-items:center !important; justify-content:center !important; gap:10px !important;
      background:#0a1933 !important;
      color:#fff !important;
      height:56px !important;
      border-radius:12px !important;
      font-weight:700 !important;
      font-size:16px !important;
      text-decoration:none !important;
      box-sizing:border-box;
    }
    .mini-cart-checkout:hover { background:#11244a !important; }
    .mini-cart-secure {
      display:flex; gap:6px; align-items:center; justify-content:center;
      font-size:12px; color:#777;
      margin:14px 0 10px;
    }
    .mini-cart-paylogos { display:flex; align-items:center; justify-content:center;
      gap:7px; flex-wrap:wrap; max-width:380px; margin:0 auto; }
    .mini-cart-paylogos img { height:28px; width:auto; display:block; }
    /* UK payment method chips — plain text labels (no logo artwork) */
    .uk-pay-row {
      display:flex; justify-content:center; gap:6px; flex-wrap:wrap;
      margin: 6px auto 14px; max-width: 380px;
    }
    .uk-pay-chip {
      background:#fff; border:1px solid #d1d5db; border-radius:6px;
      padding:6px 10px; height:30px;
      display:inline-flex; align-items:center; justify-content:center;
      font-family: -apple-system, 'Segoe UI', Roboto, sans-serif;
      font-size:11px; font-weight:700; color:#1f2937; letter-spacing:.3px;
      box-shadow: 0 1px 2px rgba(0,0,0,.04);
      white-space:nowrap;
    }
    @media (max-width:520px) {
      .mini-cart-panel { max-width:100%; }
    }

    /* Old centered modal styles neutralised so they don't reach the new drawer */
    .cart-modal-content { all:unset !important; }
    .cart-status-badge, .cart-modal-title, .cart-modal-subtitle,
    .cart-item-card, .cart-item-info, .cart-item-discount-badge,
    .cart-summary, .summary-row, .cart-actions, .btn-continue {
      all:unset !important;
    }
    .cart-modal-close { display:none !important; }

    /* ===== ADDED-TO-CART TOAST ===== */
    .added-toast {
      position:fixed;
      bottom:28px;
      left:50%;
      transform:translateX(-50%) translateY(20px);
      background:#fff;
      border:1px solid #eaeaea;
      border-radius:999px;
      padding:10px 22px 10px 14px;
      font-size:14px; font-weight:600; color:#111;
      display:inline-flex; align-items:center; gap:10px;
      box-shadow:0 10px 30px rgba(0,0,0,.14);
      opacity:0;
      transition:opacity .28s ease, transform .28s ease;
      pointer-events:none;
      z-index:9500;
      white-space:nowrap;
    }
    .added-toast.visible {
      opacity:1;
      transform:translateX(-50%) translateY(0);
    }
    .added-toast-icon {
      width:22px; height:22px;
      background:#111;
      border-radius:50%;
      display:inline-flex; align-items:center; justify-content:center;
      flex-shrink:0;
    }

    /* Details toggle styling */
    .details-toggle { background:transparent; border:1px solid #ddd; border-radius:6px; padding:10px 16px; cursor:pointer; display:inline-flex; align-items:center; gap:8px; font-size:14px; font-weight:600; color:#111; margin-top:14px; transition:background .15s; }
    .details-toggle:hover { background:#f5f5f5; }
    .details-collapsible { max-height:0; overflow:hidden; transition:max-height .3s ease; }
    .details-collapsible.open { max-height:3000px; }
    .details-toggle[aria-expanded="true"] .details-toggle-icon { transform:rotate(180deg); }
    .details-toggle-icon { transition:transform .2s; }

    

  .announce-bar {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 9px 14px;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: .2px;
    overflow: hidden;
  }
  /* Feste Hoehe, damit beim Wechsel nichts springt. */
  .announce-track { position: relative; height: 1.3em; }
  .announce-msg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-weight: 500;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .45s ease, transform .45s ease;
    pointer-events: none;
  }
  .announce-msg.is-active { opacity: 1; transform: none; }
  .announce-msg b { font-weight: 700; }
  @media (max-width: 560px) { .announce-bar { font-size: 12px; padding: 8px 12px; } }
  @media (max-width: 360px) { .announce-bar { font-size: 11.5px; } }
  @media (prefers-reduced-motion: reduce) {
    .announce-msg { transition: none; }
  }


  .crumbs { max-width: 1200px; margin: 0 auto; padding: 16px 24px 0; }
  .crumbs-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 8px;
    font-size: 12.5px; line-height: 1.3;
    white-space: nowrap; overflow: hidden;
  }
  .crumbs-list li { display: flex; align-items: center; min-width: 0; }
  .crumbs-list a { color: #6b7280; text-decoration: none; transition: color .15s ease; }
  .crumbs-list a:hover { color: #111; text-decoration: underline; text-underline-offset: 2px; }
  .crumbs-sep { color: #c4c8cf; flex: 0 0 auto; display: inline-flex; }
  .crumbs-sep svg { display: block; }
  .crumbs-current {
    color: #111; font-weight: 600;
    overflow: hidden; text-overflow: ellipsis; min-width: 0;
  }
  @media (max-width: 900px) { .crumbs { padding: 12px 16px 0; } }
  @media (max-width: 480px) { .crumbs { padding: 10px 16px 0; } .crumbs-list { font-size: 12px; gap: 6px; } }


  .bb-gal-wrap { display:flex; flex-direction:column; gap:10px; width:100%; max-width:100%; }
  .bb-gal-thumbs {
    display:flex; flex-direction:row; gap:6px; overflow-x:auto; overflow-y:hidden;
    scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; scrollbar-width:none;
    order:2; padding-bottom:2px;
  }
  .bb-gal-thumbs::-webkit-scrollbar { display:none; }
  .bb-gal-thumb {
    flex:0 0 auto; width:90px; height:60px; border-radius:5px; overflow:hidden; cursor:pointer;
    background:#f2f2f2; border:2px solid transparent; scroll-snap-align:start; padding:0;
    transition:border-color .15s ease, opacity .15s ease; opacity:.72;
  }
  .bb-gal-thumb:hover { opacity:1; }
  .bb-gal-thumb.is-active { border-color:#111; opacity:1; }
  .bb-gal-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
  .bb-gal-main {
    position:relative; order:1; border-radius:8px; overflow:hidden; background:#f2f2f2;
    aspect-ratio:3 / 2; width:100%; user-select:none; touch-action:pan-y;
  }
  .bb-gal-main-img {
    width:100%; height:100%; object-fit:cover; display:block; cursor:zoom-in;
    transition:opacity .18s ease;
  }
  .bb-gal-main-img.is-fading { opacity:0; }
  .bb-gal-arr {
    position:absolute; top:50%; transform:translateY(-50%); width:36px; height:36px;
    background:rgba(255,255,255,.88); border:none; border-radius:50%; cursor:pointer;
    display:flex; align-items:center; justify-content:center; z-index:2;
    box-shadow:0 1px 5px rgba(0,0,0,.14); padding:0; transition:background .15s ease;
  }
  .bb-gal-arr:hover { background:#fff; }
  .bb-gal-arr svg { width:18px; height:18px; display:block; }
  .bb-gal-prev { left:10px; }
  .bb-gal-next { right:10px; }
  @media (min-width:750px) {
    .bb-gal-wrap { display:block; position:relative; }
    .bb-gal-thumbs {
      position:absolute; top:0; left:0; bottom:0; width:90px; flex-direction:column; gap:8px;
      overflow-x:hidden; overflow-y:auto; scroll-snap-type:y mandatory; padding-bottom:0;
    }
    .bb-gal-thumb { width:90px; height:60px; scroll-snap-align:start; }
    .bb-gal-main { margin-left:102px; width:auto; }
    .bb-gal-arr { display:none; }
  }
  @media (min-width:1100px) {
    .bb-gal-thumbs { width:102px; }
    .bb-gal-thumb { width:102px; height:68px; }
    .bb-gal-main { margin-left:114px; }
  }


  .urgency-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    background: #fafafa;
    margin: 6px 0;
  }
  .ub-stock {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
  }
  .ub-stock-label {
    background: linear-gradient(180deg, #ef4444 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
  }
  .ub-stock-text {
    color: #1f1f1f;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
  }
  .ub-stock-text strong { font-weight: 700; }
  .ub-timer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    flex: 0 0 auto;
  }
  .ut-label {
    background: linear-gradient(180deg, #ef4444 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }
  .ut-clock { display: inline-flex; align-items: center; gap: 2px; }
  .ut-num {
    background: linear-gradient(180deg, #2a2a2a 0%, #000000 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    border-radius: 6px;
    padding: 5px 7px;
    min-width: 28px;
    text-align: center;
    line-height: 1;
  }
  .ut-sep { color: #1a1a1a; font-size: 16px; font-weight: 700; }
  @media (max-width: 380px) {
    .ut-num { font-size: 15px; padding: 4px 5px; min-width: 24px; }
    .ut-label { font-size: 11px; }
  }


  .legal-box { margin: 14px 0 2px; border: 1px solid #d7e7dc; background: #f4faf6; border-radius: 12px; padding: 14px 16px; }
  .legal-box-head { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #15803d; font-weight: 700; margin-bottom: 10px; }
  .legal-box-head svg { flex-shrink: 0; }
  .legal-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
  .legal-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; line-height: 1.45; color: #1f2937; }
  .legal-list li svg { flex-shrink: 0; margin-top: 2px; }
  .legal-more { margin-top: 10px; color: #6b7280; text-decoration: underline; font-size: 13px; background: none; border: 0; padding: 0; cursor: pointer; font-family: inherit; }


  /* Farbwaehler im Apple-Stil: helle Kachel, Haarlinie, abgesetzter Auswahlring.
     Klassen und data-Attribute bleiben unveraendert, damit die vorhandene
     Auswahl-Logik unberuehrt weiterlaeuft. !important ist noetig, weil das
     Basis-Template weiter oben ("Tidy variant section") die runden Farbpunkte
     selbst mit !important festlegt. */
  .variant-section {
    margin: 24px 0 16px !important;
  }
  .variant-section .variant-label {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 400;
    color: #6e6e73;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }
  .variant-section .variant-label strong {
    color: #1d1d1f;
    font-weight: 600;
  }
  .variant-section .variant-swatches {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px !important;
    flex-wrap: nowrap !important;
    max-width: 460px;
    align-items: start;
  }
  .variant-section .swatch-wrap {
    position: relative;
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    padding-bottom: 0 !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .variant-section .swatch-ring {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    padding: 0 !important;
    box-sizing: border-box;
    border-radius: 12px !important;
    border: 1px solid #d2d2d7 !important;
    background: #f5f5f7;
    overflow: hidden;
    outline: 2px solid transparent;
    outline-offset: 3px;
    transition: border-color .3s cubic-bezier(.4,0,.2,1), outline-color .3s cubic-bezier(.4,0,.2,1);
  }
  .variant-section .swatch-wrap:hover .swatch-ring { border-color: #86868b !important; }
  /* Abgesetzter Ring statt dicker Rahmen: genau wie in Apples Farbauswahl. */
  .variant-section .swatch-ring.active {
    border-color: #d2d2d7 !important;
    outline-color: #0071e3;
  }
  .variant-section .swatch-img {
    width: 100%;
    /* height:auto ist noetig, sonst gewinnt das height-Attribut des <img> und
       aspect-ratio bleibt wirkungslos. */
    height: auto;
    aspect-ratio: 8 / 5;
    object-fit: cover;
    display: block;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
  }
  .variant-section .swatch-wrap:hover .swatch-img { transform: scale(1.045); }
  .variant-section .swatch-tooltip {
    position: static !important;
    transform: none !important;
    display: block;
    text-align: center;
    margin-top: 9px;
    font-size: 12px !important;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #6e6e73 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .25s ease;
  }
  .variant-section .swatch-ring.active + .swatch-tooltip {
    color: #1d1d1f !important;
    font-weight: 600;
  }
  /* Nicht verfuegbare Farbe: ausgegraut, kein Diagonalstrich wie bei den Punkten. */
  .variant-section .swatch-wrap.sold-out .swatch-img { opacity: .3; filter: grayscale(1); }
  .variant-section .swatch-wrap.sold-out::after { content: none; }
  .variant-section .swatch-wrap.sold-out .swatch-tooltip { text-decoration: line-through; }
  @media (max-width: 420px) {
    .variant-section .variant-swatches { gap: 10px !important; }
    .variant-section .swatch-ring { border-radius: 10px !important; outline-offset: 2.5px; }
    .variant-section .swatch-tooltip { font-size: 11.5px !important; margin-top: 7px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .variant-section .swatch-ring,
    .variant-section .swatch-img,
    .variant-section .swatch-tooltip { transition: none; }
  }


  .buy-section .pp-cta-wrap {
    width: 100%;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .buy-section .buy-btn {
    width: 100% !important;
    max-width: 420px;
    height: auto !important;
    padding: 16px 18px !important;
    background: #000 !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 10px !important;
    font-size: 15.5px !important;
    font-weight: 800 !important;
    letter-spacing: .3px;
    line-height: 1.2;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0,0,0,.28);
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  }
  .buy-section .buy-btn:hover {
    background: #111 !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0,0,0,.35);
  }
  .buy-section .buy-btn:active { transform: scale(.98); }
  .buy-section .sold-out-btn {
    width: 100%;
    max-width: 420px;
    padding: 16px 18px;
    border-radius: 10px;
    background: #f1f1f3;
    color: #6e6e73;
    font-size: 15.5px;
    font-weight: 700;
    text-align: center;
  }
  /* Eine Zeile: Text + Logos nebeneinander, mittig, wie in der Vorlage. */
  .pp-payments-inline {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
  }
  .pp-payments-inline__text {
    font-size: 12px;
    color: #475569;
    font-weight: 500;
    flex-shrink: 0;
  }
  .pp-payments-inline__text .pp-short { display: none; }
  .pp-payments-inline__icons {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow: hidden;
  }
  .pp-payments-inline__icons img {
    height: 24px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
  }
  /* Der deutsche Text ist laenger als der franzoesische in der Vorlage; damit die
     Zeile auf schmalen Handys nicht abgeschnitten wird, wird sie hier gekuerzt. */
  @media (max-width: 430px) {
    .pp-payments-inline__icons img { height: 22px; }
    .pp-payments-inline__text .pp-long { display: none; }
    .pp-payments-inline__text .pp-short { display: inline; }
  }
  @media (max-width: 360px) {
    .buy-section .buy-btn { font-size: 14.5px !important; padding: 15px 16px !important; }
    .pp-payments-inline { gap: 5px; }
    .pp-payments-inline__text { font-size: 11px; }
    .pp-payments-inline__icons { gap: 5px; }
    .pp-payments-inline__icons img { height: 20px; }
  }


  .x9-specs-sec { max-width:1180px; margin:34px auto 0; padding:0 24px; }
  .x9-specs-box { background:#f6f7f8; border-radius:16px; padding:20px 16px; }
  .x9-specs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; text-align:center; }
  .x9-col { display:flex; flex-direction:column; gap:22px; align-items:center; }
  .x9-item svg { width:26px; height:26px; display:block; margin:0 auto 8px; }
  .x9-val { font-weight:800; font-size:15px; color:#111; line-height:1.05; }
  .x9-lab { font-size:12px; color:#6b7280; line-height:1.2; margin-top:4px; }
  /* Los 6 datos vienen agrupados en 3 bloques verticales, que es lo correcto
     en escritorio (3 columnas x 2 filas). Por debajo de 720px la rejilla pasa
     a 2 columnas, pero los hijos seguían siendo los 3 BLOQUES: el tercero
     caía solo a la izquierda y dejaba un hueco a su derecha.

     `display:contents` disuelve el bloque y deja que los 6 items sean hijos
     directos de la rejilla, así llenan 2 x 3 sin sobrar ninguno. De paso cada
     dato pasa a ser una tarjeta: al estirarse todas a la misma altura, las
     etiquetas de dos líneas dejan de desalinear la fila. */
  @media (max-width:720px) {
    .x9-specs-box { padding:16px 12px; }
    .x9-specs-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
    .x9-col { display:contents; }
    .x9-item {
      background:#fff; border:1px solid #e6e8ec; border-radius:14px;
      padding:16px 12px; display:flex; flex-direction:column; justify-content:center;
    }
    .x9-item svg { width:24px; height:24px; margin-bottom:10px; }
    .x9-val { font-size:14.5px; } .x9-lab { font-size:11.5px; }
  }
  @media (max-width:380px) {
    .x9-specs-grid { gap:10px; }
    .x9-item { padding:14px 10px; }
    .x9-val { font-size:13.5px; } .x9-lab { font-size:11px; }
  }


  .x9-wrap { max-width:1100px; margin:0 auto; padding:10px 24px; }
  .x9-block { display:grid; grid-template-columns:1.05fr .95fr; gap:22px; align-items:stretch;
    margin:22px 0; background:#fff; border-radius:18px; overflow:hidden; }
  .x9-block.reverse { grid-template-columns:.95fr 1.05fr; }
  .x9-img { width:100%; height:100%; object-fit:cover; display:block; }
  .x9-card { background:#f6f7f8; padding:34px; display:flex; flex-direction:column; justify-content:center; }
  .x9-h { margin:0 0 10px; font-size:32px; line-height:1.08; font-weight:900; color:#111; letter-spacing:-.4px; }
  .x9-p { margin:0 0 16px; font-size:14.5px; line-height:1.65; color:#555; }
  .x9-specs { display:flex; flex-direction:column; gap:8px; margin-top:6px; align-items:flex-start; }
  .x9-pill { font-size:12.5px; color:#111; padding:8px 10px; background:#fff;
    border:1px solid #e6e8ec; border-radius:12px; }
  .x9-pill b { font-weight:800; }
  @media (max-width:900px) {
    .x9-block, .x9-block.reverse { grid-template-columns:1fr; gap:0; }
    .x9-card { padding:22px 18px; }
    .x9-h { font-size:25px; }
    /* Ohne feste Proportion wuerden hochformatige Fotos den halben Bildschirm fuellen. */
    .x9-img { aspect-ratio:4 / 3; }
    /* Auf dem Handy immer Bild zuerst: sonst stossen bei umgekehrten Bloecken
       zwei Fotos direkt aufeinander und der Rhythmus bricht. */
    .x9-block.reverse .x9-card { order:2; }
    .x9-block.reverse > div:not(.x9-card) { order:1; }
  }


  .x9-sec { max-width:1200px; margin:0 auto; padding:26px 24px; }
  .x9-fhead { display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin:0 0 14px; }
  .x9-ftitle { margin:0; font-weight:900; letter-spacing:-.4px; line-height:1.05; color:#111; font-size:32px; }
  .x9-ftitle em { font-style:normal; position:relative; display:inline-block; }
  .x9-ftitle em:after { content:""; position:absolute; left:-2px; right:-2px; bottom:-6px; height:10px;
    border-radius:999px; background:linear-gradient(90deg, rgba(37,99,235,.15), rgba(37,99,235,.45)); }
  .x9-nav { display:flex; gap:10px; align-items:center; }
  .x9-btn { width:44px; height:44px; border-radius:12px; border:1px solid #e6e8ec; background:#fff;
    cursor:pointer; display:flex; align-items:center; justify-content:center; transition:transform .12s ease, opacity .12s ease; }
  .x9-btn:disabled { opacity:.45; cursor:not-allowed; }
  .x9-btn:active { transform:scale(.98); }
  .x9-btn svg { width:18px; height:18px; stroke:#111; }
  .x9-slider { position:relative; }
  .x9-track { display:flex; gap:14px; overflow:auto; scroll-snap-type:x mandatory;
    padding:10px 2px 14px; scrollbar-width:none; }
  .x9-track::-webkit-scrollbar { display:none; }
  .x9-fcard { scroll-snap-align:start; flex:0 0 calc(33.333% - 10px); background:#fff;
    border:1px solid #e6e8ec; border-radius:18px; overflow:hidden; box-shadow:0 6px 18px rgba(17,24,39,.06); }
  .x9-media { width:100%; aspect-ratio:3/2; background:#f3f4f6; overflow:hidden; }
  .x9-media img { width:100%; height:100%; object-fit:cover; display:block; }
  .x9-fbody { padding:14px 14px 16px; }
  .x9-h3 { margin:0 0 8px; font-weight:900; letter-spacing:-.2px; color:#111; font-size:18px; line-height:1.15; }
  .x9-fp { margin:0; color:#555; font-size:13.5px; line-height:1.6; }
  .x9-dots { display:flex; justify-content:center; gap:8px; margin-top:10px; }
  .x9-dot { width:8px; height:8px; border-radius:999px; border:none; cursor:pointer; background:#d1d5db;
    transition:transform .12s ease, background .12s ease; padding:0; }
  .x9-dot[aria-current="true"] { background:#2563eb; transform:scale(1.15); }
  @media (max-width:1024px) { .x9-ftitle { font-size:27px; } .x9-fcard { flex:0 0 calc(50% - 8px); } }
  @media (max-width:640px) {
    .x9-fhead { align-items:flex-start; flex-direction:column; }
    .x9-nav { width:100%; justify-content:flex-end; }
    .x9-ftitle { font-size:23px; }
    .x9-fcard { flex:0 0 88%; }
  }


  .x9-tech { max-width:1200px; margin:0 auto; padding:26px 24px; }
  .x9-tech * { box-sizing:border-box; }
  .x9-thead { display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin:0 0 14px; }
  .x9-th2 { margin:0; font-weight:900; letter-spacing:-.5px; line-height:1.05; color:#111; font-size:32px; }
  .x9-tgrid { display:grid; grid-template-columns:1.45fr .55fr; gap:18px; align-items:start; }
  .x9-acc { background:#fff; border:1px solid #e6e8ec; border-radius:18px; overflow:hidden; }
  .x9-acc details { border-bottom:1px solid #eef0f3; }
  .x9-acc details:last-of-type { border-bottom:none; }
  .x9-sum { list-style:none; cursor:pointer; padding:16px; display:flex; align-items:center;
    justify-content:space-between; gap:10px; font-weight:800; color:#111; font-size:16px; }
  .x9-sum::-webkit-details-marker { display:none; }
  .x9-icon { width:18px; height:18px; flex:0 0 18px; position:relative; }
  .x9-icon:before, .x9-icon:after { content:""; position:absolute; left:50%; top:50%; width:14px; height:2px;
    background:#111; border-radius:2px; transform:translate(-50%,-50%); }
  .x9-icon:after { transform:translate(-50%,-50%) rotate(90deg); transition:opacity .15s ease; }
  .x9-acc details[open] .x9-icon:after { opacity:0; }
  .x9-tcontent { padding:0 16px 16px; color:#444; font-size:13.5px; line-height:1.65; }
  .x9-tcontent ul { margin:0; padding-left:16px; }
  .x9-tcontent li { margin:6px 0; }
  .x9-tcontent strong { color:#111; font-weight:800; }
  .x9-side { position:sticky; top:16px; background:#f6f7f8; border:1px solid #e6e8ec;
    border-radius:18px; padding:16px; }
  .x9-side h3 { margin:0 0 12px; font-size:18px; line-height:1.1; font-weight:900; color:#111;
    letter-spacing:-.2px; text-align:center; }
  .x9-bitems { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
  .x9-bitem { background:#fff; border:1px solid #e6e8ec; border-radius:16px; padding:12px 10px;
    text-align:center; display:flex; flex-direction:column; gap:8px; align-items:center;
    justify-content:center; min-height:104px; }
  .x9-bitem svg { width:34px; height:34px; display:block; }
  .x9-bitem p { margin:0; font-size:12.5px; color:#111; font-weight:700; line-height:1.15; }
  @media (max-width:1024px) {
    .x9-th2 { font-size:27px; }
    .x9-tgrid { grid-template-columns:1fr; gap:14px; }
    .x9-side { position:relative; top:auto; }
    .x9-bitems { grid-template-columns:repeat(3,1fr); }
  }
  @media (max-width:640px) {
    .x9-tech { padding:18px 16px; }
    .x9-th2 { font-size:23px; }
    .x9-sum { padding:14px; font-size:15px; }
    .x9-tcontent { padding:0 14px 14px; }
    .x9-bitems { grid-template-columns:repeat(2,1fr); }
    .x9-bitem { min-height:96px; }
  }


  .summary-title { font-size: 22px; font-weight: 800; color: #111; margin-bottom: 14px; }
  .summary-sub { font-size: 14px; color: #2563eb; font-weight: 600; margin-bottom: 6px; }
  .summary-hint { font-size: 13px; color: #6b7280; margin-bottom: 18px; }
  .rating-rows { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
  .rrow { display: flex; align-items: center; gap: 12px; }
  .rstar { width: 74px; flex-shrink: 0; font-size: 13px; color: #2563eb; }
  .rbar { flex: 1; height: 16px; background: #e7eaee; border-radius: 4px; overflow: hidden; }
  .rbar-fill { display: block; height: 100%; background: #00b67a; border-radius: 4px; }
  .rcount { width: 44px; flex-shrink: 0; text-align: right; font-size: 13px; color: #4b5563; }
  .overall { border-top: 1px solid #eee; padding-top: 18px; }
  .overall-label { font-size: 14px; color: #2563eb; font-weight: 600; margin-bottom: 6px; }
  .overall-main { display: flex; align-items: center; gap: 12px; }
  .overall-score { font-size: 44px; font-weight: 800; color: #111; line-height: 1; }
  .overall-main .tp-stars-inline { gap: 3px; }
  .overall-count { font-size: 13px; color: #6b7280; margin-top: 6px; }
  .overall .tp-logo-container { margin-top: 12px; }
  @media (max-width: 480px) {
    .overall-score { font-size: 36px; }
    .rstar { width: 64px; font-size: 12px; }
    .rcount { width: 36px; }
  }


        /* Fila de logotipos de pago (SVG vectorial, nitido en cualquier pantalla). */
        .pay-row-svg { display:flex; align-items:center; justify-content:center;
          gap:8px; flex-wrap:wrap; max-width:420px; margin:0 auto; }
        .pay-row-svg img { height:28px; width:auto; display:block; }
        @media (max-width:420px) { .pay-row-svg { gap:6px; } .pay-row-svg img { height:24px; } }
      


.review-thumbnail {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid #eee;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
}
.review-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.review-thumbnail:hover {
    opacity: 0.8;
}
#image-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
#image-modal-inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    max-width: 100%;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;
    background: #111;
}
#modal-image {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 16px;
    transform-origin: 0 0;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}
#image-modal-close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 100000;
    color: white;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    background: rgba(0,0,0,0.6);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    user-select: none;
    border: 1.5px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
    line-height: 1;
}


  .details-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
  }
  .details-collapsible.open {
    max-height: 8000px;
  }
  .details-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 32px);
    margin: 4px 16px 16px;
    padding: 14px 20px;
    background: #ffffff;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  }
  .details-toggle:hover {
    background: #1a1a1a;
    color: #ffffff;
  }
  .details-toggle:active {
    transform: scale(0.98);
  }
  .details-toggle-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .details-toggle[aria-expanded="true"] .details-toggle-icon {
    transform: rotate(180deg);
  }

  /* ===== ACCORDÉONS PRODUIT ===== */
  .product-accordion { margin-top: 18px; border-top: 1px solid #e7e7e7; }
  .acc-item { border-bottom: 1px solid #e7e7e7; }
  .acc-toggle { width: 100%; background: transparent; border: 0; padding: 18px 4px; display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; font-size: 16px; font-weight: 700; color: #111; text-align: left; }
  .acc-icon { flex-shrink: 0; transition: transform .25s ease; color: #111; }
  .acc-toggle[aria-expanded="true"] .acc-icon { transform: rotate(180deg); }
  .acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .acc-panel.open { max-height: 4000px; }
  .acc-panel-inner { padding: 2px 4px 22px; color: #3a3a3a; font-size: 15px; line-height: 1.7; }
  .acc-panel-inner h4 { font-size: 15px; font-weight: 700; color: #111; margin: 18px 0 6px; }
  .acc-panel-inner p { margin: 0 0 12px; }
  .acc-panel-inner ul { margin: 0 0 12px; padding-left: 20px; }
  .acc-panel-inner li { margin-bottom: 8px; }
  .acc-panel-inner table { width: 100%; border-collapse: collapse; margin: 8px 0 4px; font-size: 14px; }
  .acc-panel-inner td { padding: 9px 10px; border-bottom: 1px solid #eee; }
  .acc-panel-inner td:first-child { color: #6b7280; width: 52%; }
  .acc-notes { font-size: 12px; color: #9097a1; line-height: 1.5; margin-top: 10px; }

  /* ===== BLOC DESIGN ===== */
  .design-block { max-width: 1080px; margin: 56px auto; padding: 0 24px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
  .design-block-media img { width: 100%; height: auto; border-radius: 16px; display: block; }
  .design-block-text h2 { font-size: 28px; line-height: 1.25; margin: 0 0 14px; color: #111; }
  .design-block-text p { font-size: 16px; line-height: 1.7; color: #444; margin: 0; }
  @media (max-width: 820px) {
    .design-block { grid-template-columns: 1fr; gap: 22px; margin: 36px auto; }
    .design-block-text h2 { font-size: 23px; }
  }

  /* ===== SECTION POURQUOI VOUS ALLEZ L'ADORER ===== */
  .why-love { background: #f4f5f7; padding: 56px 24px; margin: 0; }
  .why-love-title { text-align: center; font-size: 30px; color: #111; margin: 0 auto 32px; max-width: 1180px; }
  .why-love-viewport { max-width: 1180px; margin: 0 auto; }
  .why-love-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .love-card { min-width: 0; }
  .love-card-media { aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; background: #e9eaee; margin-bottom: 18px; }
  .love-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .love-card h3 { font-size: 20px; line-height: 1.25; color: #111; margin: 0 0 10px; }
  .love-card p { font-size: 15px; line-height: 1.6; color: #555; margin: 0; }
  @media (max-width: 900px) {
    .why-love-track { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 620px) {
    .why-love { padding: 40px 18px; }
    .why-love-title { font-size: 24px; margin-bottom: 22px; }
    .why-love-track { grid-template-columns: 1fr; gap: 26px; }
  }


  .offer-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
  .offer-modal.visible { display: block; }
  .offer-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
  .offer-modal-box { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: calc(100% - 40px); max-width: 460px; background: #fff; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.25); overflow: hidden; }
  .offer-modal-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; border-bottom: 1px solid #eee; }
  .offer-modal-head h3 { margin: 0; font-size: 18px; font-weight: 700; color: #111; }
  .offer-modal-close { width: 34px; height: 34px; border-radius: 50%; border: 1px solid #e5e7eb; background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .offer-modal-close:hover { background: #f5f5f5; }
  .offer-modal-body { padding: 20px; font-size: 14px; line-height: 1.6; color: #4b5563; }

/* === Paleta VelocityGo (azul-marinho + verde) === */
:root {
  --vg-navy: #14243F;
  --vg-navy-2: #1d3157;
  --vg-green: #7DC61A;
  --vg-green-2: #93df2b;
}
.btn-buy, .btn-checkout, .buy-button, .cta-button, .btn-primary,
button.btn-buy, .mini-cart-checkout, .sticky-buy-btn, .add-to-cart {
  background: var(--vg-navy) !important;
  color: #fff !important;
  border-color: var(--vg-navy) !important;
}
.btn-buy:hover, .btn-checkout:hover, .buy-button:hover, .cta-button:hover,
.mini-cart-checkout:hover, .sticky-buy-btn:hover, .add-to-cart:hover {
  background: var(--vg-navy-2) !important;
}
.badge-green, .in-stock, .stock-ok, .free-shipping, .price-save, .discount-badge,
.savings, .tag-oferta, .benefit-icon, .check-icon {
  color: var(--vg-green) !important;
}
.discount-badge, .tag-oferta, .badge-discount {
  background: var(--vg-green) !important;
  color: var(--vg-navy) !important;
}
a { color: var(--vg-navy); }
::selection { background: var(--vg-green); color: var(--vg-navy); }
