/* ============ KALA & Co. — estilos ============ */

:root {
  --black: #121014;
  --black-soft: #1c171d;
  --black-card: #241e26;
  --white: #ffffff;
  --off-white: #faf7f8;
  --gray-100: #efe6ea;
  --gray-400: #9c8f96;
  --gray-700: #5a4e54;

  --pink: #ff2d78;
  --pink-dark: #e01562;
  --pink-deep: #b80f4f;
  --violet: #8b5cf6;
  --violet-deep: #6d28d9;

  --grad-brand: linear-gradient(135deg, var(--pink), var(--violet));

  --font-head: 'Poppins', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.28);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; }
p { line-height: 1.6; margin: 0 0 1em; color: var(--gray-700); }

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

.text-pink { color: var(--pink); }
.text-white { color: var(--white) !important; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pink);
  color: var(--white);
  padding: 10px 16px;
  z-index: 999;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  padding: 13px 26px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 0 0 rgba(255,45,120,0);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 45, 120, 0.35);
}
.btn--outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn--outline:hover { background: var(--black); color: var(--white); }
.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover { background: var(--black-soft); transform: translateY(-2px); }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 16, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 45, 120, 0.18);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 24px;
}

/* Logo (marca generada, sin archivo de imagen externo) */
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); }
.logo__mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex: none;
}
.logo__mark svg { width: 19px; height: 19px; }
.logo__word { display: flex; flex-direction: column; line-height: 1.1; }
.logo__word b { font-weight: 800; font-size: 19px; letter-spacing: .2px; color: var(--white); }
.logo__word b span { font-weight: 600; color: var(--gray-400); font-size: 13px; }
.logo__word small { font-weight: 600; font-size: 10px; letter-spacing: .5px; color: var(--pink); text-transform: uppercase; }
.logo--footer .logo__mark { width: 44px; height: 44px; }
.logo--footer .logo__mark svg { width: 22px; height: 22px; }
.logo--footer .logo__word b { font-size: 21px; }

.nav { display: flex; gap: 26px; }
.nav a {
  color: var(--gray-100);
  font-weight: 500;
  font-size: 14.5px;
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--pink); }
.nav a.is-active { color: var(--pink); font-weight: 700; }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header-icons { display: flex; align-items: center; gap: 10px; }
.header-icons a {
  position: relative;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--white);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.header-icons svg { width: 18px; height: 18px; }
.header-icons a:hover { background: var(--grad-brand); border-color: transparent; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  font-family: var(--font-head);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  box-shadow: 0 0 0 2px var(--black);
}
.cart-badge[hidden] { display: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 100px 0 70px;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  pointer-events: none;
}
.hero__glow--1 { width: 480px; height: 480px; background: var(--pink); top: -180px; right: -120px; }
.hero__glow--2 { width: 380px; height: 380px; background: var(--violet); bottom: -180px; left: -110px; opacity: 0.32; }
.hero__inner { position: relative; z-index: 2; max-width: 780px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 45, 120, 0.14);
  border: 1px solid rgba(255, 45, 120, 0.4);
  color: #ff6fa3;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow svg { width: 15px; height: 15px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero h1 span { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead {
  color: var(--gray-100);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero .btn--outline { border-color: rgba(255,255,255,0.35); color: var(--white); }
.hero .btn--outline:hover { background: var(--white); color: var(--black); }

.hero__badges { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.hero__badges li { display: flex; align-items: center; gap: 8px; color: var(--gray-100); font-size: 14px; font-weight: 500; }
.hero__badges svg { width: 16px; height: 16px; color: var(--pink); flex: none; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section--white { background: var(--white); }
.section--black { background: var(--black); }
.section--pink { background: var(--grad-brand); }

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pink-deep);
  background: rgba(184, 15, 79, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-tag--dark { color: var(--white); background: rgba(255, 45, 120, 0.2); }
.section--pink .section-tag--dark { background: rgba(0,0,0,0.18); color: var(--white); }

.section h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; max-width: 620px; }
.section-lead { font-size: 16.5px; max-width: 560px; margin-bottom: 44px; }
.section-lead--dark { color: var(--gray-100); }

/* ---------- Grid & Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(255, 45, 120, 0.4); }
.card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  color: var(--pink);
  border-radius: 12px;
  margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 14.5px; margin-bottom: 0; }

/* Category cards (dark section) */
.category-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.category-card:hover { transform: translateY(-4px); border-color: var(--pink); background: #2a232c; }
.category-card__icon {
  width: 48px; height: 48px;
  flex: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 45, 120, 0.14);
  color: var(--pink);
  border-radius: 10px;
}
.category-card__icon svg { width: 24px; height: 24px; }
.category-card__text { display: flex; flex-direction: column; gap: 3px; }
.category-card span { color: var(--white); font-weight: 700; font-size: 15px; }
.category-card small { color: var(--gray-400); font-size: 12.5px; }

/* ---------- Destacados / featured products ---------- */
.featured-grid { margin-top: 8px; }

/* ---------- Why / valores (pink section) ---------- */
.why-grid__text { max-width: 640px; }
.section--pink h2 { color: var(--white); }
.section--pink p { color: rgba(255,255,255,0.85); }
.why-list { margin-bottom: 30px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--white);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}
.why-list li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.why-list li:last-child { border-bottom: none; }
.section--pink .btn--dark { background: var(--black); }

/* Valores KALA */
.valores-grid .card { background: var(--white); }
.valores-grid .card__icon { background: var(--grad-brand); color: var(--white); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-list { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list svg { width: 20px; height: 20px; color: var(--pink); flex: none; margin-top: 2px; }
.contact-list span { color: var(--gray-100); font-size: 15px; line-height: 1.6; }
.contact-list small { color: var(--gray-400); }
.contact-list__link { display: flex; gap: 14px; align-items: flex-start; color: var(--gray-100); transition: color .2s ease; }
.contact-list__link:hover { color: var(--pink); }
.contact-list__link:hover span { color: var(--pink); }

.contact-form { background: var(--black-card); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 32px; }
.contact-form h3 { color: var(--white); font-size: 20px; margin-bottom: 20px; }
.contact-form label { display: block; color: var(--gray-100); font-size: 13.5px; font-weight: 600; margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
  display: block; width: 100%; margin-top: 8px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,45,120,0.18);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--gray-400); }

/* ---------- Footer ---------- */
.footer { background: var(--black-soft); padding: 56px 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer__top {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.25fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin: 0 0 16px;
}
.footer__tagline { color: var(--gray-400); font-size: 13.5px; margin: 14px 0 0; max-width: 260px; line-height: 1.6; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { color: var(--gray-400); font-size: 14px; }
.footer__nav a:hover { color: var(--pink); }
.footer__contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.footer__contact a { display: flex; align-items: center; gap: 10px; color: var(--gray-100); font-size: 13.5px; transition: color .2s ease; }
.footer__contact a:hover { color: var(--pink); }
.footer__contact svg { width: 20px; height: 20px; flex: none; }
.footer__social { display: flex; gap: 10px; margin-bottom: 12px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background .2s ease, border-color .2s ease;
}
.footer__social a:hover { background: var(--grad-brand); border-color: transparent; }
.footer__social svg { width: 16px; height: 16px; }
.footer__handle { color: var(--gray-400); font-size: 12px; margin: 0; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0;
}
.footer__bottom p { margin: 0; color: var(--gray-400); font-size: 12.5px; }
.footer__bottom p:last-child { text-align: right; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 90;
  animation: pulse 2.4s infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Responsive (global) ---------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,45,120,0.18);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .header-icons a { width: 34px; height: 34px; }
  .header-icons svg { width: 16px; height: 16px; }
  .grid--4 { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 60px; }
  .section { padding: 64px 0; }
  .footer__top { grid-template-columns: 1fr; text-align: left; }
  .footer__col--brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer__bottom p:last-child { text-align: left; }
}

@media (max-width: 420px) {
  .hero__cta .btn { width: 100%; }
}

/* ============ Catálogo ============ */

.catalog-hero { background: var(--black); padding: 60px 0 40px; }
.catalog-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-top: 14px; }
.catalog-hero p { color: var(--gray-100); max-width: 640px; font-size: 15.5px; }
.catalog-search { position: relative; max-width: 560px; margin-top: 26px; }
.catalog-search__icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--gray-400); display: flex; }
.catalog-search__icon svg { width: 18px; height: 18px; }
.catalog-search input {
  width: 100%;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  border-radius: 999px;
  padding: 15px 20px 15px 48px;
  font-size: 15px;
  font-family: var(--font-body);
}
.catalog-search input::placeholder { color: var(--gray-400); }
.catalog-search input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,45,120,0.2); }

.catalog { background: var(--off-white); padding: 36px 0 90px; }
.catalog__layout { display: grid; grid-template-columns: 268px 1fr; gap: 30px; align-items: start; }

.catalog__filtersToggle {
  display: none; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  border: none; border-radius: 999px;
  padding: 11px 20px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  cursor: pointer; margin-bottom: 16px;
}
.catalog__filtersToggle svg { width: 16px; height: 16px; }
.catalog__sidebarOverlay { display: none; }

.catalog__sidebar {
  position: sticky; top: 90px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 22px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}
.catalog__sidebarHead { display: none; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.catalog__closeSidebar { background: transparent; border: none; cursor: pointer; color: var(--black); display: flex; padding: 4px; }
.catalog__closeSidebar svg { width: 20px; height: 20px; }

.filter-group { margin-bottom: 26px; }
.filter-group:last-of-type { margin-bottom: 18px; }
.filter-group h4 {
  font-family: var(--font-head); font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.6px; color: var(--gray-700); margin: 0 0 12px;
}
.filter-list { display: flex; flex-direction: column; gap: 4px; }
.filter-pill {
  display: flex; align-items: center; gap: 9px; width: 100%;
  background: transparent; border: none; border-radius: var(--radius-sm);
  padding: 9px 10px; font-size: 14px; font-family: var(--font-body);
  color: var(--black); cursor: pointer; text-align: left;
  transition: background .15s ease, color .15s ease;
}
.filter-pill svg { width: 17px; height: 17px; flex: none; color: var(--gray-400); }
.filter-pill:hover { background: var(--off-white); }
.filter-pill.is-active { background: var(--black); color: var(--white); font-weight: 600; }
.filter-pill.is-active svg { color: var(--pink); }
.filter-pill__count { margin-left: auto; font-size: 12.5px; color: inherit; opacity: .6; }

.filter-checklist { display: flex; flex-direction: column; gap: 10px; max-height: 240px; overflow-y: auto; padding-right: 4px; }
.filter-check { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--black); cursor: pointer; }
.filter-check svg { width: 16px; height: 16px; color: var(--gray-400); flex: none; }
.filter-check input { accent-color: var(--pink-deep); width: 16px; height: 16px; flex: none; }
.filter-check small { color: var(--gray-400); margin-left: 2px; }

.price-range { display: flex; align-items: center; gap: 10px; }
.price-range input {
  width: 100%; border: 1px solid var(--gray-100); border-radius: var(--radius-sm);
  padding: 10px 12px; font-size: 14px; font-family: var(--font-body); background: var(--off-white);
}
.price-range input:focus { outline: none; border-color: var(--pink-dark); }
.price-range span { color: var(--gray-400); }

.catalog__toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.catalog__count { color: var(--gray-700); font-size: 14.5px; margin: 0; }
.catalog__sort { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-700); font-weight: 500; }
.catalog__sort select {
  border: 1px solid var(--gray-100); background: var(--white); border-radius: var(--radius-sm);
  padding: 9px 12px; font-family: var(--font-body); font-size: 14px; color: var(--black); cursor: pointer;
}
.catalog__sort select:focus { outline: none; border-color: var(--pink-dark); }

/* ---- Product grid / cards ---- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(255,45,120,0.4); }

.product-card__badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 700; padding: 4px 9px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .3px;
}
.badge svg { width: 11px; height: 11px; }
.badge--star { background: rgba(255,45,120,0.14); color: var(--pink-deep); }
.badge--oferta { background: var(--black); color: var(--pink); }

.product-card__foto {
  display: flex; align-items: center; justify-content: center;
  height: 92px; margin-bottom: 12px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255,45,120,0.08), rgba(139,92,246,0.08));
  color: var(--pink-deep);
}
.product-card__foto svg { width: 42px; height: 42px; }

.product-card__seccion { font-size: 12px; font-weight: 700; color: var(--pink-deep); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 6px; }
.product-card__nombre { font-size: 14.5px; font-weight: 600; line-height: 1.35; margin: 0 0 14px; color: var(--black); }
.product-card__precioBlock { margin-top: auto; margin-bottom: 14px; }
.product-card__precioBox { display: flex; flex-direction: column; gap: 2px; }
.product-card__precio { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--black); }
.product-card__precio--oferta { color: var(--pink-deep); }
.product-card__precioAnterior { font-size: 12.5px; color: var(--gray-400); text-decoration: line-through; }
.product-card__cuotas { margin: 2px 0 10px; font-size: 12.5px; color: var(--gray-700); }
.product-card__cuotas strong { color: var(--black); }
.product-card__transferencia {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 10px; border-radius: var(--radius-sm); background: var(--black);
}
.product-card__transferenciaTag { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: var(--pink); }
.product-card__transferenciaPrecio { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--white); }

.product-card__options { display: flex; gap: 8px; margin: 4px 0 12px; }
.product-card__options select {
  flex: 1; min-width: 0;
  border: 1px solid var(--gray-100); border-radius: var(--radius-sm);
  padding: 8px 8px; font-size: 12.5px; font-family: var(--font-body);
  background: var(--off-white); color: var(--black);
}
.product-card__options select:focus { outline: none; border-color: var(--pink-dark); }

.product-card__footer { display: flex; align-items: stretch; justify-content: stretch; gap: 10px; }
.product-card .btn--sm svg { width: 15px; height: 15px; }
.product-card .btn--added { background: var(--black); }

.catalog__empty { text-align: center; padding: 60px 20px; color: var(--gray-700); font-size: 15px; }
.link-btn { background: none; border: none; color: var(--pink-deep); font-weight: 700; cursor: pointer; text-decoration: underline; padding: 0; font-family: inherit; font-size: inherit; }
.catalog__loadMore { margin-top: 30px; max-width: 320px; margin-left: auto; margin-right: auto; }

@media (max-width: 980px) {
  .catalog__layout { grid-template-columns: 1fr; }
  .catalog__filtersToggle { display: inline-flex; }
  .catalog__sidebar {
    position: fixed; top: 0; right: -100%; height: 100%;
    width: min(340px, 88vw); max-height: none; border-radius: 0;
    z-index: 210; transition: right .25s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,0.25);
  }
  .catalog__sidebar.is-open { right: 0; }
  .catalog__sidebarHead { display: flex; }
  .catalog__sidebarOverlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; }
  .catalog__sidebarOverlay.is-open { display: block; }
}

@media (max-width: 560px) {
  .catalog-hero { padding: 40px 0 30px; }
  .catalog__toolbar { flex-direction: column; align-items: flex-start; }
  .catalog__sort { width: 100%; justify-content: space-between; }
  .catalog__sort select { flex: 1; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .product-card { padding: 14px; }
  .product-card__footer { flex-direction: column; align-items: stretch; gap: 10px; }
  .product-card .btn--sm { width: 100%; }
}

/* ============ Carrito ============ */
.cart { background: var(--off-white); padding: 50px 0 90px; min-height: 55vh; }
.cart-hero { background: var(--black); padding: 50px 0 34px; }
.cart-hero h1 { color: var(--white); font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; margin-top: 14px; }
.cart-hero p { color: var(--gray-100); font-size: 15px; margin: 0; }

.cart__layout { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: start; margin-top: 34px; }

.cart-item {
  display: flex; gap: 14px;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 16px; margin-bottom: 14px;
}
.cart-item__foto {
  width: 64px; height: 64px; flex: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255,45,120,0.08), rgba(139,92,246,0.08));
  color: var(--pink-deep);
  display: flex; align-items: center; justify-content: center;
}
.cart-item__foto svg { width: 30px; height: 30px; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__seccion { font-size: 11px; font-weight: 700; color: var(--pink-deep); text-transform: uppercase; letter-spacing: .3px; }
.cart-item__nombre { font-weight: 700; font-size: 14.5px; margin: 2px 0 4px; }
.cart-item__meta { font-size: 12.5px; color: var(--gray-700); margin: 0 0 12px; }
.cart-item__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }

.qty-stepper { display: flex; align-items: center; border: 1px solid var(--gray-100); border-radius: 999px; overflow: hidden; }
.qty-stepper button { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: var(--off-white); border: none; cursor: pointer; color: var(--black); }
.qty-stepper button:hover { background: var(--gray-100); }
.qty-stepper svg { width: 14px; height: 14px; }
.qty-stepper span { width: 32px; text-align: center; font-weight: 700; font-size: 13.5px; }

.cart-item__precio { font-family: var(--font-head); font-weight: 800; font-size: 16px; white-space: nowrap; }
.cart-item__remove { background: none; border: none; color: var(--gray-400); cursor: pointer; display: flex; padding: 4px; flex: none; }
.cart-item__remove:hover { color: var(--pink-deep); }
.cart-item__remove svg { width: 18px; height: 18px; }

.cart-summary {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 24px; position: sticky; top: 90px;
}
.cart-summary h3 { font-size: 17px; margin-bottom: 16px; }
.cart-summary__row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--gray-700); padding: 9px 0; border-bottom: 1px solid var(--gray-100); }
.cart-summary__row svg { width: 15px; height: 15px; flex: none; vertical-align: -3px; margin-right: 4px; }
.cart-summary__row--total { font-weight: 800; color: var(--black); font-size: 18px; border-bottom: none; padding-top: 16px; }
.cart-summary__note { font-size: 12px; color: var(--gray-400); margin: 10px 0 20px; line-height: 1.5; }

.cart-empty { text-align: center; padding: 80px 20px; color: var(--gray-700); }
.cart-empty svg { width: 56px; height: 56px; color: var(--gray-100); margin-bottom: 18px; }
.cart-empty h2 { font-size: 22px; margin-bottom: 8px; }

@media (max-width: 900px) {
  .cart__layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 480px) {
  .cart-item { flex-wrap: wrap; }
  .cart-item__row { width: 100%; }
}
