/* ============================================
   NOTWOOD - WEBSHOP STYLE
   Mobile-first design system
   ============================================ */

:root {
  /* Brand colors */
  --color-bg: #FAF9F7;
  --color-bg-alt: #F2EFE9;
  --color-dark: #1A1A1A;
  --color-text: #1F1F1F;
  --color-muted: #5A5A5A;
  --color-border: #E5E2DD;
  --color-accent: #2D5016;
  --color-accent-hover: #3A6B1F;
  --color-wood: #8B6F47;
  --color-cta: #1A1A1A;
  --color-cta-hover: #2D5016;
  --color-sale: #C84B31;
  --color-success: #2D5016;
  --color-white: #FFFFFF;
  --color-whatsapp: #25D366;
  --color-star: #F5A623;

  /* Typography */
  --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Animation */
  --ease: cubic-bezier(.19, 1, .22, 1);
  --duration: 1400ms;
  --stagger: 220ms;
  --ease-fast: cubic-bezier(.4, 0, .2, 1);

  /* Layout */
  --max-width: 1280px;
  --nav-height: 64px;
  --nav-height-desktop: 80px;
  --bottom-nav-height: 64px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.16);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: var(--bottom-nav-height);
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  font-size: inherit;
  color: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

/* ============================================
   LAYOUT
   ============================================ */

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

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

@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

.section {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .section { padding: 72px 0; }
}

@media (min-width: 1024px) {
  .section { padding: 96px 0; }
}

.section-tight { padding: 32px 0; }

@media (min-width: 768px) {
  .section-tight { padding: 48px 0; }
}

/* ============================================
   STICKY NAV
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 249, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 12px;
}

@media (min-width: 1024px) {
  .nav-inner {
    height: var(--nav-height-desktop);
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--color-dark);
  flex-shrink: 0;
}

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

@media (min-width: 1024px) {
  .nav-logo {
    font-size: 26px;
  }
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-menu a:hover { color: var(--color-accent); }

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-accent);
}

.nav-menu li {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  pointer-events: none;
}

.nav-menu li:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
}

.nav-submenu a:hover {
  background-color: var(--color-bg-alt);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  position: relative;
  color: var(--color-dark);
  transition: background-color 0.2s;
}

.nav-icon-btn:hover {
  background-color: var(--color-bg-alt);
}

.nav-icon-btn svg {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--color-accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s var(--ease);
}

.cart-badge.has-items {
  opacity: 1;
  transform: scale(1);
}

.nav-cta {
  display: none;
  padding: 10px 20px;
  background: var(--color-cta);
  color: white;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

@media (min-width: 1024px) {
  .nav-cta { display: inline-flex; align-items: center; gap: 6px; }
}

.nav-cta:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-dark);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  padding: 24px 16px;
}

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

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  display: block;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  background: white;
  color: var(--color-dark);
  border: 1px solid var(--color-border);
}

.mobile-menu a:hover, .mobile-menu a.active {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.mobile-menu .submenu {
  margin-left: 16px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu .submenu a {
  font-size: 15px;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid var(--color-border);
}

.mobile-menu-section-title {
  display: block;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
}

.mobile-menu .top-bar {
  margin-top: 24px;
  padding: 24px 0 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu .top-bar a {
  background: transparent;
  font-size: 16px;
  text-align: center;
  border: 1px solid var(--color-border);
}

.mobile-cta {
  background: var(--color-cta) !important;
  color: white !important;
  border: none !important;
  text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease-fast);
  cursor: pointer;
  min-height: 48px;
  white-space: nowrap;
  text-align: center;
  user-select: none;
}

.btn-primary {
  background: var(--color-cta);
  color: white;
}

.btn-primary:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--color-accent);
  color: white;
}

.btn-accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn-outline:hover {
  background: var(--color-dark);
  color: white;
}

.btn-light {
  background: white;
  color: var(--color-dark);
  border-color: var(--color-border);
}

.btn-light:hover {
  border-color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
  min-height: 56px;
}

.btn-block {
  width: 100%;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-bg-alt);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 12s ease-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1.0); }
  to { transform: scale(1.12); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 64px;
  color: white;
}

.hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

.hero h1 {
  color: white;
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  max-width: 14ch;
}

.hero h1 em {
  font-style: normal;
  color: #C5DBA8;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  max-width: 50ch;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  flex: 1 1 auto;
  min-width: 160px;
}

@media (min-width: 768px) {
  .hero-actions .btn {
    flex: 0 1 auto;
  }
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: white;
  font-size: 14px;
}

.hero-stars-icons {
  display: inline-flex;
  gap: 2px;
}

.hero-stars-icons svg {
  width: 16px;
  height: 16px;
  fill: var(--color-star);
}

/* ============================================
   PROMO BAR (under hero)
   ============================================ */

.promo-bar {
  background: var(--color-dark);
  color: white;
  padding: 14px 0;
  overflow: hidden;
}

.promo-marquee {
  display: flex;
  gap: 56px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}

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

.promo-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.promo-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #C5DBA8;
}

/* ============================================
   USP STRIP
   ============================================ */

.usp-strip {
  background: white;
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

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

.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.3;
}

.usp-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .usp-item {
    font-size: 14px;
  }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--color-muted);
  font-size: 16px;
}

/* ============================================
   CATEGORY GRID (homepage)
   ============================================ */

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4/5;
  background: var(--color-bg-alt);
  transition: transform 0.4s var(--ease);
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.category-card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: white;
}

.category-card h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 4px;
}

.category-card p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 0;
}

.category-card-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* ============================================
   PRODUCT GRID
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

.product-card {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.product-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-image .img-back {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .img-back {
  opacity: 1;
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-sale {
  background: var(--color-sale);
  color: white;
}

.badge-new {
  background: var(--color-accent);
  color: white;
}

.badge-pop {
  background: var(--color-dark);
  color: white;
}

.product-card-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.2s, background 0.2s;
}

.product-card-fav:hover {
  background: var(--color-bg-alt);
  transform: scale(1.06);
}

.product-card-fav svg {
  width: 18px;
  height: 18px;
}

.product-card-fav.active svg {
  fill: var(--color-sale);
  color: var(--color-sale);
}

.product-card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .product-card-body {
    padding: 16px 18px;
  }
}

.product-card-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-dark);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-card-title {
    font-size: 15px;
  }
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--color-muted);
}

.product-card-rating .stars {
  display: inline-flex;
  gap: 1px;
}

.product-card-rating svg {
  width: 12px;
  height: 12px;
  fill: var(--color-star);
}

.product-card-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price-current {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-dark);
}

@media (min-width: 768px) {
  .price-current {
    font-size: 18px;
  }
}

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

.price-save {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-sale);
  background: rgba(200, 75, 49, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
}

.product-card-action {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  background: var(--color-dark);
  color: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s;
}

.product-card-action:hover {
  background: var(--color-accent);
}

.product-card-action svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   AWARDS / TRUST LOGOS TICKER
   ============================================ */

.logo-ticker {
  background: white;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.logo-ticker-title {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.logo-marquee {
  display: flex;
  gap: 64px;
  animation: marquee 35s linear infinite;
  align-items: center;
}

.logo-marquee-item {
  flex-shrink: 0;
  height: 60px;
  display: flex;
  align-items: center;
  opacity: 0.7;
  filter: grayscale(50%);
  transition: all 0.3s;
}

.logo-marquee-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.logo-marquee-item img {
  max-height: 60px;
  width: auto;
}

/* ============================================
   FEATURE BLOCKS
   ============================================ */

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .feature-row.reversed .feature-image {
    order: 2;
  }
}

.feature-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
}

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

.feature-content h2 {
  margin-bottom: 16px;
}

.feature-content > p {
  color: var(--color-text);
  margin-bottom: 24px;
  font-size: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.feature-list-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   WHY US (icon grid)
   ============================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.why-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all 0.3s var(--ease);
  text-align: center;
}

@media (min-width: 768px) {
  .why-card {
    padding: 32px 24px;
    text-align: left;
  }
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin: 0 auto 16px;
}

@media (min-width: 768px) {
  .why-icon {
    margin: 0 0 20px;
    width: 56px;
    height: 56px;
  }
}

.why-card:hover .why-icon {
  background: var(--color-accent);
  color: white;
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .why-icon svg {
    width: 28px;
    height: 28px;
  }
}

.why-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .why-card h3 {
    font-size: 18px;
  }
}

.why-card p {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 0;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.compare-wrap {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table thead {
  background: var(--color-dark);
  color: white;
}

.compare-table th {
  padding: 18px 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
}

.compare-table th:nth-child(2) {
  text-align: center;
  background: var(--color-accent);
  position: relative;
}

.compare-table th:nth-child(3) {
  text-align: center;
  background: #555;
}

.compare-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--color-dark);
}

.compare-table td:nth-child(2) {
  text-align: center;
  background: rgba(45, 80, 22, 0.04);
  font-weight: 600;
  color: var(--color-accent);
}

.compare-table td:nth-child(3) {
  text-align: center;
  color: var(--color-muted);
}

.compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
}

.compare-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ddd;
  color: white;
}

.compare-check svg, .compare-cross svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 600px) {
  .compare-table th, .compare-table td {
    padding: 10px 8px;
    font-size: 12px;
  }
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--color-border);
  position: relative;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-star);
}

.review-text {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--color-text);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.review-author-info p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.review-author-info span {
  font-size: 12px;
  color: var(--color-muted);
}

/* ============================================
   FAQ
   ============================================ */

.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-dark);
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--color-accent);
}

.faq-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-alt);
  transition: all 0.3s var(--ease);
}

.faq-item.open .faq-q-icon {
  background: var(--color-accent);
  color: white;
  transform: rotate(45deg);
}

.faq-q-icon svg {
  width: 16px;
  height: 16px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a-inner {
  padding: 0 0 20px;
  color: var(--color-text);
  line-height: 1.6;
}

.faq-a-inner p {
  margin-bottom: 12px;
}

.faq-a-inner p:last-child { margin-bottom: 0; }

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: linear-gradient(135deg, var(--color-accent) 0%, #1A3309 100%);
  color: white;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 219, 168, 0.15) 0%, transparent 60%);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: white;
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.cta-band p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-primary {
  background: white;
  color: var(--color-dark);
}

.cta-band .btn-primary:hover {
  background: var(--color-bg);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 24px;
}

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

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

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

.footer-brand-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: white;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand-logo span {
  color: #C5DBA8;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.7;
  max-width: 380px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: #C5DBA8;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0.85;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #C5DBA8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  opacity: 0.6;
  text-align: center;
}

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

.footer-payment {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-payment img {
  height: 24px;
  opacity: 0.85;
}

/* ============================================
   PRODUCT DETAIL PAGE - MOST IMPORTANT!
   ============================================ */

.pdp {
  padding: 16px 0 32px;
}

@media (min-width: 768px) {
  .pdp {
    padding: 32px 0 48px;
  }
}

.pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pdp-breadcrumb a:hover {
  color: var(--color-accent);
}

.pdp-breadcrumb svg {
  width: 12px;
  height: 12px;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .pdp-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }
}

/* PDP Gallery */
.pdp-gallery {
  position: relative;
}

@media (min-width: 1024px) {
  .pdp-gallery {
    position: sticky;
    top: calc(var(--nav-height-desktop) + 24px);
  }
}

.pdp-main-image {
  position: relative;
  background: var(--color-bg-alt);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 12px;
}

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

.pdp-image-zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.pdp-image-zoom svg {
  width: 18px;
  height: 18px;
}

.pdp-image-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .pdp-thumbs {
    grid-template-columns: repeat(6, 1fr);
  }
}

.pdp-thumb {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-alt);
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

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

.pdp-thumb.active {
  border-color: var(--color-dark);
}

/* PDP Info */
.pdp-info {
  display: flex;
  flex-direction: column;
}

.pdp-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pdp-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.pdp-rating .stars {
  display: inline-flex;
  gap: 1px;
}

.pdp-rating svg {
  width: 18px;
  height: 18px;
  fill: var(--color-star);
}

.pdp-rating span {
  font-size: 14px;
  color: var(--color-muted);
}

.pdp-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.pdp-price {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-dark);
}

.pdp-price-old {
  font-size: 18px;
  color: var(--color-muted);
  text-decoration: line-through;
}

.pdp-price-save {
  background: var(--color-sale);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.pdp-price-info {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.pdp-trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--color-bg-alt);
  border-radius: 12px;
}

.pdp-trust-mini-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}

.pdp-trust-mini-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

.pdp-short-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 24px;
}

.pdp-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
}

.pdp-feature svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pdp-options {
  margin-bottom: 24px;
}

.pdp-option {
  margin-bottom: 16px;
}

.pdp-option-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.pdp-option-label span {
  font-weight: 400;
  color: var(--color-muted);
}

.pdp-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-color-swatch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 2px solid var(--color-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.pdp-color-swatch:hover {
  border-color: var(--color-dark);
}

.pdp-color-swatch.active {
  border-color: var(--color-dark);
  background: var(--color-dark);
  color: white;
}

.pdp-color-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.pdp-quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pdp-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: white;
}

.pdp-qty-btn {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  transition: color 0.2s;
}

.pdp-qty-btn:hover {
  color: var(--color-accent);
}

.pdp-qty-input {
  width: 50px;
  height: 48px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-dark);
}

.pdp-qty-input:focus { outline: none; }

.pdp-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

@media (min-width: 600px) {
  .pdp-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.pdp-actions .btn { width: 100%; }

.pdp-stock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 24px;
  color: var(--color-success);
  font-weight: 500;
}

.pdp-stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  position: relative;
}

.pdp-stock-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--color-success);
  opacity: 0.3;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.5); opacity: 0; }
}

.pdp-shipping-info {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.pdp-shipping-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}

.pdp-shipping-info-row + .pdp-shipping-info-row {
  border-top: 1px solid var(--color-border);
}

.pdp-shipping-info-row svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pdp-shipping-info-row > div {
  font-size: 14px;
  line-height: 1.4;
}

.pdp-shipping-info-row strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.pdp-shipping-info-row span {
  color: var(--color-muted);
}

/* PDP Tabs */
.pdp-tabs {
  margin-top: 48px;
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

@media (min-width: 1024px) {
  .pdp-tabs {
    margin-top: 80px;
  }
}

.pdp-tabs-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pdp-tab-btn {
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}

.pdp-tab-btn:hover { color: var(--color-dark); }

.pdp-tab-btn.active {
  color: var(--color-dark);
  border-bottom-color: var(--color-dark);
}

.pdp-tab-content {
  display: none;
  font-size: 15px;
  line-height: 1.6;
}

.pdp-tab-content.active { display: block; }

.pdp-tab-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 20px;
}

.pdp-tab-content h3:first-child { margin-top: 0; }

.pdp-tab-content p {
  margin-bottom: 14px;
}

.pdp-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 600px) {
  .pdp-specs {
    grid-template-columns: 1fr 1fr;
  }
}

.pdp-spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 600px) {
  .pdp-spec-row:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
}

.pdp-spec-row:last-child {
  border-bottom: none;
}

.pdp-spec-row strong {
  font-weight: 600;
  color: var(--color-dark);
}

.pdp-spec-row span {
  color: var(--color-muted);
}

/* Sticky bottom add-to-cart bar (mobile) */
.pdp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--color-border);
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  z-index: 999;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}

.pdp-sticky-bar.visible {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .pdp-sticky-bar {
    display: none;
  }
}

.pdp-sticky-info {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pdp-sticky-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-dark);
}

.pdp-sticky-old {
  font-size: 12px;
  color: var(--color-muted);
  text-decoration: line-through;
}

.pdp-sticky-bar .btn {
  flex: 1;
  white-space: nowrap;
}

/* ============================================
   COLLECTION PAGE
   ============================================ */

.col-hero {
  position: relative;
  padding: 32px 0 16px;
  background: var(--color-bg-alt);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .col-hero {
    padding: 56px 0 24px;
    margin-bottom: 32px;
  }
}

.col-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.col-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.col-hero p {
  font-size: 16px;
  color: var(--color-muted);
  margin-bottom: 0;
}

.col-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 12px;
}

.col-count {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 500;
}

.col-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.col-sort select {
  padding: 8px 32px 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* ============================================
   CART PAGE
   ============================================ */

.cart-page {
  padding: 24px 0 64px;
}

.cart-page h1 {
  margin-bottom: 8px;
}

.cart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 1024px) {
  .cart-grid {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
  }
}

.cart-items {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 8px;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  padding: 16px 12px;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

@media (min-width: 600px) {
  .cart-item {
    grid-template-columns: 100px 1fr auto auto;
    gap: 20px;
    padding: 20px 16px;
  }
}

.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

@media (min-width: 600px) {
  .cart-item-img {
    width: 100px;
    height: 100px;
  }
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

@media (min-width: 600px) {
  .cart-item-info h3 { font-size: 16px; }
}

.cart-item-meta {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.cart-item-price-mobile {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark);
  margin-top: 4px;
}

@media (min-width: 600px) {
  .cart-item-price-mobile { display: none; }
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: white;
}

.cart-item-qty button {
  width: 32px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-dark);
}

.cart-item-qty input {
  width: 32px;
  height: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
}

.cart-item-qty input:focus { outline: none; }

.cart-item-price {
  display: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark);
  text-align: right;
  min-width: 80px;
}

@media (min-width: 600px) {
  .cart-item-price { display: block; }
}

.cart-item-remove {
  grid-column: 3;
  grid-row: 2;
  align-self: flex-start;
  color: var(--color-muted);
  font-size: 12px;
  text-decoration: underline;
}

@media (min-width: 600px) {
  .cart-item-remove {
    grid-column: auto;
    grid-row: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  .cart-item-remove:hover {
    background: var(--color-bg-alt);
    color: var(--color-sale);
  }
}

.cart-item-remove svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 599px) {
  .cart-item-remove svg { display: none; }
}

@media (min-width: 600px) {
  .cart-item-remove .text { display: none; }
}

.cart-summary {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-height) + 16px);
}

@media (min-width: 1024px) {
  .cart-summary {
    top: calc(var(--nav-height-desktop) + 24px);
  }
}

.cart-summary h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  color: var(--color-text);
}

.cart-line.total {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-dark);
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  margin-top: 8px;
}

.cart-summary .btn {
  margin-top: 16px;
  width: 100%;
}

.cart-empty {
  text-align: center;
  padding: 64px 24px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.cart-empty svg {
  width: 64px;
  height: 64px;
  color: var(--color-muted);
  margin: 0 auto 16px;
  display: block;
}

.cart-empty h2 {
  margin-bottom: 8px;
}

.cart-empty p {
  color: var(--color-muted);
  margin-bottom: 24px;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .form-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.form-field label .required {
  color: var(--color-sale);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 15px;
  background: white;
  color: var(--color-dark);
  transition: border-color 0.2s;
  min-height: 48px;
  font-family: inherit;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-field-help {
  font-size: 12px;
  color: var(--color-muted);
}

.form-radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.form-radio {
  flex: 1;
  min-width: 100px;
}

.form-radio input { display: none; }

.form-radio label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.form-radio label:hover {
  border-color: var(--color-dark);
}

.form-radio input:checked + label {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: white;
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */

.wa-widget {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + 16px);
  right: 16px;
  z-index: 998;
}

@media (min-width: 1024px) {
  .wa-widget {
    bottom: 24px;
    right: 24px;
  }
}

.wa-btn {
  position: relative;
  width: 56px;
  height: 56px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}

@media (min-width: 1024px) {
  .wa-btn {
    width: 60px;
    height: 60px;
  }
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@media (min-width: 1024px) {
  .wa-btn svg {
    width: 32px;
    height: 32px;
  }
}

.wa-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-whatsapp);
  z-index: -1;
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.wa-tooltip {
  display: none;
}

@media (min-width: 1024px) {
  .wa-tooltip {
    display: block;
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-dark);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
  }

  .wa-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--color-dark);
  }

  .wa-widget:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
  }
}

/* ============================================
   BOTTOM NAV (mobile only)
   ============================================ */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-nav-height);
  background: white;
  border-top: 1px solid var(--color-border);
  display: flex;
  z-index: 990;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.04);
}

@media (min-width: 1024px) {
  .bottom-nav {
    display: none;
  }
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 11px;
  color: var(--color-muted);
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}

.bottom-nav-item.active {
  color: var(--color-accent);
}

.bottom-nav-item svg {
  width: 22px;
  height: 22px;
}

.bottom-nav-item .badge-num {
  position: absolute;
  top: 4px;
  right: 30%;
  background: var(--color-sale);
  color: white;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */

.lang-switcher {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + 16px);
  left: 16px;
  z-index: 998;
}

@media (min-width: 1024px) {
  .lang-switcher {
    bottom: 24px;
    left: 24px;
  }
}

.lang-btn {
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s;
}

.lang-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.lang-flag { font-size: 16px; }

.lang-dropdown {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s var(--ease-fast);
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}

.lang-option:hover {
  background: var(--color-bg-alt);
}

.lang-option.active {
  background: var(--color-accent);
  color: white;
}

/* ============================================
   ANIMATIONS / SCROLL REVEAL
   ============================================ */

[data-anim] {
  opacity: 0;
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

[data-anim="fade-up"] {
  transform: translateY(40px);
}

[data-anim="fade-left"] {
  transform: translateX(-80px);
}

[data-anim="fade-right"] {
  transform: translateX(80px);
}

[data-anim="scale-up"] {
  transform: scale(0.96) translateY(40px);
}

[data-anim].in-view {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ============================================
   TOAST / NOTIFICATIONS
   ============================================ */

.toast {
  position: fixed;
  top: calc(var(--nav-height) + 16px);
  right: 16px;
  background: var(--color-dark);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transform: translateX(calc(100% + 32px));
  transition: transform 0.4s var(--ease);
  max-width: calc(100% - 32px);
}

.toast.visible {
  transform: translateX(0);
}

.toast svg {
  width: 18px;
  height: 18px;
  color: #C5DBA8;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .toast {
    top: calc(var(--nav-height-desktop) + 16px);
    right: 24px;
  }
}

/* ============================================
   STORY BLOCK / OVER ONS
   ============================================ */

.story {
  background: var(--color-bg-alt);
}

.story-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .story-block {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.story-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.story-stat {
  background: white;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--color-border);
}

.story-stat-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.story-stat-label {
  font-size: 13px;
  color: var(--color-muted);
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.process-step {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.process-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
}

/* ============================================
   UTILS
   ============================================ */

/* Hide on mobile only - using max-width so the rule simply doesn't apply on desktop,
   letting each element's own display rule (flex, inline-flex, etc) take effect. */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

.text-center { text-align: center; }

.bg-light { background: var(--color-bg-alt); }
.bg-white { background: white; }
.bg-dark { background: var(--color-dark); color: white; }

.video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-dark);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Map */
.map-frame {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 16px;
}

/* Skeleton loader */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Scroll bar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-muted); }

/* ============================================
   PDP V2 — CONVERSION-OPTIMIZED PRODUCT PAGE
   ============================================ */

/* Breadcrumb refinement */
.pdp-breadcrumb {
  font-size: 13px;
  color: var(--color-muted);
  padding: 16px 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.pdp-breadcrumb a {
  color: var(--color-muted);
  transition: color .2s;
}
.pdp-breadcrumb a:hover { color: var(--color-accent); }
.pdp-breadcrumb .bc-sep { color: #c8c5c0; }
.pdp-breadcrumb .bc-current {
  color: var(--color-text);
  font-weight: 500;
}

/* Gallery badges overlay */
.pdp-gallery-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.pdp-info-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pdp-info-badge-pop {
  background: #FEF3C7;
  color: #78350F;
}
.pdp-info-badge-new {
  background: var(--color-accent);
  color: white;
}
.pdp-gallery-badge-sale {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--color-sale);
  color: white;
}

.pdp-zoom-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-muted);
}

/* Info column */
.pdp-eyebrow {
  margin-bottom: 8px;
}
.pdp-cat-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.pdp-cat-link:hover { color: var(--color-accent-hover); }

.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.pdp-stars { display: inline-flex; gap: 1px; }
.pdp-rating-num {
  font-size: 15px;
  color: var(--color-dark);
  font-weight: 700;
}
.pdp-rating-link {
  font-size: 14px;
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pdp-rating-link:hover { color: var(--color-accent); }

/* Price block */
.pdp-price-block {
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 18px;
}
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.pdp-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}
.pdp-price-old {
  font-size: 18px;
  color: var(--color-muted);
  text-decoration: line-through;
}
.pdp-price-save {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  background: var(--color-sale);
  color: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.pdp-tax-note {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 10px;
}

/* Social proof bar */
.pdp-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(90deg, #FFF7ED 0%, #FEF3C7 100%);
  border: 1px solid #F59E0B33;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 14px;
}
.proof-fire { font-size: 18px; }
.proof-text { color: #78350F; }
.proof-text strong { color: #78350F; font-weight: 700; }

/* Buy block */
.pdp-buy-block { margin-top: 24px; }

.pdp-cta-primary {
  position: relative;
  overflow: hidden;
}
.pdp-cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s;
}
.pdp-cta-primary:hover::before {
  transform: translateX(100%);
}

/* Trust strip (compact, near buy button) */
.pdp-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.trust-mini-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}
.trust-mini-item svg { color: var(--color-accent); }
.trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.15);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(45,80,22,0.15); }
  50% { box-shadow: 0 0 0 6px rgba(45,80,22,0); }
}

/* Trust banner (4 cards) */
.pdp-trust-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 48px 0;
  padding: 24px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .pdp-trust-banner { grid-template-columns: repeat(4, 1fr); padding: 32px; gap: 16px; }
}
.trust-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .trust-banner-item { flex-direction: row; text-align: left; }
}
.trust-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-bg-alt);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-banner-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
}
.trust-banner-item span {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
}

/* ============= FBT (Frequently Bought Together) ============= */
.fbt-section {
  margin: 64px 0;
}
.fbt-header {
  text-align: center;
  margin-bottom: 24px;
}
.fbt-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-dark);
}
@media (min-width: 768px) {
  .fbt-title { font-size: 28px; }
}
.fbt-sub {
  color: var(--color-muted);
  font-size: 14px;
  margin-top: 4px;
}
.fbt-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 24px;
}
@media (min-width: 768px) {
  .fbt-card {
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
  }
}
.fbt-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .fbt-images { margin-bottom: 0; gap: 12px; }
}
.fbt-img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .fbt-img-wrap { width: 110px; height: 110px; }
}
.fbt-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.fbt-plus {
  font-size: 22px;
  color: var(--color-muted);
  font-weight: 300;
}
.fbt-list {
  list-style: none;
  margin-bottom: 20px;
}
.fbt-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.fbt-item:last-child { border-bottom: 0; }
.fbt-item input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
}
.fbt-label {
  flex: 1;
  color: var(--color-text);
  cursor: pointer;
}
.fbt-label a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fbt-label a:hover { color: var(--color-accent); }
.fbt-price {
  font-weight: 700;
  color: var(--color-dark);
  font-size: 14px;
  white-space: nowrap;
}
.fbt-this .fbt-label { font-weight: 500; }
.fbt-this .fbt-label strong { color: var(--color-accent); }
.fbt-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fbt-total-block {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 8px;
}
.fbt-total-label {
  font-size: 14px;
  color: var(--color-muted);
}
.fbt-total-amount {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-dark);
}

/* ============= WHY THIS PRODUCT ============= */
.pdp-why {
  margin: 64px 0;
}
.pdp-why-header {
  text-align: center;
  margin-bottom: 32px;
}
.pdp-why-header h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .pdp-why-header h2 { font-size: 32px; }
}
.pdp-why-header p {
  color: var(--color-muted);
  max-width: 520px;
  margin: 0 auto;
}
.pdp-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .pdp-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .pdp-why-grid { grid-template-columns: repeat(4, 1fr); }
}
.why-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ============= DETAILED DESCRIPTION ============= */
.pdp-detail-section {
  margin: 64px 0;
  padding: 48px 32px;
  background: white;
  border-radius: 24px;
  border: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .pdp-detail-section { padding: 64px; }
}
.pdp-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .pdp-detail-grid { grid-template-columns: 1.3fr 1fr; gap: 56px; }
}
.pdp-detail-text h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .pdp-detail-text h2 { font-size: 32px; }
}
.pdp-detail-text p {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 15px;
}
.pdp-detail-text h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 28px 0 12px;
}
.pdp-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pdp-detail-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-text);
  line-height: 1.6;
  font-size: 15px;
}
.pdp-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: var(--color-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.pdp-detail-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.pdp-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============= SPECS ============= */
.pdp-specs-section {
  margin: 64px 0;
}
.pdp-specs-section h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .pdp-specs-section h2 { font-size: 32px; }
}
.pdp-specs-grid {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.pdp-spec-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .pdp-spec-row { padding: 18px 28px; grid-template-columns: 1fr 2fr; }
}
.pdp-spec-row:last-child { border-bottom: 0; }
.pdp-spec-row:nth-child(odd) { background: rgba(0,0,0,0.015); }
.spec-label {
  font-weight: 600;
  color: var(--color-muted);
  font-size: 14px;
}
.spec-value {
  font-weight: 500;
  color: var(--color-text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.spec-color-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
}
.spec-stock-yes {
  color: var(--color-accent);
  font-weight: 700;
}

/* ============= COMPARISON TABLE ============= */
.pdp-compare-section {
  margin: 64px 0;
}
.pdp-compare-section h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .pdp-compare-section h2 { font-size: 32px; }
}
.pdp-compare-sub {
  color: var(--color-muted);
  margin-bottom: 24px;
}
.pdp-compare-table-wrap {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pdp-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
.pdp-compare-table thead {
  background: var(--color-bg-alt);
}
.pdp-compare-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
}
.compare-th-us {
  background: var(--color-accent);
  color: white !important;
  position: relative;
}
.compare-th-us::after {
  content: '★';
  margin-left: 8px;
  color: #FBBF24;
}
.pdp-compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-top: 1px solid var(--color-border);
}
.compare-feat {
  font-weight: 600;
  color: var(--color-text);
  background: rgba(0,0,0,0.015);
}
.compare-yes {
  color: var(--color-accent);
  font-weight: 700;
  background: rgba(45,80,22,0.04);
}
.compare-no {
  color: var(--color-sale);
  font-weight: 600;
}
.compare-mid {
  color: #B45309;
  font-weight: 500;
}

/* ============= INSTALLATION STEPS ============= */
.pdp-steps-section {
  margin: 64px 0;
}
.pdp-steps-section h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .pdp-steps-section h2 { font-size: 32px; }
}
.pdp-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .pdp-steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .pdp-steps-grid { grid-template-columns: repeat(4, 1fr); }
}
.step-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}
.pdp-steps-cta {
  text-align: center;
  margin-top: 32px;
  padding: 24px;
  background: var(--color-bg-alt);
  border-radius: 16px;
}
.pdp-steps-cta p {
  color: var(--color-text);
  margin-bottom: 12px;
  font-weight: 500;
}

/* ============= REVIEWS SECTION ============= */
.pdp-reviews-section {
  margin: 64px 0;
  scroll-margin-top: 100px;
}
.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .reviews-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.reviews-title-block h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .reviews-title-block h2 { font-size: 32px; }
}
.reviews-rating-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--color-muted);
}
.reviews-rating-line strong {
  color: var(--color-dark);
  font-size: 16px;
}

/* Reviews overview (big rating + distribution) */
.reviews-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .reviews-overview {
    grid-template-columns: 240px 1fr;
    gap: 48px;
    padding: 40px;
  }
}
.reviews-big-rating {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .reviews-big-rating {
    border-bottom: 0;
    border-right: 1px solid var(--color-border);
    padding-bottom: 0;
    padding-right: 32px;
  }
}
.big-rating-num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}
.big-rating-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 8px 0;
}
.big-rating-sub {
  font-size: 13px;
  color: var(--color-muted);
}
.big-rating-recommend {
  margin-top: 16px;
  padding: 10px 14px;
  background: var(--color-bg-alt);
  border-radius: 10px;
  font-size: 13px;
  color: var(--color-text);
}
.big-rating-recommend strong { color: var(--color-accent); font-size: 16px; }

.reviews-distribution {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dist-row {
  display: grid;
  grid-template-columns: 32px 1fr 40px;
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
  border-radius: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background .15s;
  text-align: left;
  width: 100%;
  font: inherit;
}
.dist-row:hover { background: var(--color-bg-alt); }
.dist-star {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}
.dist-bar {
  height: 8px;
  background: #f0ede7;
  border-radius: 4px;
  overflow: hidden;
}
.dist-fill {
  display: block;
  height: 100%;
  background: var(--color-star);
  border-radius: 4px;
  transition: width .8s var(--ease);
}
.dist-count {
  text-align: right;
  font-size: 13px;
  color: var(--color-muted);
  font-variant-numeric: tabular-nums;
}

/* Filter bar */
.reviews-filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  margin-bottom: 24px;
  scrollbar-width: none;
}
.reviews-filter-bar::-webkit-scrollbar { display: none; }
.review-filter-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.review-filter-btn:hover {
  border-color: var(--color-dark);
}
.review-filter-btn.active {
  background: var(--color-dark);
  color: white;
  border-color: var(--color-dark);
}

/* Review grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.review-card-v2 {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  transition: all .25s;
}
.review-card-v2:hover {
  box-shadow: var(--shadow-md);
}
.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.review-meta {
  flex: 1;
  min-width: 0;
}
.review-name {
  font-weight: 700;
  color: var(--color-dark);
  font-size: 14px;
}
.review-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-muted);
}
.review-sub .dot { font-size: 10px; }
.review-rating-line {
  display: flex;
  gap: 2px;
}
.review-verified-row {
  margin: 8px 0 12px;
}
.review-verified {
  display: inline-block;
  padding: 3px 8px;
  background: rgba(45,80,22,0.08);
  color: var(--color-accent);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.review-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}
.review-body {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 12px;
}
.review-photos {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.review-photos img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: transform .2s;
}
.review-photos img:hover { transform: scale(1.05); }
.review-foot {
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}
.review-helpful-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted);
  cursor: pointer;
  transition: all .2s;
}
.review-helpful-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.review-helpful-btn.active {
  background: rgba(45,80,22,0.08);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.reviews-more {
  text-align: center;
  margin-top: 24px;
}

/* Hidden reviews when filtering */
.review-card-v2.is-hidden {
  display: none;
}

/* ============= Q&A ============= */
.pdp-qa-section {
  margin: 64px 0;
  padding: 48px 32px;
  background: var(--color-bg-alt);
  border-radius: 24px;
}
@media (min-width: 768px) {
  .pdp-qa-section { padding: 64px; }
}
.pdp-qa-section h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .pdp-qa-section h2 { font-size: 32px; }
}
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.qa-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .25s;
}
.qa-item[open] {
  box-shadow: var(--shadow-md);
}
.qa-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark);
  position: relative;
  padding-right: 50px;
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform .2s;
}
.qa-item[open] summary::after {
  content: '−';
}
.qa-item p {
  padding: 0 22px 22px;
  color: var(--color-text);
  line-height: 1.7;
  font-size: 14px;
}
.qa-cta {
  margin-top: 24px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  text-align: center;
}
.qa-cta p {
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 12px;
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: white !important;
  border: 0;
}
.btn-whatsapp:hover {
  background: #1eaa54;
  color: white !important;
}

/* ============= RELATED ============= */
.pdp-related {
  margin-top: 64px !important;
}

/* ============= BOTTOM CTA ============= */
.pdp-bottom-cta {
  margin: 64px 0 32px;
  padding: 48px 24px;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-accent) 100%);
  border-radius: 24px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .pdp-bottom-cta { padding: 72px 48px; }
}
.pdp-bottom-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.bottom-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.bottom-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .bottom-cta-inner h2 { font-size: 36px; }
}
.bottom-cta-inner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.bottom-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 640px) {
  .bottom-cta-actions { flex-direction: row; justify-content: center; }
}

/* ============= STICKY MOBILE BAR (refined) ============= */
.pdp-sticky-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
}
.pdp-sticky-bar .pdp-sticky-info {
  flex: 1;
  min-width: 0;
}
.pdp-sticky-title {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.pdp-sticky-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pdp-sticky-price {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-dark);
}
.pdp-sticky-old {
  font-size: 13px;
  color: var(--color-muted);
  text-decoration: line-through;
}
.pdp-sticky-cta {
  flex-shrink: 0;
  height: 44px;
  padding: 0 18px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Make the BIG headline cleaner on mobile */
.pdp-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .pdp-title { font-size: 36px; }
}

/* Btn small variant */
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* Btn dark */
.btn-dark {
  background: var(--color-dark);
  color: white;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
}
.btn-dark:hover { background: #000; color: white; }

