/* ============================================
   IMPORTADORES COLOMBIA — Design System
   Paleta oficial: 2 azules + blanco + neutros + naranja urgencia
   ============================================ */

:root {
  /* Marca */
  --blue-deep: #2E4A9E;
  --blue: #6279BC;
  --blue-soft: #E8ECF7;
  --blue-hover: #243D85;

  /* Neutros */
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E0E0E0;
  --gray-300: #C7C7C7;

  /* Sólo urgencia */
  --orange: #FF6B35;
  --orange-dark: #E55A28;

  /* Soporte */
  --green: #2D9D6F;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(30, 42, 84, 0.06);
  --shadow-md: 0 4px 16px rgba(30, 42, 84, 0.08);
  --shadow-lg: 0 12px 32px rgba(30, 42, 84, 0.12);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-full: 999px;

  /* Container */
  --container: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--blue-deep);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

a { color: var(--blue-deep); text-decoration: none; }
a:hover { color: var(--blue); }

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

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

/* ========== TOPBAR ========== */
.topbar {
  background: var(--blue-deep);
  color: var(--white);
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.topbar span { margin: 0 12px; }

/* ========== HEADER ========== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.logo { height: 44px; flex-shrink: 0; }
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav a:hover { color: var(--blue-deep); }
.nav a.active { color: var(--blue-deep); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.search-box {
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border-radius: var(--r-full);
  padding: 10px 18px;
  gap: 8px;
  width: 260px;
  transition: box-shadow .2s;
}
.search-box:focus-within { box-shadow: 0 0 0 3px var(--blue-soft); background: var(--white); border: 1px solid var(--blue); }
.search-box input { border: none; background: none; flex: 1; font-size: 14px; outline: none; font-family: inherit; }
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-full);
  position: relative;
  color: var(--ink);
  transition: background .2s;
}
.icon-btn:hover { background: var(--gray-100); }
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--orange);
  color: var(--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;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-hover); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--white); color: var(--blue-deep); border: 2px solid var(--blue-deep); }
.btn-secondary:hover { background: var(--blue-deep); color: var(--white); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); color: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ========== HERO ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: var(--white);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  mix-blend-mode: overlay;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 680px;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero h1 span { color: #FFD166; }
.hero p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat { }
.hero-stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFD166;
}
.hero-stat span { font-size: 13px; opacity: 0.85; }

/* ========== TRUST BAR ========== */
.trust {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-soft);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--blue-deep);
  font-weight: 600;
}
.trust-text span { font-size: 12px; color: var(--ink-soft); }

/* ========== SECTIONS ========== */
section { padding: 80px 0; }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* ========== CATEGORIES GRID ========== */
.categories {
  background: var(--gray-50);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  text-align: center;
  transition: all .25s;
  border: 1px solid var(--gray-200);
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.cat-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-100);
}
.cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.cat-card:hover .cat-image img { transform: scale(1.08); }
.cat-name {
  padding: 16px 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--blue-deep);
  font-size: 15px;
}

/* ========== PRODUCT CARDS ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all .25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-top {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.5px;
}
.product-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: 40px;
}
.product-reviews {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.stars { color: #FFB800; letter-spacing: -1px; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.price {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-deep);
}
.price-old {
  font-size: 13px;
  color: var(--gray-300);
  text-decoration: line-through;
}
.discount-pill {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.product-card .btn {
  margin-top: auto;
  padding: 10px 16px;
  font-size: 13px;
}

/* ========== PILLAR: IMPORTADOR DIRECTO ========== */
.pillar {
  background: var(--blue-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  opacity: 0.4;
}
.pillar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pillar h2 { color: var(--white); margin-bottom: 20px; font-size: 40px; }
.pillar p { font-size: 17px; line-height: 1.7; opacity: 0.9; margin-bottom: 24px; }
.pillar-list { list-style: none; }
.pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
}
.pillar-list li:last-child { border-bottom: none; }
.pillar-list .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-weight: 700;
}
.pillar-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}
.pillar-flow {
  display: grid;
  gap: 20px;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  padding: 18px;
  border-radius: var(--r-md);
}
.flow-step.highlight { background: var(--blue); }
.flow-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-deep);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flow-step strong { display: block; font-family: 'Poppins', sans-serif; margin-bottom: 2px; }
.flow-step span { font-size: 13px; opacity: 0.8; }

/* ========== COMBOS ========== */
.combos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.combo-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  transition: all .25s;
  position: relative;
}
.combo-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.combo-card .ribbon {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.5px;
}
.combo-image { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-100); }
.combo-image img { width: 100%; height: 100%; object-fit: cover; }
.combo-info { padding: 24px; }
.combo-info h3 { font-size: 20px; margin-bottom: 8px; }
.combo-info p { color: var(--ink-soft); font-size: 14px; margin-bottom: 18px; }
.combo-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.combo-price { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: var(--blue-deep); }
.combo-price-old { font-size: 14px; color: var(--gray-300); text-decoration: line-through; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--gray-50); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  border: 1px solid var(--gray-200);
}
.testi-stars { color: #FFB800; margin-bottom: 14px; font-size: 18px; }
.testi-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.testi-meta strong { display: block; font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--blue-deep); }
.testi-meta span { font-size: 12px; color: var(--ink-soft); }

/* ========== FAQ ========== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .2s;
}
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-md); }
.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--blue-deep);
  font-size: 16px;
}
.faq-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--blue); color: var(--white); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  transition: all .3s;
}
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 500px; }

/* ========== NEWSLETTER ========== */
.newsletter {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
}
.newsletter h2 { color: var(--white); font-size: 32px; margin-bottom: 12px; }
.newsletter p { font-size: 16px; opacity: 0.9; margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  color: var(--gray-200);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; opacity: 0.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background .2s;
}
.footer-social a:hover { background: var(--blue); }
.footer-col h4 { color: var(--white); font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--gray-200); opacity: 0.75; font-size: 14px; transition: opacity .2s; }
.footer-col a:hover { opacity: 1; color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  opacity: 0.7;
}
.payment-methods { display: flex; gap: 8px; align-items: center; }
.payment-methods span {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 100;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform .2s;
  cursor: pointer;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid #25D366;
  opacity: 0.3;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: var(--ink-soft);
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { margin: 0 8px; }

/* ========== PLP (CATEGORY) ========== */
.plp-header {
  background: var(--gray-50);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}
.plp-header h1 { font-size: 40px; margin-bottom: 8px; }
.plp-header p { color: var(--ink-soft); font-size: 16px; }
.plp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding-top: 40px;
}
.filters {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.filter-group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.filter-group:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }
.filter-group h4 { font-size: 14px; margin-bottom: 12px; color: var(--blue-deep); text-transform: uppercase; letter-spacing: 1px; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
}
.filter-option input { accent-color: var(--blue-deep); }
.filter-option:hover { color: var(--blue-deep); }
.price-inputs { display: flex; gap: 8px; align-items: center; }
.price-inputs input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 13px;
  outline: none;
}
.price-inputs input:focus { border-color: var(--blue); }
.plp-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.plp-toolbar .count { font-size: 14px; color: var(--ink-soft); }
.plp-toolbar select {
  border: 1px solid var(--gray-200);
  padding: 10px 16px;
  border-radius: var(--r-full);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}
.plp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ========== PDP (PRODUCT DETAIL) ========== */
.pdp-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding-top: 20px;
}
.pdp-gallery { position: sticky; top: 100px; height: fit-content; }
.pdp-main-img {
  background: var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 12px;
  position: relative;
}
.pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main-img .badge { top: 20px; left: 20px; font-size: 12px; padding: 8px 16px; }
.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.pdp-thumb {
  aspect-ratio: 1;
  background: var(--gray-100);
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.pdp-thumb.active { border-color: var(--blue); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info h1 { font-size: 30px; margin-bottom: 14px; line-height: 1.25; }
.pdp-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--ink-soft);
}
.pdp-meta .stock { color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.pdp-meta .stock::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}
.pdp-price {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--blue-deep);
}
.pdp-price-old {
  font-size: 18px;
  color: var(--gray-300);
  text-decoration: line-through;
}
.pdp-savings { font-size: 14px; color: var(--orange-dark); font-weight: 600; margin-bottom: 24px; }

.pdp-bullets {
  list-style: none;
  background: var(--gray-50);
  padding: 20px 24px;
  border-radius: var(--r-md);
  margin-bottom: 28px;
  border-left: 4px solid var(--blue);
}
.pdp-bullets li {
  padding: 6px 0;
  font-size: 14px;
  display: flex;
  gap: 10px;
  color: var(--ink);
}
.pdp-bullets li::before { content: '✓'; color: var(--blue); font-weight: 700; }

.pdp-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.qty-label { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; }
.qty-control {
  display: inline-flex;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-full);
  overflow: hidden;
}
.qty-control button {
  background: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  font-size: 18px;
  cursor: pointer;
  color: var(--blue-deep);
  font-weight: 700;
}
.qty-control button:hover { background: var(--blue-soft); }
.qty-control input {
  width: 56px;
  border: none;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  outline: none;
}

.pdp-actions { display: flex; gap: 10px; margin-bottom: 24px; }
.pdp-actions .btn { flex: 1; padding: 18px 24px; font-size: 15px; }

.pdp-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.pdp-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--r-md);
  font-size: 13px;
}
.pdp-benefit svg { color: var(--blue); flex-shrink: 0; }
.pdp-benefit strong { display: block; font-family: 'Poppins', sans-serif; font-size: 13px; color: var(--blue-deep); }
.pdp-benefit span { font-size: 12px; color: var(--ink-soft); }

.pdp-shipping {
  background: var(--blue-soft);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.pdp-shipping svg { color: var(--blue-deep); flex-shrink: 0; }
.pdp-shipping strong { display: block; color: var(--blue-deep); font-family: 'Poppins', sans-serif; }
.pdp-shipping span { font-size: 13px; color: var(--ink-soft); }

/* PDP sections below */
.pdp-section {
  padding: 60px 0;
  border-top: 1px solid var(--gray-200);
}
.pdp-section h2 { font-size: 28px; margin-bottom: 24px; }
.specs-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 800px;
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.specs-table tr { border-bottom: 1px solid var(--gray-200); }
.specs-table tr:last-child { border: none; }
.specs-table td { padding: 14px 20px; font-size: 14px; }
.specs-table td:first-child {
  background: var(--gray-50);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--blue-deep);
  width: 40%;
}

.reviews-summary {
  background: var(--gray-50);
  border-radius: var(--r-md);
  padding: 32px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.reviews-score { text-align: center; }
.reviews-score .big {
  font-family: 'Poppins', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1;
}
.reviews-score .stars { font-size: 24px; margin: 8px 0; }
.reviews-score .count { font-size: 14px; color: var(--ink-soft); }
.reviews-bars { display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.review-bar { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.review-bar .label { width: 60px; color: var(--ink-soft); }
.review-bar .bar {
  flex: 1;
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}
.review-bar .fill { height: 100%; background: #FFB800; border-radius: 4px; }
.review-bar .pct { width: 40px; text-align: right; color: var(--ink-soft); font-weight: 600; }

.review-list { display: grid; gap: 16px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 22px;
}
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.review-author { display: flex; align-items: center; gap: 10px; }
.review-author strong { font-family: 'Poppins', sans-serif; font-size: 14px; }
.review-date { font-size: 12px; color: var(--ink-soft); }
.review-text { font-size: 14px; line-height: 1.6; color: var(--ink); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .search-box { width: 200px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid, .plp-grid { grid-template-columns: repeat(3, 1fr); }
  .combos-grid, .testi-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-inner { grid-template-columns: 1fr; gap: 40px; }
  .pdp-layout { grid-template-columns: 1fr; gap: 40px; }
  .pdp-gallery { position: static; }
  .plp-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .reviews-summary { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat strong { font-size: 24px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .plp-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .search-box { display: none; }
  .container { padding: 0 16px; }
  .pdp-price { font-size: 30px; }
  .pdp-info h1 { font-size: 24px; }
}
