/* 
   ==========================================================================
   LOJA MORADA - STYLE SYSTEM (VANILLA CSS)
   Core Theme: Mogno, Âmbar & Linho Premium Identity
   ========================================================================== 
*/

/* Fonts carregadas via <link> no HTML para eliminar a corrente de @import bloqueante */

/* Reset & Variables */
:root {
  /* Colors */
  --primary: #1A1A1A;      /* TÍTULOS PRINCIPAIS */
  --accent: #53B96A;       /* BOTÕES CTA */
  --accent-hover: #459E58; /* Hover levemente mais escuro */
  --bg: #F5F0E8;           /* FUNDO DA PÁGINA */
  --secondary: #3D3D3D;    /* CORPO DO TEXTO */
  --surface: #FFFFFF;      /* CARDS / SEÇÕES */
  --contrast: #1A1A1A;     /* Used for deep dark contrasting areas */
  --border: #C8B89A;       /* BORDAS E DIVISORES */
  --border-focus: #1A1A1A;
  --badges: #B17143;       /* BADGES / SELOS / LOGO */
  --destaques: #E8873A;    /* DESTAQUES SECUNDÁRIOS */

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout and Spacing */
  --max-width: 1280px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 8px rgba(61, 43, 26, 0.04);
  --shadow-md: 0 4px 12px rgba(61, 43, 26, 0.06);
  --shadow-lg: 0 10px 30px rgba(61, 43, 26, 0.1);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--surface);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Global Reset */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Exclude elements that legitimately need max-width: none */
.marquee-track, .marquee-content, .color-marquee-track {
  max-width: none;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  overflow-x: hidden;
  /* Prevent iOS rubber-band horizontal scroll */
  -webkit-overflow-scrolling: touch;
}

/* font-size redução para telas muito pequenas (ex: iPhone 4/4s, 320px) */
@media (max-width: 360px) {
  html {
    font-size: 13px;
  }
}

body {
  background-color: #FFFFFF;
  color: var(--secondary);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  /* Garante que nada vaze para fora */
  position: relative;
}

.app-wrapper {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* ==========================================================================
   HEADER & MARQUEE ANNOUNCEMENT BAR
   ========================================================================== */

/* Infinite Seamless Marquee */
.marquee-bar {
  background-color: var(--destaques); /* Laranja #E8873A */
  color: #FFF;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  padding: 8px 0;
}

/* Dual tracks side-by-side for seamless loop */
.marquee-content {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  /* Increased speed: 12s instead of 24s */
  animation: marquee-scroll 12s linear infinite;
  align-items: center;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px; /* px-6 in Tailwind */
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee-item svg {
  stroke-width: 1.75px;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.marquee-item span {
  font-size: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* Header Styling (Perfect reproduction of sticky mobile-centered logo header) */
.main-header {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border); /* border-neutral-200 */
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 16px; /* py-3 flex gap-2 md:gap-4 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Mobile Toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--contrast);
  flex-shrink: 0;
  transition: var(--transition);
}

.menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Brand Logo (Absolute centered on Mobile, left on desktop) */
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.75;
}

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

/* Nav Links - Desktop only */
.nav-links {
  display: none; /* hidden lg:flex in reference */
}

/* Header Actions Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 2px; /* gap-0.5 sm:gap-2 */
  margin-left: auto;
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast);
  transition: var(--transition);
}

.action-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Responsive Header utilities */
@media (min-width: 768px) {
  .header-container {
    padding: 16px 24px;
  }
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none; /* md:hidden */
  }
  
  .logo {
    position: static;
    transform: none;
    margin-right: auto;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px; /* gap-7 in tailwind */
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    margin: 0 auto;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--contrast);
  }
  
  .header-actions {
    margin-left: 0;
  }
}

/* Hide on mobile utility */
@media (max-width: 639px) {
  .hidden-mobile {
    display: none !important;
  }
}

/* ==========================================================================
   PRODUCT MAIN AREA (TWO COLUMNS GRID)
   ========================================================================== */

.product-main-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 16px; /* py-8 px-4 sm:px-6 */
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px; /* gap-8 */
}

@media (min-width: 1024px) {
  .product-main-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px; /* gap-12 lg:py-12 */
    padding: 48px 24px;
  }
}

/* ==========================================================================
   LEFT COLUMN: MEDIA GALLERY
   ========================================================================== */

.media-gallery-section {
  display: flex;
  flex-direction: column;
  align-self: start;
  min-width: 0;
  width: 100%;
}

/* aspect-square media frame */
.featured-image-box {
  position: relative;
  background-color: var(--bg); /* bg-neutral-50 */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #1a1a1a;
  padding: 0;
}

.gallery-arrow:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.92);
}

.gallery-arrow-prev { left: 4px; }
.gallery-arrow-next { right: 4px; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.30);
}

.review-photo-thumb img {
  cursor: zoom-in;
}

.featured-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* Thumbnails Carousel */
.thumbnails-grid {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-width: 0;
  width: 100%;
}

.thumbnails-grid::-webkit-scrollbar {
  display: none;
}

.thumb-card {
  flex: 0 0 60px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  transition: var(--transition);
  scroll-snap-align: start;
}

.thumb-card:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.thumb-card.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

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

/* ==========================================================================
   RIGHT COLUMN: PURCHASING PANEL
   ========================================================================== */

.purchase-panel-aside {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .purchase-panel-aside {
    padding-top: 8px; /* lg:pt-2 */
  }
}

/* Promo Tagline */
.promo-sub-headline {
  font-size: 11px; /* text-xs */
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary); /* text-neutral-500 */
  font-weight: 500;
  margin-bottom: 8px;
}

/* Main H1 Title */
.main-product-title {
  font-family: var(--font-display);
  font-size: 24px; /* text-2xl on mobile */
  font-weight: 600; /* font-medium */
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .main-product-title {
    font-size: 32px; /* md:text-4xl */
  }
}

/* Snippet reviews row */
.snippet-reviews-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px; /* text-sm */
  margin-top: 12px;
}

.stars-gold {
  color: var(--destaques); /* text-amber-500 */
  font-size: 14px;
}

.anchor-reviews-count {
  color: var(--secondary); /* text-neutral-600 */
  text-decoration: underline;
  text-underline-offset: 2px;
}

.anchor-reviews-count:hover {
  color: var(--contrast);
}

/* Price Box */
.price-display-block {
  margin-top: 20px; /* mt-5 */
}

.price-old-current-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-current-value {
  font-size: 28px; /* text-2xl base on model, we bump to look solid */
  font-family: var(--font-display);
  font-weight: 600; /* font-medium */
  color: var(--primary);
}

.price-old-value {
  font-size: 15px;
  text-decoration: line-through;
  color: var(--secondary);
  opacity: 0.65;
}

.discount-percent-badge {
  background-color: var(--badges);
  color: #FFF;
  font-size: 10px; /* text-[11px] */
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  align-self: center;
}

.pix-price-callout {
  font-size: 13px; /* text-sm */
  color: #166534; /* text-emerald-700 */
  margin-top: 4px;
  font-weight: 500;
}

/* Common Variants Selector Group */
.variants-selector-group {
  margin-top: 24px; /* mt-6 or mt-7 */
}

.variant-label-row {
  font-size: 14px; /* text-sm */
  font-weight: 600; /* font-medium */
  color: var(--primary);
  margin-bottom: 8px;
}

.variant-selected-value {
  color: var(--secondary); /* text-neutral-500 */
  font-weight: 400;
}

/* Color swatches list */
.color-swatch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.swatch-btn {
  width: 56px; /* size-14 */
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border); /* border-neutral-200 */
  padding: 1px;
  transition: var(--transition);
  background-color: var(--bg);
}

.swatch-btn:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.swatch-btn.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.swatch-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Size Buttons Grid */
.sizes-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 640px) {
  .sizes-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.size-card-btn {
  border: 1px solid var(--border); /* border-neutral-300 */
  border-radius: var(--radius-sm);
  padding: 12px; /* px-3 py-3 */
  text-align: left;
  background-color: transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.size-card-btn:hover {
  border-color: var(--primary);
}

.size-card-btn.active {
  border-color: var(--primary);
  background-color: var(--surface);
  box-shadow: inset 0 0 0 1px var(--primary);
}

.size-card-title {
  font-size: 14px;
  font-weight: 600; /* font-medium */
  color: var(--primary);
}

.size-card-dimensions {
  font-size: 10px; /* text-[11px] */
  color: var(--secondary); /* text-neutral-500 */
  margin-top: 1px;
}

.size-card-price {
  font-size: 12px;
  font-weight: 500;
  color: var(--contrast);
  margin-top: 4px;
}

/* CTA and Add To Cart */
.cta-action-container {
  margin-top: 24px; /* mt-6 */
}

.buy-now-pulse-button {
  width: 100%;
  background-color: var(--accent);
  color: #FFFFFF;
  padding: 16px 24px; /* py-4 */
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600; /* font-medium */
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(83, 185, 106, 0.3);
  animation: pulse-grow 2.5s infinite;
  transition: var(--transition);
}

.buy-now-pulse-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(83, 185, 106, 0.5);
}

.buy-now-pulse-button:active {
  transform: translateY(0);
}

.cta-btn-icon {
  flex-shrink: 0;
  stroke-width: 2.25px;
}

@keyframes pulse-grow {
  0% {
    box-shadow: 0 0 0 0 rgba(83, 185, 106, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(83, 185, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(83, 185, 106, 0);
  }
}

/* Trust Bullet Cards */
.secure-checkout-bullets-card {
  margin-top: 20px; /* mt-5 */
  border: 1px solid var(--border); /* border-neutral-200 */
  background-color: rgba(232, 223, 208, 0.25); /* bg-neutral-50/60 transparentized surface */
  padding: 16px;
  border-radius: var(--radius-sm);
}

.trust-mini-cols-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}

.trust-mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.border-x-separator {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0 4px;
}

.trust-card-icon {
  width: 20px;
  height: 20px;
  color: var(--primary); /* text-neutral-800 */
  stroke-width: 1.5px;
}

.trust-card-text {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--secondary); /* text-neutral-700 */
}

.human-support-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: var(--secondary); /* text-neutral-600 */
  font-weight: 500;
}

.human-support-row svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.5px;
}

/* Payments Accepted Box */
.payments-accepted-card {
  margin-top: 24px; /* mt-6 */
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.payment-methods-badges {
  height: 28px; /* h-7 */
  width: auto;
  opacity: 0.9;
}

/* Native Details Accordions */
.accordions-container {
  margin-top: 24px; /* mt-6 */
}

.accordion-fold {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  padding-bottom: 0;
  transition: var(--transition);
}

.accordion-fold:last-child {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.accordion-fold:not([open]) {
  padding-bottom: 20px;
}

.accordion-summary-trigger {
  list-style: none; /* remove default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600; /* font-medium */
  color: var(--contrast);
  cursor: pointer;
  user-select: none;
}

.accordion-summary-trigger::-webkit-details-marker {
  display: none; /* remove marker */
}

.accordion-chevron {
  font-size: 16px;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

/* Rotate icon on state open */
.accordion-fold[open] .accordion-chevron {
  transform: rotate(180deg);
}

/* Accordion details block */
.accordion-content-inner {
  margin-top: 16px;
  font-size: 13px; /* text-sm */
  color: var(--secondary); /* text-neutral-700 */
  line-height: 1.6;
}

.description-lead {
  font-size: 15px; /* text-base */
  font-weight: 600; /* font-semibold */
  color: var(--primary); /* text-neutral-900 */
  margin-bottom: 8px;
}

.text-highlight {
  font-weight: 600;
  color: var(--primary);
}

.feature-item-bullet {
  margin-top: 14px;
}

.feature-bullet-title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.feature-points-list,
.why-choose-list {
  list-style: none;
  padding-left: 2px;
  margin-top: 6px;
}

.feature-points-list li,
.why-choose-list li {
  margin-bottom: 6px;
}

.description-footer-tag {
  margin-top: 16px;
  font-weight: 500;
  color: var(--primary);
}

.accordions-container p {
  margin-bottom: 10px;
}
.accordions-container p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   HORIZONTAL TRUST BADGES BAR
   ========================================================================== */

.badges-trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--bg), #FFF); /* bg-gradient-to-b from-neutral-50 to-white */
  padding: 24px 0;
}

.trust-bar-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px; /* gap-3 */
}

@media (min-width: 768px) {
  .trust-bar-container {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 24px;
  }
}

.trust-badge-tile {
  display: flex;
  align-items: center;
  gap: 12px; /* gap-3 */
  background-color: var(--surface);
  border: 1px solid var(--border); /* border-neutral-200 */
  border-radius: var(--radius-md);
  padding: 12px; /* p-3 */
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.badge-icon-circle {
  width: 36px; /* size-9 */
  height: 36px;
  background-color: var(--badges);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon-circle svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.75px;
}

.badge-tile-info {
  min-width: 0;
}

.badge-tile-title {
  font-size: 12px;
  font-weight: 600; /* font-semibold */
  color: var(--primary);
  line-height: 1.25;
}

.badge-tile-desc {
  font-size: 11px;
  color: var(--secondary); /* text-neutral-500 */
  margin-top: 2px;
  line-height: 1.2;
}

/* ==========================================================================
   AVAILABLE COLORS CAROUSEL (SLOW MARQUEE FLOW)
   ========================================================================== */

.section-horizontal-colors {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 16px 16px 16px; /* pt-14 pb-4 px-4 sm:px-6 */
}

.colors-intro-center {
  text-align: center;
  margin-bottom: 32px;
}

.colors-intro-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  font-weight: 500;
  display: block;
}

.colors-intro-title {
  font-family: var(--font-display);
  font-size: 14px; /* text-sm */
  font-weight: 500; /* font-medium */
  color: var(--contrast);
  margin-top: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Viewport structure */
.marquee-colors-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Smooth left/right gradients */
.color-marquee-fade-left,
.color-marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 10;
  pointer-events: none;
}

.color-marquee-fade-left {
  left: 0;
  background: transparent;
  display: none;
}

.color-marquee-fade-right {
  right: 0;
  background: transparent;
  display: none;
}

/* Carousel core track */
.color-marquee-track {
  display: flex;
  width: max-content;
  gap: 20px; /* gap-5 */
  animation: marquee-slow-scroll 35s linear infinite;
  padding: 10px 0;
}

/* Slow marquee scroll animation */
@keyframes marquee-slow-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* only translate 50% since we duplicate cards once */
}

.color-marquee-card {
  flex-shrink: 0;
  width: 240px; /* w-[260px] base, slightly reduced for better mobile viewing */
}

@media (min-width: 640px) {
  .color-marquee-card {
    width: 300px;
  }
}

.color-card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--surface); /* bg-neutral-100 placeholder */
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.color-card-media:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.color-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.color-card-caption {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.color-dot-indicator {
  display: inline-block;
  width: 12px; /* size-3 */
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--border); /* border-neutral-300 */
}

.color-name-text {
  font-size: 13px; /* text-sm */
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--primary);
}

/* Pause flow on hover */
.color-marquee-track:hover {
  animation-play-state: paused;
}

/* ==========================================================================
   REVIEWS & RATINGS SECTION
   ========================================================================== */

.section-reviews-ratings {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 24px 0; /* pt-14 pb-6 */
}

.reviews-ratings-container {
  max-width: 960px; /* max-w-5xl (approx 1024) downsized slightly to look compact */
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .reviews-ratings-container {
    padding: 0 24px;
  }
}

/* Analytics top layout */
.reviews-analytics-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; /* gap-10 */
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0; /* py-8 */
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .reviews-analytics-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Average score card */
.average-score-card {
  text-align: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .average-score-card {
    border-right: 1px solid var(--border); /* border-neutral-200 */
    padding-right: 40px; /* pr-10 */
    text-align: center;
  }
}

.score-number {
  font-size: 48px; /* text-5xl */
  font-family: var(--font-display);
  font-weight: 300; /* font-light */
  color: var(--primary);
  line-height: 1;
}

.score-stars-row {
  color: var(--destaques); /* text-amber-500 */
  font-size: 16px; /* text-lg */
  margin-top: 4px;
  font-weight: 500;
}

.score-sub-label {
  font-size: 11px;
  color: var(--secondary); /* text-neutral-500 */
  margin-top: 4px;
}

/* Ratings Distribution Rows */
.rating-stars-distribution-column {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px; /* space-y-1.5 */
}

.stars-distribution-row {
  display: flex;
  align-items: center;
  gap: 12px; /* gap-3 */
  font-size: 12px; /* text-xs */
}

.star-label {
  width: 24px;
  color: var(--contrast);
  font-weight: 500;
}

.bar-progress-bg {
  flex: 1;
  height: 6px; /* h-1.5 */
  background-color: rgba(0, 0, 0, 0.04); /* bg-neutral-100 */
  border-radius: 50px;
  overflow: hidden;
}

.bar-progress-filled {
  height: 100%;
  background-color: var(--primary); /* bg-neutral-900 */
  border-radius: 50px;
}

.bar-percentage-label {
  width: 40px;
  text-align: right;
  color: var(--secondary); /* text-neutral-500 */
}

/* Grid layout for client review cards */
.reviews-cards-masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 40px; /* md:grid-cols-2 gap-x-10 gap-y-8 */
}

@media (min-width: 768px) {
  .reviews-cards-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

.client-review-card {
  border-bottom: 1px solid var(--border); /* border-neutral-200 */
  padding-bottom: 24px; /* pb-6 */
}

.review-client-header {
  display: flex;
  align-items: center;
  gap: 12px; /* gap-3 */
  margin-bottom: 8px;
}

.client-avatar-circle {
  width: 40px; /* size-10 */
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #FFF;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
}

.client-meta-info {
  flex: 1;
}

.client-name {
  font-size: 13px; /* text-sm */
  font-weight: 600; /* font-medium */
  color: var(--primary); /* text-neutral-900 */
}

.badge-verified {
  color: #166534; /* text-emerald-600 */
  font-size: 10px; /* text-[11px] */
  font-weight: 400;
  margin-left: 4px;
}

.client-score-stars {
  color: var(--destaques); /* text-amber-500 */
  font-size: 11px; /* text-xs */
  margin-top: 1px;
}

.review-client-body-text {
  font-size: 13px; /* text-sm */
  color: var(--secondary); /* text-neutral-700 */
  line-height: 1.6;
}

/* Load more reviews */
.reviews-load-more-center {
  margin-top: 40px; /* mt-10 */
  display: flex;
  justify-content: center;
}

.reviews-load-more-btn {
  padding: 12px 32px; /* px-8 py-3 */
  border: 1px solid var(--primary); /* border-neutral-900 */
  background-color: transparent;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600; /* font-medium */
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.reviews-load-more-btn:hover {
  background-color: var(--primary);
  color: #FFF;
}

/* ==========================================================================
   FAQ SECTION (NATIVE ACCORDIONS)
   ========================================================================== */

.section-faq-accordions {
  background-color: var(--surface);
  padding: 56px 0; /* py-14 */
}

.faq-container {
  max-width: 720px; /* max-w-3xl (approx 768px) -> compact */
  margin: 0 auto;
  padding: 0 16px;
}

.faq-headline {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: 32px;
}

.faq-list-group {
  display: flex;
  flex-direction: column;
}

.faq-accordion-fold {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  transition: var(--transition);
}

.faq-accordion-fold:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-summary-trigger {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600; /* font-semibold */
  color: var(--primary);
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-summary-trigger::-webkit-details-marker {
  display: none;
}

.faq-plus-icon {
  font-size: 16px;
  color: var(--secondary);
  font-weight: 400;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Rotate icon on state open */
.faq-accordion-fold[open] .faq-plus-icon {
  transform: rotate(45deg); /* neat effect turning + into x */
}

.faq-content-fold {
  margin-top: 12px;
  font-size: 13px; /* text-sm */
  color: var(--secondary); /* text-neutral-700 */
  line-height: 1.6;
}

/* ==========================================================================
   PROFESSIONAL BRAND FOOTER
   ========================================================================== */

.brand-footer-section {
  background-color: var(--contrast); /* bg-neutral-900 */
  color: #D4D4D8; /* text-neutral-300 */
  padding: 56px 0 32px 0; /* py-14 pb-8 */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: calc(32px + 72px); /* 32px base + ~72px floating button clearance */
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .footer-container {
    padding: 0 24px;
  }
}

.footer-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid-layout {
    grid-template-columns: 1.5fr repeat(3, 1fr); /* 4-column layout */
  }
}

/* Brand profile */
.footer-brand-profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 2px;
}

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

.brand-tagline {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.75;
}

/* Standard columns */
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-title {
  color: #FFF;
  font-family: var(--font-display);
  font-size: 13px; /* text-sm scale */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-anchors-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.footer-anchors-list a {
  opacity: 0.75;
}

.footer-anchors-list a:hover {
  opacity: 1;
  color: #FFF;
}

/* Contact Column */
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-tile {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  opacity: 0.8;
}

.footer-tile-icon {
  width: 16px;
  height: 16px;
  stroke-width: 1.75px;
  color: var(--destaques);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Footer Trust / Payment / Shipping Block */
.footer-item-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__aside-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__aside-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFF;
  margin-bottom: 12px;
  text-align: center;
}

.selos-envio,
.selos-garantia-2,
.payment-list2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.selos-garantia-2,
.payment-list2 {
  flex-wrap: wrap;
}

.selos-envio {
  flex-wrap: nowrap;
  width: 100%;
}

.footer-item-list svg {
  max-width: 100%;
  height: auto !important;
}

.selos-envio svg {
  flex: 1 1 auto;
  max-width: 45%;
  max-height: 64px !important;
}

.selos-garantia-2 a svg {
  max-height: 28px !important;
  width: auto;
}

.payment-list2 svg {
  max-height: 24px !important;
  width: auto;
}

@media (min-width: 768px) {
  .selos-envio svg {
    max-height: 80px !important;
    max-width: none;
  }

  .selos-garantia-2 a svg {
    max-height: 38px !important;
  }
  
  .payment-list2 svg {
    max-height: 30px !important;
  }
}

/* Bottom Legal Bar */
.footer-legal-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 11px;
  opacity: 0.6;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-legal-bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.legal-cnpj {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.legal-copyright {
  line-height: 1.4;
}

/* Floating Buy Button — identical to primary */
.floating-buy-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: min(calc(100% - 32px), 480px);

  /* Same as .buy-now-pulse-button */
  background-color: var(--accent);
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;

  box-shadow: 0 4px 14px rgba(83, 185, 106, 0.3);
  animation: none;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.floating-buy-btn.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
  animation: pulse-grow 2.5s infinite;
}

.floating-buy-btn:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 6px 18px rgba(83, 185, 106, 0.5);
}

/* Header Scroll behavior */
.main-header {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.header-hidden {
  transform: translateY(-100%);
}

/* Review Photo Thumbnail */
.review-photo-thumb {
  margin-top: 10px;
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.review-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.review-photo-thumb img:hover {
  transform: scale(1.07);
}

/* ==========================================================================
   RESPONSIVE OVERFLOW FIXES — MOBILE FIRST (all devices)
   ========================================================================== */

/* Contém qualquer elemento filho que pudesse vazar */
section,
header,
footer,
main,
nav,
aside {
  max-width: 100%;
}

/* Garante que tabelas, imagens e SVGs não quebrem o layout */
table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Previne textos longos de quebrarem o layout */
.main-product-title,
.faq-headline,
.colors-intro-title,
.brand-tagline {
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* Thumbnails grid responsivo para telas muito pequenas */
@media (max-width: 359px) {
  .thumbnails-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }

  .sizes-cards-grid {
    grid-template-columns: 1fr;
  }

  .trust-mini-cols-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .header-container {
    padding: 10px 12px;
  }

  .product-main-container {
    padding: 16px 10px;
  }

  .price-current-value {
    font-size: 22px;
  }

  .buy-now-pulse-button {
    font-size: 14px;
    padding: 14px 16px;
  }
}

/* Telas pequenas (360–479px) */
@media (max-width: 479px) {
  .thumbnails-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }

  .trust-bar-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-grid-layout {
    grid-template-columns: 1fr;
  }

  .reviews-analytics-card {
    padding: 20px 0;
  }

  .section-horizontal-colors {
    padding: 32px 12px 12px 12px;
  }

  .floating-buy-btn {
    font-size: 14px;
    padding: 14px 16px;
    width: calc(100% - 24px);
    bottom: 12px;
  }
}

/* Telas médias pequenas (480–639px) */
@media (min-width: 480px) and (max-width: 639px) {
  .trust-bar-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   POLICY PAGES — Layout compartilhado
   ========================================================================== */

.policy-hero {
  background: linear-gradient(160deg, #f9f6f2 0%, #ede8df 100%);
  padding: 72px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.policy-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.policy-hero-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 10px;
  max-width: 640px;
  line-height: 1.25;
}

.policy-update-label {
  font-size: 12px;
  color: var(--secondary);
  opacity: 0.8;
}

.policy-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 24px 80px;
}

.policy-toc {
  background: #faf7f2;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 48px;
}

.policy-toc h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 12px;
}

.policy-toc ol {
  padding-left: 18px;
  margin: 0;
  column-count: 2;
  column-gap: 24px;
}

.policy-toc li {
  font-size: 13px;
  color: var(--secondary);
  margin-bottom: 5px;
  break-inside: avoid;
}

.policy-toc a {
  color: var(--secondary);
  text-decoration: none;
}

.policy-toc a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.policy-section {
  margin-bottom: 44px;
  scroll-margin-top: 90px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.policy-section h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin: 22px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.policy-section p {
  font-size: 14px;
  line-height: 1.85;
  color: #4a4032;
  margin-bottom: 14px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul,
.policy-section ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-section li {
  font-size: 14px;
  line-height: 1.8;
  color: #4a4032;
  margin-bottom: 7px;
}

.policy-section strong {
  color: var(--primary);
  font-weight: 600;
}

.policy-section a {
  color: var(--accent);
  text-decoration: underline;
}

.policy-highlight {
  background: #faf7f2;
  border-left: 3px solid var(--accent);
  padding: 14px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.8;
  color: #4a4032;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  font-size: 13px;
}

.policy-table th {
  background: var(--surface);
  color: var(--primary);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border);
}

.policy-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  color: #4a4032;
  vertical-align: top;
}

.policy-table tr:nth-child(even) td {
  background: #faf7f2;
}

.policy-contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 16px;
}

.policy-contact-card p {
  margin-bottom: 8px;
}

.policy-contact-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .policy-hero {
    padding: 56px 16px 36px;
  }
  .policy-container {
    padding: 36px 16px 60px;
  }
  .policy-toc ol {
    column-count: 1;
  }
  .policy-section h2 {
    font-size: 16px;
  }
  .policy-table {
    display: block;
    overflow-x: auto;
  }
}

/* Corrige hero banner em mobile */
@media (max-width: 767px) {
  .product-main-container {
    padding: 20px 14px;
    gap: 20px;
  }

  .featured-image-box {
    width: 100%;
  }

  .size-card-dimensions {
    font-size: 9px;
  }

  .color-marquee-card {
    width: 180px;
  }

  .reviews-cards-masonry {
    gap: 20px;
  }

  .faq-container {
    padding: 0 14px;
  }

  .brand-footer-section {
    padding: 40px 0 calc(20px + 72px) 0;
  }
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  z-index: 9999;
  padding: 20px 16px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .cookie-banner {
    bottom: 24px;
    left: 24px;
    width: calc(100% - 48px);
    max-width: 480px;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  .cookie-banner-content {
    align-items: flex-start;
  }
}

.cookie-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--secondary, #4a4032);
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .cookie-text {
    text-align: left;
    font-size: 14px;
  }
}

.cookie-link {
  color: var(--accent, #c9a050);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

@media (min-width: 480px) {
  .cookie-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .cookie-buttons {
    justify-content: flex-end;
  }
}

.cookie-btn {
  padding: 12px 20px;
  border-radius: var(--radius-sm, 8px);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
  width: 100%;
  font-family: inherit;
}

@media (min-width: 480px) {
  .cookie-btn {
    width: auto;
    flex: 1;
  }
}

.cookie-btn-primary {
  background-color: var(--primary, #111111);
  color: #FFFFFF;
}

.cookie-btn-primary:hover {
  background-color: var(--primary-hover, #333333);
}

.cookie-btn-secondary {
  background-color: #F5F5F5;
  color: var(--secondary, #555555);
  border: 1px solid #E0E0E0;
}

.cookie-btn-secondary:hover {
  background-color: #EBEBEB;
  color: var(--primary, #333333);
}

/* ==========================================================================
   SIDEBAR MENU (MOBILE)
   ========================================================================== */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--surface);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 0 12px rgba(0,0,0,0.15);
  overflow-y: auto;
}

.sidebar-menu.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.sidebar-close {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.sidebar-nav a {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.sidebar-nav a:hover {
  background: rgba(0,0,0,0.02);
  color: var(--primary);
}

.sidebar-contact {
  margin-top: auto;
  padding: 24px 20px;
  background: #FAFAFA;
  border-top: 1px solid var(--border);
}

.sidebar-contact-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 16px;
  font-weight: 600;
}

.sidebar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.sidebar-contact-item:last-child {
  margin-bottom: 0;
}

.sidebar-contact-item svg {
  color: var(--secondary);
  margin-top: 2px;
}

.contact-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 13px;
  color: var(--secondary);
}


/* ==========================================================================
   VIDEO SHOWCASE SECTION
   ========================================================================== */
.section-video-showcase {
  background-color: var(--surface); /* white, same as other sections */
  padding: 24px 0;
}

.video-showcase-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.coberdrom-video {
  width: 100%;
  height: auto;        /* preserves original aspect ratio — no cropping */
  display: block;
  border-radius: var(--radius-lg);
  object-fit: contain; /* never crops */
}

@media (min-width: 768px) {
  .video-showcase-container {
    padding: 0 24px;
  }
}
}
