/* ============ DEPEDÉ DISTRIBUIDORA — STYLES ============ */
:root {
  --white: #FFFFFF;
  --blue: #00A8F6;
  --blue-hover: #188CCD;
  --navy: #183356;
  --navy-dark: #011533;
  --ink: #183356;
  --ink-muted: #6b7a90;
  --line: #e6ebf2;
  --bg-soft: #f4f7fb;
  --bg-soft-2: #eaf4fb;
  --sale: #e11d48;
  --shadow-sm: 0 1px 2px rgba(1, 21, 51, 0.06);
  --shadow-md: 0 6px 24px rgba(1, 21, 51, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== Layout ===== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

/* ===== Top bar ===== */
.topbar {
  background: var(--navy-dark);
  color: #b9c6dc;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  gap: 16px;
}
.topbar-slogan {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d8e2f0;
}
.topbar-slogan .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
}
.topbar-right {
  display: flex; align-items: center; gap: 22px;
}
.topbar-right .item {
  display: flex; align-items: center; gap: 6px;
  color: #d8e2f0;
}
.topbar-right .item svg { color: var(--blue); }
.topbar-right select {
  background: transparent;
  border: none;
  color: #d8e2f0;
  font: inherit;
  cursor: pointer;
}
@media (max-width: 768px) {
  .topbar-slogan span:last-child { display: none; }
  .topbar-right { gap: 14px; }
  .topbar-right .item.tienda { display: none; }
}

/* ===== Header ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
  gap: 16px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  display: flex; align-items: center; gap: 6px;
  position: relative;
  padding: 6px 0;
}
.header-nav a:hover { color: var(--blue-hover); }
.header-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--blue); border-radius: 2px;
}
.header-logo {
  display: flex;
  justify-content: center;
}
.header-logo svg { height: 56px; width: auto; }
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.header-phone {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.header-phone .phone-ico {
  width: 28px; height: 28px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  border-radius: 50%;
  transition: background .15s;
}
.icon-btn:hover { background: var(--bg-soft); }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
  border: 2px solid white;
}
.hamburger { display: none; }
@media (max-width: 1024px) {
  .header-inner { grid-template-columns: auto 1fr auto; height: 72px; }
  .header-nav { display: none; }
  .header-logo { justify-content: flex-start; }
  .header-logo svg { height: 42px; }
  .hamburger { display: flex; }
  .header-phone span { display: none; }
  .header-phone { padding: 6px; border: none; }
  .header-right .icon-btn.compare,
  .header-right .icon-btn.fav,
  .header-right .icon-btn.search { display: none; }
}

/* ===== Mobile drawer ===== */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(1, 21, 51, 0.5);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 320px; max-width: 85vw;
  background: var(--white);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.drawer-body { padding: 20px; overflow-y: auto; flex: 1; }
.drawer-section-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin: 18px 0 10px;
}
.drawer-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  font-weight: 600; color: var(--navy);
  border-bottom: 1px solid var(--line);
}
.drawer-cta {
  margin-top: 20px;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--blue);
  color: white;
  border-radius: 999px;
  font-weight: 700;
  justify-content: center;
}

/* ===== Search bar (header secondary) ===== */
.search-row {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.search-row-inner {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 0;
}
.search-box {
  flex: 1;
  display: flex; align-items: center; gap: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--ink-muted);
  font-size: 14px;
}
.search-box svg { color: var(--blue); flex-shrink: 0; }
.search-box input {
  flex: 1; border: none; outline: none; background: none;
  font: inherit; color: var(--navy);
}
.search-pill {
  padding: 10px 18px;
  background: white;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--line);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .search-pill { display: none; }
}

/* ===== Categories row ===== */
.cats-section {
  padding: 24px 0;
}
.cats-row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
}
.cat-card {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 18px 10px 14px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  border: 1px solid transparent;
  transition: all .2s;
  cursor: pointer;
}
.cat-card:hover {
  background: white;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cat-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.cat-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .cats-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -20px;
    padding: 0 20px 8px;
    gap: 10px;
    scrollbar-width: none;
  }
  .cats-row::-webkit-scrollbar { display: none; }
  .cat-card {
    scroll-snap-align: start;
    flex: 0 0 110px;
  }
}

/* ===== Hero ===== */
.hero {
  margin: 8px 0 40px;
}
.hero-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(120deg, #00A8F6 0%, #188CCD 55%, #183356 100%);
  min-height: 440px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}
.hero-content {
  padding: 56px;
  color: white;
  z-index: 2;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; background: #ffd400; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(255, 212, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 212, 0, 0); }
}
.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  margin-bottom: 14px;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #ffd400, #fff7c2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.5;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: white;
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0, 168, 246, 0.35); }
.btn-white {
  background: white;
  color: var(--navy);
}
.btn-white:hover { background: #f0f4fb; }
.btn-navy {
  background: var(--navy);
  color: white;
}
.btn-navy:hover { background: var(--navy-dark); }
.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 440px;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  width: 460px; height: 460px;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, #f4f7fb 60%, #d8e6f3 100%);
  border-radius: 50%;
  box-shadow: 0 30px 80px rgba(1,21,51,0.3);
}
.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 16px 40px rgba(1,21,51,0.25);
}
.hero-card-1 {
  top: 60px; right: 80px;
  width: 200px;
}
.hero-card-2 {
  bottom: 40px; left: 30px;
  width: 220px;
}
.hero-mini-img {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #eaf4fb, #c7e3f6);
  display: flex; align-items: center; justify-content: center;
  color: rgba(24, 51, 86, 0.45);
  margin-bottom: 10px;
}
.hero-mini-title {
  font-size: 13px; font-weight: 700; color: var(--navy);
  line-height: 1.2;
}
.hero-mini-price {
  color: var(--blue); font-weight: 800; font-size: 15px; margin-top: 4px;
}
.hero-floating-badge {
  position: absolute;
  background: #ffd400;
  color: var(--navy-dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  padding: 14px 18px;
  border-radius: 50%;
  font-size: 14px;
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  line-height: 1.1;
  top: 30%; right: 30%;
  transform: rotate(-12deg);
  box-shadow: 0 10px 24px rgba(255, 212, 0, 0.4);
  z-index: 3;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 36px 28px; }
  .hero-visual { min-height: 280px; }
  .hero-card-1 { right: 20px; top: 30px; width: 160px; }
  .hero-card-2 { left: 20px; bottom: 20px; width: 170px; }
  .hero-floating-badge { width: 72px; height: 72px; font-size: 12px; top: 20%; right: 20%; }
  .hero-shape { width: 320px; height: 320px; right: -40px; }
}

/* ===== Section header ===== */
.section { padding: 40px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy);
}
.section-sub {
  color: var(--ink-muted);
  font-size: 15px;
  margin-top: 6px;
  max-width: 560px;
}
.section-nav {
  display: flex; gap: 10px;
}
.section-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.section-nav button:hover { background: var(--blue); color: white; }
.section-nav button:disabled { opacity: .35; cursor: not-allowed; }

/* ===== Product card ===== */
.products-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  margin: 0 -20px;
  padding: 0 20px 6px;
  scrollbar-width: none;
}
.products-track::-webkit-scrollbar { display: none; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}
.product-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .2s;
  position: relative;
  display: flex; flex-direction: column;
  flex: 0 0 260px;
  scroll-snap-align: start;
  cursor: pointer;
}
.products-grid .product-card { flex: 1; }
.product-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-card.sold-out { opacity: 0.72; }
.product-card.sold-out .product-img::after {
  content: 'AGOTADO';
  position: absolute;
  inset: 0;
  background: rgba(24, 51, 86, 0.75);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: flex; align-items: center; justify-content: center;
}
/* ===== Photo placeholder (refined) ===== */
.product-img {
  aspect-ratio: 1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--bg-soft);
}
.product-img.tint-green  { background: radial-gradient(120% 90% at 30% 25%, #f3faf6 0%, #d5ecdf 70%, #b7dcc5 100%); }
.product-img.tint-navy   { background: radial-gradient(120% 90% at 30% 25%, #f1f6fb 0%, #d8e6f4 70%, #bcd0e6 100%); }
.product-img.tint-pink   { background: radial-gradient(120% 90% at 30% 25%, #fdf3f7 0%, #f7d8e3 70%, #efbacf 100%); }
.product-img.tint-gold   { background: radial-gradient(120% 90% at 30% 25%, #fff9e4 0%, #fde8b3 70%, #f6d281 100%); }
.product-img.tint-red    { background: radial-gradient(120% 90% at 30% 25%, #fdedef 0%, #f5c9ce 70%, #eaa5ac 100%); }
.product-img.tint-blue   { background: radial-gradient(120% 90% at 30% 25%, #ecf6fd 0%, #c1e2f6 70%, #95cdee 100%); }
.product-img::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 50% 95%, rgba(1,21,51,0.10), transparent 70%),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,0.16) 18px 19px);
  pointer-events: none;
}
.product-img::after {
  /* soft floor reflection */
  content: '';
  position: absolute;
  left: 22%; right: 22%;
  bottom: 14%; height: 6%;
  background: radial-gradient(ellipse at center, rgba(1,21,51,0.18), transparent 65%);
  filter: blur(4px);
  pointer-events: none;
}

/* The placeholder photo content */
.photo-placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  width: 100%; height: 100%;
}
.photo-frame {
  width: 56%;
  aspect-ratio: 1;
  max-width: 180px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(2px);
  border: 1.5px dashed rgba(24, 51, 86, 0.22);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(24, 51, 86, 0.35);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .2s;
  box-shadow: 0 12px 30px rgba(1,21,51,0.08);
}
.product-card:hover .photo-frame {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(0, 168, 246, 0.5);
  color: rgba(0, 168, 246, 0.7);
}
.photo-placeholder.is-large .photo-frame {
  max-width: 280px;
  width: 44%;
  border-radius: 20px;
  border-width: 2px;
}
.photo-placeholder.is-large .photo-label {
  font-size: 13px;
  margin-top: 20px;
  max-width: 70%;
  letter-spacing: 0.06em;
}
.photo-placeholder.is-large .photo-frame svg {
  width: 50%; height: 50%;
}
.photo-label {
  margin-top: 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(24, 51, 86, 0.55);
  max-width: 80%;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-tag {
  position: absolute;
  bottom: 10px; right: 10px;
  font-family: ui-monospace, "JetBrains Mono", "SF Mono", Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(1, 21, 51, 0.42);
  background: rgba(255,255,255,0.78);
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.product-body {
  padding: 14px 16px 18px;
  display: flex; flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.product-price-row {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.product-price {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
}
.product-price.sale { color: var(--sale); }
.product-price-old {
  font-size: 14px;
  color: var(--ink-muted);
  text-decoration: line-through;
}
.bulk-strip {
  display: flex;
  gap: 4px;
  margin-top: 4px;
  border-top: 1px dashed var(--line);
  padding-top: 8px;
}
.bulk-cell {
  flex: 1;
  background: var(--bg-soft);
  border-radius: 6px;
  padding: 6px 4px;
  text-align: center;
  font-size: 11px;
  color: var(--navy);
}
.bulk-cell .qty {
  font-weight: 800;
  display: block;
  color: var(--blue);
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
}

/* Badges */
.badge-stack {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}
.badge {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.badge-shipping {
  background: var(--blue);
  color: white;
}
.badge-sale {
  background: var(--sale);
  color: white;
}
.badge-bestseller {
  background: #ffd400;
  color: var(--navy-dark);
}
.badge-outlet {
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
}
.badge-mayoreo {
  background: var(--navy);
  color: white;
}
.product-fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateX(4px);
  transition: all .2s;
  z-index: 2;
}
.product-card:hover .product-fav { opacity: 1; transform: translateX(0); }
.product-fav:hover { color: var(--sale); }

/* Swatches */
.product-swatches {
  display: flex; gap: 6px; margin-top: 4px;
}
.swatch {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid white;
  outline: 1px solid var(--line);
}
.swatch.active { outline-color: var(--blue); outline-width: 2px; }

/* Countdown chip on card */
.card-countdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(225, 29, 72, 0.1);
  color: var(--sale);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ===== Promo banner + grid section ===== */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 24px;
}
@media (max-width: 1024px) {
  .promo-grid { grid-template-columns: 1fr; }
}
.promo-banner {
  background: linear-gradient(135deg, #eaf4fb 0%, #c7e3f6 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
}
.promo-banner-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-hover);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.promo-banner-title {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.05;
  margin: 12px 0 24px;
}
.promo-banner-illust {
  font-size: 120px;
  text-align: center;
  filter: drop-shadow(0 12px 20px rgba(1,21,51,0.18));
  margin: 20px 0;
}
.promo-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) {
  .promo-products { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Reels ===== */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .reels-grid { grid-template-columns: 1fr 1fr; }
}
.reel-card {
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #2a4d7a, #0b1f3d);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.reel-card.tint-green  { background: linear-gradient(180deg, #4a8a66, #1a3d28); }
.reel-card.tint-navy   { background: linear-gradient(180deg, #2a4d7a, #0b1f3d); }
.reel-card.tint-pink   { background: linear-gradient(180deg, #b85f88, #5a213a); }
.reel-card.tint-gold   { background: linear-gradient(180deg, #b8862a, #4e3b10); }
.reel-card.tint-red    { background: linear-gradient(180deg, #a3434a, #4e1620); }
.reel-card.tint-blue   { background: linear-gradient(180deg, #2c8fc9, #0b3556); }
.reel-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.18);
}
.reel-bg svg { width: 30%; height: 30%; }
.reel-mini-img svg { color: rgba(24,51,86,0.4); }
.reel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(1,21,51,0.85) 100%);
}
.reel-play {
  position: absolute;
  top: 14px; left: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.reel-ig {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 4px;
}
.reel-mini {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  background: white;
  border-radius: 12px;
  padding: 8px;
  display: flex; align-items: center; gap: 10px;
}
.reel-mini-img {
  width: 44px; height: 44px;
  background: var(--bg-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.reel-mini-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reel-mini-price {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  font-family: 'Nunito', sans-serif;
}

/* ===== Benefits bar ===== */
.benefits {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .benefits { grid-template-columns: 1fr; }
}
.benefit {
  display: flex; align-items: center; gap: 14px;
}
.benefit-icon {
  width: 52px; height: 52px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.benefit-title {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}
.benefit-sub {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* ===== Newsletter ===== */
.newsletter {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  margin: 40px 0 60px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.newsletter::after {
  content: '';
  position: absolute;
  right: 80px; bottom: -40px;
  width: 140px; height: 140px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.newsletter-content { position: relative; z-index: 1; }
.newsletter h2 {
  color: white;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
}
.newsletter p {
  margin: 0;
  opacity: 0.92;
  font-size: 15px;
  max-width: 460px;
}
.newsletter-form {
  display: flex;
  background: white;
  border-radius: 999px;
  padding: 6px;
  position: relative;
  z-index: 1;
}
.newsletter-form input {
  flex: 1;
  border: none; outline: none;
  background: transparent;
  font: inherit;
  padding: 0 18px;
  color: var(--navy);
}
.newsletter-form button {
  background: var(--navy-dark);
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
@media (max-width: 900px) {
  .newsletter { grid-template-columns: 1fr; padding: 36px 24px; }
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: #b9c6dc;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo svg { height: 50px; width: auto; }
.footer-blurb {
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-social {
  display: flex; gap: 10px; margin-top: 14px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: background .15s;
}
.footer-social a:hover { background: var(--blue); }
.footer-ig {
  margin-top: 14px;
  display: inline-flex; gap: 8px; align-items: center;
  background: rgba(0, 168, 246, 0.15);
  border: 1px solid rgba(0, 168, 246, 0.4);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: white;
}
.footer h4 {
  color: white;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-links li a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #b9c6dc;
}
.footer-links li a:hover { color: var(--blue); }
.footer-store {
  margin-bottom: 18px;
}
.footer-store-name {
  font-weight: 700;
  color: white;
  font-size: 14px;
  margin-bottom: 4px;
  display: flex; gap: 8px; align-items: center;
}
.footer-store-name svg { color: var(--blue); }
.footer-store-addr {
  font-size: 13px;
  margin-left: 24px;
  line-height: 1.5;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-pay {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.pay-chip {
  background: rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
}

/* ===== PDP ===== */
.breadcrumb {
  padding: 18px 0;
  font-size: 13px;
  color: var(--ink-muted);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--navy); font-weight: 600; }

.pdp-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
@media (max-width: 1024px) {
  .pdp-layout { grid-template-columns: 1fr; gap: 28px; }
}
.pdp-gallery {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
}
.pdp-thumbs {
  display: flex; flex-direction: column; gap: 10px;
}
.pdp-thumb {
  aspect-ratio: 1;
  background: radial-gradient(120% 90% at 30% 30%, #eaf2fb 0%, #d3e3f4 100%);
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  position: relative;
  overflow: hidden;
}
.pdp-thumb.tint-green  { background: radial-gradient(120% 90% at 30% 30%, #e6f7ec, #c9ebd4); }
.pdp-thumb.tint-navy   { background: radial-gradient(120% 90% at 30% 30%, #eaf2fb, #d3e3f4); }
.pdp-thumb.tint-pink   { background: radial-gradient(120% 90% at 30% 30%, #fdedf3, #fad4e2); }
.pdp-thumb.tint-gold   { background: radial-gradient(120% 90% at 30% 30%, #fff5d9, #ffe7a8); }
.pdp-thumb.tint-red    { background: radial-gradient(120% 90% at 30% 30%, #fde9eb, #f8c7cc); }
.pdp-thumb.tint-blue   { background: radial-gradient(120% 90% at 30% 30%, #e1f4ff, #b9e4fb); }
.pdp-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 8px, rgba(255,255,255,0.18) 8px 9px);
}
.pdp-thumb.active { border-color: var(--blue); }
.pdp-main-img {
  aspect-ratio: 1;
  background: radial-gradient(120% 90% at 30% 30%, #eaf2fb 0%, #d3e3f4 70%, #b6cee5 100%);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 200px;
  overflow: hidden;
}
.pdp-main-img.tint-green  { background: radial-gradient(120% 90% at 30% 30%, #e6f7ec 0%, #c9ebd4 70%, #aedcbe 100%); }
.pdp-main-img.tint-navy   { background: radial-gradient(120% 90% at 30% 30%, #eaf2fb 0%, #d3e3f4 70%, #b6cee5 100%); }
.pdp-main-img.tint-pink   { background: radial-gradient(120% 90% at 30% 30%, #fdedf3 0%, #fad4e2 70%, #f5b4ce 100%); }
.pdp-main-img.tint-gold   { background: radial-gradient(120% 90% at 30% 30%, #fff5d9 0%, #ffe7a8 70%, #ffd87a 100%); }
.pdp-main-img.tint-red    { background: radial-gradient(120% 90% at 30% 30%, #fde9eb 0%, #f8c7cc 70%, #f0a3aa 100%); }
.pdp-main-img.tint-blue   { background: radial-gradient(120% 90% at 30% 30%, #e1f4ff 0%, #b9e4fb 70%, #8ed1f6 100%); }
.pdp-main-img::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 35% at 50% 92%, rgba(1,21,51,0.22), transparent 70%),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,255,255,0.16) 22px 23px);
  pointer-events: none;
}
.pdp-main-img::after {
  content: '';
  position: absolute;
  left: 20%; right: 20%;
  bottom: 10%; height: 8%;
  background: radial-gradient(ellipse at center, rgba(1,21,51,0.22), transparent 65%);
  filter: blur(6px);
  pointer-events: none;
}
.pdp-main-img-tag {
  position: absolute;
  bottom: 16px; right: 18px;
  font-family: ui-monospace, "JetBrains Mono", "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(1, 21, 51, 0.5);
  background: rgba(255,255,255,0.75);
  padding: 5px 10px;
  border-radius: 6px;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.pdp-bestseller-medal {
  position: absolute;
  top: 18px; left: 18px;
  width: 78px; height: 78px;
  background: #ffd400;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(255, 212, 0, 0.4);
  text-align: center;
  line-height: 1.1;
}
.pdp-bestseller-medal::before {
  content: '★';
  font-size: 18px;
}
@media (max-width: 540px) {
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-thumbs { flex-direction: row; order: 2; }
  .pdp-thumb { flex: 1; max-width: 80px; }
  .pdp-main-img { font-size: 140px; }
}

.pdp-countdown-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.pdp-countdown-label {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 12px;
}
.pdp-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  font-variant-numeric: tabular-nums;
}
.cd-cell {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.cd-num {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.cd-label {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pdp-title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  margin-bottom: 12px;
  text-wrap: balance;
}
.pdp-stock {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px;
  color: #b08300;
  font-weight: 600;
}
.pdp-stock .dot {
  width: 8px; height: 8px; background: #ffb800; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.18);
}

.pdp-badges-row { display: flex; gap: 8px; margin: 18px 0 12px; flex-wrap: wrap; }
.pdp-price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pdp-price-old {
  color: var(--ink-muted);
  text-decoration: line-through;
  font-size: 17px;
}
.pdp-price {
  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--sale);
}
.pdp-tax {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 4px;
}
.pdp-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}

.pdp-bulk {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.bulk-card {
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: all .15s;
  position: relative;
}
.bulk-card:hover { border-color: var(--blue); }
.bulk-card.active {
  border-color: var(--blue);
  background: linear-gradient(180deg, #eaf6fe, white);
}
.bulk-card.popular::before {
  content: 'Más popular';
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--navy);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.bulk-qty {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
}
.bulk-qty span { font-size: 13px; color: var(--ink-muted); font-weight: 600; }
.bulk-price {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--blue);
  margin: 4px 0 2px;
}
.bulk-per {
  font-size: 11px;
  color: var(--ink-muted);
}
.bulk-save {
  display: inline-block;
  margin-top: 6px;
  background: rgba(0, 168, 246, 0.1);
  color: var(--blue-hover);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.pdp-qty-row {
  display: grid;
  grid-template-columns: 156px 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.qty-stepper {
  display: flex;
  align-items: center;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  height: 56px;
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.qty-stepper button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  border-radius: 50%;
  transition: background .15s;
}
.qty-stepper button:hover { background: var(--bg-soft); }
.qty-stepper button:active { background: var(--bg-soft-2); }
.qty-stepper input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  text-align: center;
  border: none; outline: none;
  background: transparent;
  font: inherit;
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  font-family: 'Nunito', sans-serif;
  appearance: textfield;
  -moz-appearance: textfield;
  padding: 0;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
@media (max-width: 540px) {
  .pdp-qty-row { grid-template-columns: 1fr; }
  .pdp-qty-row .qty-stepper { max-width: 200px; }
}
.pdp-cta-add {
  height: 56px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  transition: all .15s;
}
.pdp-cta-add:hover { background: var(--blue-hover); }
.pdp-cta-buy {
  width: 100%;
  height: 56px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.pdp-cta-buy:hover { background: var(--navy-dark); }
.pdp-cta-wa {
  width: 100%;
  height: 50px;
  border-radius: 999px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
}
.pdp-cta-wa:hover { background: #1ebe5d; }

.pdp-actions-row {
  display: flex; gap: 20px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pdp-action {
  display: flex; align-items: center; gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pdp-action:hover { color: var(--blue-hover); }

.pdp-description {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.pdp-description h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.pdp-description p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 760px;
  margin-bottom: 14px;
}
.pdp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 720px) {
  .pdp-features { grid-template-columns: 1fr; }
}
.pdp-feature {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex; gap: 14px;
  align-items: flex-start;
}
.pdp-feature-ico {
  width: 38px; height: 38px;
  background: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.pdp-feature-title {
  font-weight: 800;
  color: var(--navy);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  margin-bottom: 2px;
}
.pdp-feature-sub {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.45;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 16px 40px rgba(1, 21, 51, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all .25s;
  z-index: 300;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .check {
  width: 22px; height: 22px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
}

/* FAB */
.fab-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform .15s;
}
.fab-wa:hover { transform: scale(1.05); }

/* ============ COLLECTION PAGE ============ */
.coll-hero {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(0,168,246,0.15) 0%, transparent 50%),
    radial-gradient(80% 80% at 100% 100%, rgba(24,51,86,0.08) 0%, transparent 50%),
    var(--bg-soft);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.coll-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-hover);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.coll-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 14px;
  text-wrap: balance;
}
.coll-hero-sub {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 560px;
}
.coll-hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 12px;
}
.coll-meta-chip {
  background: white;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
}
.coll-meta-chip svg { color: var(--blue); }
.coll-hero-visual {
  position: relative;
  height: 280px;
}
.coll-hero-emoji-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
}
.coll-hero-emoji-cell {
  background: white;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s;
}
.coll-hero-emoji-cell:nth-child(1) { transform: rotate(-4deg); }
.coll-hero-emoji-cell:nth-child(3) { transform: rotate(3deg); }
.coll-hero-emoji-cell:nth-child(5) { transform: rotate(-2deg); }
.coll-hero-emoji-cell:nth-child(6) { transform: rotate(5deg); background: var(--blue); color: white; }
@media (max-width: 900px) {
  .coll-hero { grid-template-columns: 1fr; padding: 32px 24px; }
  .coll-hero-visual { display: none; }
}

.coll-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding-bottom: 60px;
}
@media (max-width: 900px) {
  .coll-layout { grid-template-columns: 1fr; }
}

/* Sidebar */
.coll-sidebar {
  position: sticky;
  top: 100px;
  height: max-content;
  align-self: start;
}
@media (max-width: 900px) {
  .coll-sidebar { position: static; }
  .coll-sidebar.mobile-hidden { display: none; }
}
.filter-block {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.filter-block:first-child { padding-top: 0; }
.filter-head {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.filter-head svg { color: var(--ink-muted); transition: transform .2s; }
.filter-head.collapsed svg { transform: rotate(-90deg); }
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-option {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
  padding: 4px 0;
}
.filter-option input { accent-color: var(--blue); width: 16px; height: 16px; }
.filter-option .count {
  margin-left: auto;
  font-size: 12px;
  color: var(--ink-muted);
}
.filter-option input:checked ~ .filter-label { font-weight: 700; color: var(--blue); }

.price-range {
  display: flex; gap: 8px; align-items: center;
  margin-top: 8px;
}
.price-input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  color: var(--navy);
  background: white;
  outline: none;
  width: 100%;
}
.price-input:focus { border-color: var(--blue); }
.price-slider {
  width: 100%;
  margin-top: 12px;
  accent-color: var(--blue);
}

.color-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.color-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  outline: 1px solid var(--line);
  cursor: pointer;
}
.color-swatch.active { outline: 2px solid var(--blue); }

.clear-filters {
  margin-top: 14px;
  display: block;
  font-size: 13px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

/* Toolbar */
.coll-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.coll-results {
  font-size: 14px;
  color: var(--ink-muted);
}
.coll-results strong { color: var(--navy); font-weight: 800; }
.coll-toolbar-right {
  display: flex; gap: 10px; align-items: center;
}
.toolbar-select {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  outline: none;
  cursor: pointer;
}
.view-toggle {
  display: flex;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 4px;
}
.view-toggle button {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
}
.view-toggle button.active {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.mobile-filter-btn {
  display: none;
  align-items: center; gap: 6px;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .mobile-filter-btn { display: inline-flex; }
}

.applied-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.applied-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-soft-2);
  border: 1px solid rgba(0, 168, 246, 0.3);
  color: var(--blue-hover);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.applied-chip button {
  color: inherit;
  display: inline-flex;
  margin-left: 2px;
}

/* Collection grid */
.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1200px) {
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .coll-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}

/* List view */
.coll-list .product-card {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px;
}
.coll-list .product-img { width: 200px; aspect-ratio: 1; border-radius: 12px; }
.coll-list .product-body { padding: 0; }
.coll-list .product-name {
  font-size: 17px;
  -webkit-line-clamp: unset;
  min-height: 0;
  margin-bottom: 8px;
}
.coll-list-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.coll-list-right {
  display: flex; flex-direction: column; gap: 10px;
  min-width: 200px;
}
.coll-list-btn {
  background: var(--blue);
  color: white;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.coll-list-btn:hover { background: var(--blue-hover); }
@media (max-width: 720px) {
  .coll-list .product-card { grid-template-columns: 120px 1fr; }
  .coll-list-right { grid-column: 1 / -1; min-width: 0; }
  .coll-list .product-img { width: 120px; }
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
}
.page-btn {
  min-width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
  background: white;
  padding: 0 10px;
}
.page-btn:hover { border-color: var(--blue); color: var(--blue); }
.page-btn.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Mobile filter drawer */
.filter-drawer {
  position: fixed;
  inset: 0;
  background: rgba(1,21,51,0.5);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  display: flex;
  align-items: flex-end;
}
.filter-drawer.open { opacity: 1; pointer-events: auto; }
.filter-drawer-inner {
  background: white;
  width: 100%;
  max-height: 88vh;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 20px 24px 100px;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.filter-drawer.open .filter-drawer-inner { transform: translateY(0); }
.filter-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.filter-drawer-foot {
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, transparent, white 30%);
  padding-top: 18px;
  margin: 18px -24px -100px;
  padding: 18px 24px 24px;
  display: flex; gap: 10px;
}
