*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:       #F472B6;
  --pink-deep:  #EC4899;
  --pink-pale:  #FDF2F8;
  --pink-soft:  #FCE7F3;
  --pink-mid:   #F9A8D4;
  --gold:       #C9A84C;
  --gold-warm:  #E2C46A;
  --white:      #FFFFFF;
  --ink:        #1A1A1A;
  --ink-mid:    #3D3D3D;
  --ink-light:  #6B6B6B;
  --border:     #F0E0EB;
  --border-mid: #E8C9D8;
  --font-d: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --font-b: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --r: 4px; --r-card: 10px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--ink); background: var(--white); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── Announce ── */
.announce { background: var(--pink-deep); color: #fff; text-align: center; font-size: 13px; letter-spacing: .04em; padding: 9px 16px; font-weight: 500; }
.announce a { color: #fff; text-decoration: none; font-weight: 700; }

/* ── Header ── */
.sticky-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 24px; height: 64px; gap: 16px; }
.header-left { display: flex; gap: 6px; align-items: center; }
.header-left a { color: var(--ink-mid); text-decoration: none; font-size: 13px; font-weight: 500; padding: 6px 10px; border-radius: var(--r); transition: color .2s, background .2s; }
.header-left a:hover { color: var(--pink-deep); background: var(--pink-soft); }
.site-logo { text-align: center; text-decoration: none; display: flex; align-items: center; justify-content: center; }
.site-logo svg { height: 48px; width: auto; }
.logo-header-img { height: 56px; width: auto; max-width: 200px; object-fit: contain; }
@media (max-width: 768px) { .logo-header-img { height: 48px; max-width: 150px; } }
.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.header-phone { font-size: 12px; color: var(--ink-light); text-decoration: none; }
.header-phone:hover { color: var(--pink-deep); }
.btn-wa-header { display: flex; align-items: center; gap: 7px; background: #25D366; color: #fff; text-decoration: none; font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 24px; transition: transform .15s, box-shadow .15s; }
.btn-wa-header:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,.35); }
.btn-wa-header svg { width: 16px; height: 16px; }

/* ── Cat Nav (index) ── */
.cat-nav { border-bottom: 1px solid var(--border); background: var(--white); }
.cat-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; overflow-x: auto; scrollbar-width: none; }
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-pill { flex-shrink: 0; padding: 12px 18px; font-size: 13px; font-weight: 500; color: var(--ink-mid); cursor: pointer; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; white-space: nowrap; background: none; border-top: none; border-left: none; border-right: none; font-family: var(--font-b); }
.cat-pill:hover { color: var(--pink-deep); }
.cat-pill.active { color: var(--pink-deep); border-bottom-color: var(--pink-deep); }

/* ── Hero (index) ── */
.hero { background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 40%, #FDE8F4 100%); padding: 72px 24px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(244,114,182,.15) 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 80% 40%, rgba(201,168,76,.08) 0%, transparent 70%); pointer-events: none; }
.hero-eyebrow { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--pink-deep); font-weight: 600; margin-bottom: 16px; }
.hero-logo-wrap { display: flex; justify-content: center; margin-bottom: 22px; position: relative; z-index: 1; }
.hero-logo { width: 100%; max-width: 600px; height: auto; border-radius: 16px; box-shadow: 0 24px 60px rgba(236,72,153,.20); }
@media (max-width: 520px) { .hero-logo { max-width: 100%; border-radius: 12px; } }
.hero-sub { font-family: var(--font-d); font-size: clamp(14px,2vw,18px); color: var(--ink-light); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--pink-deep); color: #fff; text-decoration: none; padding: 14px 28px; border-radius: 32px; font-size: 14px; font-weight: 600; letter-spacing: .04em; transition: transform .15s, box-shadow .2s; display: inline-block; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(236,72,153,.4); }
.btn-outline { background: transparent; color: var(--ink); text-decoration: none; padding: 14px 28px; border-radius: 32px; font-size: 14px; font-weight: 600; letter-spacing: .04em; border: 1.5px solid var(--border-mid); transition: border-color .2s, color .2s; display: inline-block; }
.btn-outline:hover { border-color: var(--pink-deep); color: var(--pink-deep); }

/* ── Colección Hero ── */
.coleccion-hero { padding: 56px 24px 48px; text-align: center; position: relative; overflow: hidden; }
.coleccion-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(244,114,182,.12) 0%, transparent 70%); pointer-events: none; }
.coleccion-hero-eyebrow { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--pink-deep); font-weight: 600; margin-bottom: 10px; }
.coleccion-hero h1 { font-family: var(--font-d); font-size: clamp(28px,5vw,52px); font-weight: 400; letter-spacing: .04em; color: var(--ink); margin-bottom: 12px; }
.coleccion-hero-desc { font-size: 16px; color: var(--ink-light); margin-bottom: 0; }

/* ── Breadcrumb ── */
.breadcrumb { max-width: 1280px; margin: 0 auto; padding: 16px 24px 0; display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--ink-light); flex-wrap: wrap; }
.breadcrumb a { color: var(--ink-light); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--pink-deep); }
.breadcrumb-sep { opacity: .4; }
.breadcrumb-current { color: var(--ink); font-weight: 500; }

/* ── Marquee ── */
.marquee-wrap { background: var(--ink); padding: 12px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 22s linear infinite; width: max-content; }
.marquee-track span { color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; padding: 0 32px; white-space: nowrap; }
.marquee-track span.accent { color: var(--gold-warm); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Products grid ── */
.products-section { max-width: 1280px; margin: 0 auto; padding: 48px 24px 80px; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.section-title { font-family: var(--font-d); font-size: clamp(22px,3vw,32px); font-weight: 400; letter-spacing: .04em; }
.section-count { font-size: 13px; color: var(--ink-light); }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width:1100px) { .products-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:720px)  { .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; } }
@media (max-width:420px)  { .products-grid { grid-template-columns: 1fr; } }

/* ── Product Card ── */
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(236,72,153,.12); border-color: var(--pink-mid); }
.product-card.hidden { display: none; }
.product-img { aspect-ratio: 3/4; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; text-decoration: none; background: var(--pink-pale); }
.product-img-art { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.product-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.badge-new  { position: absolute; top: 10px; left: 10px; background: var(--pink-deep); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
.badge-sale { position: absolute; top: 10px; left: 10px; background: var(--ink); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
.product-wishlist { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; background: rgba(255,255,255,.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; opacity: 0; transition: opacity .2s; }
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist svg { width: 16px; height: 16px; stroke: var(--pink-deep); }
.product-info { padding: 14px 14px 16px; }
.product-category { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 4px; }
.product-name-link { text-decoration: none; color: inherit; }
.product-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.3; transition: color .2s; }
.product-name-link:hover .product-name { color: var(--pink-deep); }
.product-desc { font-size: 12px; color: var(--ink-light); margin-bottom: 10px; line-height: 1.4; }
.product-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.price-current { font-size: 16px; font-weight: 700; color: var(--ink); }
.price-old { font-size: 13px; color: var(--ink-light); text-decoration: line-through; }
.price-badge { font-size: 10px; color: var(--pink-deep); font-weight: 700; }
.btn-comprar { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; background: var(--pink-deep); color: #fff; text-decoration: none; font-size: 13px; font-weight: 600; padding: 10px 0; border-radius: var(--r); border: none; cursor: pointer; font-family: var(--font-b); transition: background .15s, transform .12s; letter-spacing: .03em; }
.btn-comprar:hover { background: #DB2777; transform: scale(.99); }
.btn-comprar svg { width: 15px; height: 15px; }

/* ── Colores de fondo ── */
.c1 { background: linear-gradient(135deg,#FCE7F3,#F9A8D4); }
.c2 { background: linear-gradient(135deg,#FDF2F8,#F472B6); }
.c3 { background: linear-gradient(135deg,#FECDD3,#FB7185); }
.c4 { background: linear-gradient(135deg,#FEF3C7,#FDE68A); }
.c5 { background: linear-gradient(135deg,#E0F2FE,#93C5FD); }
.c6 { background: linear-gradient(135deg,#F0FDF4,#86EFAC); }
.c7 { background: linear-gradient(135deg,#FAF5FF,#C4B5FD); }
.c8 { background: linear-gradient(135deg,#FFF7ED,#FED7AA); }

/* ── Stats ── */
.stats-strip { background: var(--pink-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 48px 24px; }
.stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
@media (max-width:640px) { .stats-inner { grid-template-columns: repeat(2,1fr); } }
.stat-num { font-family: var(--font-d); font-size: 42px; font-weight: 400; color: var(--pink-deep); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-light); }

/* ── Categories section ── */
.cats-section { max-width: 1280px; margin: 0 auto; padding: 64px 24px; }
.cats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width:900px) { .cats-grid { grid-template-columns: repeat(2,1fr); } }
.cat-card { aspect-ratio: 3/4; border-radius: var(--r-card); overflow: hidden; position: relative; cursor: pointer; transition: transform .22s cubic-bezier(.34,1.56,.64,1); text-decoration: none; display: block; }
.cat-card:hover { transform: scale(1.02); }
.cat-card-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,.75) 0%, rgba(26,26,26,.1) 55%, transparent 100%); }
.cat-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px; color: #fff; }
.cat-card-name { font-family: var(--font-d); font-size: 18px; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 3px; }
.cat-card-count { font-size: 11px; letter-spacing: .12em; opacity: .8; }

/* ── Info strip ── */
.info-strip { background: var(--ink); padding: 40px 24px; }
.info-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
@media (max-width:640px) { .info-inner { grid-template-columns: 1fr; gap: 24px; } }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-icon { width: 40px; height: 40px; background: rgba(244,114,182,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 20px; height: 20px; stroke: var(--pink-mid); fill: none; }
.info-label { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.info-text { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ── Footer ── */
footer { background: #111; padding: 56px 24px 32px; color: rgba(255,255,255,.6); }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width:768px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand { font-family: var(--font-d); font-size: 28px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 20px; line-height: 1.6; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s, border-color .2s; }
.social-btn:hover { background: var(--pink-deep); border-color: var(--pink-deep); }
.social-btn svg { width: 16px; height: 16px; }
.footer-col-title { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--pink-mid); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 13px; line-height: 1.5; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-contact-item a:hover { color: var(--pink-mid); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,.3); }
.nova-credit a { color: rgba(244,114,182,.6); text-decoration: none; }

/* ── WhatsApp float ── */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,.45); z-index: 200; animation: wa-pulse 2.8s ease-in-out infinite; }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* ── Producto Detail ── */
.producto-wrap { max-width: 1280px; margin: 0 auto; padding: 32px 24px 80px; }
.producto-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 24px; }
@media (max-width:768px) { .producto-layout { grid-template-columns: 1fr; gap: 32px; } }

.producto-img-grande { aspect-ratio: 3/4; border-radius: 14px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.producto-img-grande .product-img-art { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.producto-img-grande .product-img-art svg { width: 55% !important; opacity: .3 !important; }
.badge-producto { position: absolute; top: 16px; left: 16px; }

.producto-info-panel { position: sticky; top: 80px; }
.producto-cat-label { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--pink-deep); font-weight: 600; margin-bottom: 10px; text-decoration: none; display: inline-block; transition: opacity .2s; }
.producto-cat-label:hover { opacity: .7; }
.producto-nombre { font-family: var(--font-d); font-size: clamp(24px,3.5vw,38px); font-weight: 400; letter-spacing: .02em; color: var(--ink); line-height: 1.2; margin-bottom: 8px; }
.producto-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; font-size: 13px; color: var(--ink-light); }
.stars { color: #F59E0B; letter-spacing: 2px; font-size: 14px; }
.producto-precio-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.producto-precio { font-size: 28px; font-weight: 700; color: var(--ink); }
.producto-precio-old { font-size: 18px; color: var(--ink-light); text-decoration: line-through; }
.producto-descuento { background: var(--pink-soft); color: var(--pink-deep); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }

.producto-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.producto-desc-texto { font-size: 15px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 24px; }

.selector-label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 10px; }
.talla-selector { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.talla-btn { min-width: 44px; height: 44px; padding: 0 12px; border: 1.5px solid var(--border-mid); border-radius: var(--r); background: var(--white); font-size: 13px; font-weight: 600; color: var(--ink-mid); cursor: pointer; transition: border-color .15s, background .15s, color .15s; font-family: var(--font-b); }
.talla-btn:hover { border-color: var(--pink-deep); color: var(--pink-deep); }
.talla-btn.selected { border-color: var(--pink-deep); background: var(--pink-deep); color: #fff; }

.color-selector { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.color-btn { padding: 6px 14px; border: 1.5px solid var(--border-mid); border-radius: 20px; background: var(--white); font-size: 12px; font-weight: 500; color: var(--ink-mid); cursor: pointer; transition: border-color .15s, color .15s; font-family: var(--font-b); }
.color-btn:hover { border-color: var(--pink-deep); color: var(--pink-deep); }
.color-btn.selected { border-color: var(--pink-deep); color: var(--pink-deep); background: var(--pink-soft); }

.btn-wa-grande { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: #25D366; color: #fff; text-decoration: none; font-size: 16px; font-weight: 700; padding: 16px 24px; border-radius: 32px; transition: transform .15s, box-shadow .2s; letter-spacing: .02em; }
.btn-wa-grande:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.4); }
.btn-wa-grande svg { width: 22px; height: 22px; }
.btn-wa-hint { text-align: center; font-size: 12px; color: var(--ink-light); margin-top: 10px; }

/* ── Related products ── */
.related-section { max-width: 1280px; margin: 0 auto; padding: 0 24px 80px; border-top: 1px solid var(--border); padding-top: 56px; margin-top: 0; }

/* ── Reveal animations ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.34,1.4,.64,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Responsive ── */
@media (max-width:768px) {
  .header-left { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
  .header-right .header-phone { display: none; }
  .producto-info-panel { position: static; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .marquee-track, .wa-float { animation: none; transition: none; opacity: 1; transform: none; }
}

/* ── 404 / empty state ── */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state p { color: var(--ink-light); font-size: 16px; margin-bottom: 24px; }

/* ══════════ CARRITO ══════════ */
.btn-cart { position: relative; background: none; border: none; cursor: pointer; padding: 6px; display: flex; align-items: center; color: var(--ink-mid); transition: color .2s; }
.btn-cart:hover { color: var(--pink-deep); }
.btn-cart svg { width: 24px; height: 24px; }
.cart-badge { position: absolute; top: -3px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px; background: var(--pink-deep); color: #fff; font-size: 11px; font-weight: 700; border-radius: 10px; display: none; align-items: center; justify-content: center; line-height: 1; }

.cart-overlay { position: fixed; inset: 0; background: rgba(26,26,26,.5); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 300; }
.cart-overlay.show { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 90vw; background: #fff; z-index: 301; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); box-shadow: -8px 0 40px rgba(0,0,0,.12); }
.cart-drawer.show { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border); }
.cart-head h3 { font-family: var(--font-d); font-size: 20px; font-weight: 400; }
.cart-close { background: none; border: none; font-size: 28px; line-height: 1; color: var(--ink-light); cursor: pointer; transition: color .2s; }
.cart-close:hover { color: var(--pink-deep); }
.cart-body { flex: 1; overflow-y: auto; padding: 8px 22px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty svg { width: 54px; height: 54px; margin-bottom: 18px; }
.cart-empty p { color: var(--ink-light); margin-bottom: 22px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { position: relative; width: 76px; height: 96px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; text-decoration: none; }
.cart-item-img svg { width: 60%; opacity: .3; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 3px; line-height: 1.3; }
.cart-item-meta { font-size: 12px; color: var(--ink-light); margin-bottom: 4px; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--pink-deep); margin-bottom: 8px; }
.cart-qty { display: flex; align-items: center; gap: 8px; }
.cart-qty button { width: 28px; height: 28px; border: 1px solid var(--border-mid); background: #fff; border-radius: 6px; font-size: 15px; cursor: pointer; color: var(--ink-mid); transition: border-color .15s, color .15s; display: flex; align-items: center; justify-content: center; }
.cart-qty button:hover { border-color: var(--pink-deep); color: var(--pink-deep); }
.cart-qty span { min-width: 22px; text-align: center; font-weight: 600; font-size: 14px; }
.cart-item-del { width: auto !important; padding: 0 8px; font-size: 12px !important; margin-left: auto; color: var(--ink-light) !important; }
.cart-item-del:hover { color: #DC2626 !important; border-color: #DC2626 !important; }
.cart-foot { border-top: 1px solid var(--border); padding: 18px 22px 22px; }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.cart-subtotal span { font-size: 14px; color: var(--ink-mid); }
.cart-subtotal strong { font-size: 22px; font-weight: 700; }
.cart-note { font-size: 12px; color: var(--ink-light); margin-bottom: 14px; }
.btn-checkout { display: block; width: 100%; background: var(--pink-deep); color: #fff; text-align: center; text-decoration: none; font-size: 15px; font-weight: 700; padding: 15px 0; border-radius: 10px; transition: background .15s, transform .12s; }
.btn-checkout:hover { background: #DB2777; transform: translateY(-1px); }
.btn-seguir { display: block; width: 100%; background: none; border: none; color: var(--ink-mid); font-size: 13px; font-weight: 600; padding: 12px 0 2px; cursor: pointer; font-family: var(--font-b); }
.btn-seguir:hover { color: var(--pink-deep); }

/* ── Toast ── */
.nb-toast { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 30px; font-size: 14px; font-weight: 500; z-index: 400; opacity: 0; visibility: hidden; transition: opacity .3s, transform .3s; box-shadow: 0 8px 30px rgba(0,0,0,.2); max-width: 90vw; text-align: center; }
.nb-toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ── Botón agregar al carrito (producto) ── */
.btn-add-cart { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: var(--pink-deep); color: #fff; border: none; font-size: 16px; font-weight: 700; padding: 16px 24px; border-radius: 32px; cursor: pointer; font-family: var(--font-b); transition: transform .15s, box-shadow .2s; letter-spacing: .02em; margin-bottom: 12px; }
.btn-add-cart:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(236,72,153,.4); }
.btn-add-cart svg { width: 20px; height: 20px; }
.producto-stock { font-size: 13px; margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.producto-stock.ok { color: #16A34A; }
.producto-stock.low { color: #D97706; }
.producto-stock.out { color: #DC2626; }
.stock-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; display: inline-block; }
.qty-selector { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.qty-selector .selector-label { margin-bottom: 0; }
.qty-control { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border-mid); border-radius: 8px; overflow: hidden; }
.qty-control button { width: 40px; height: 40px; border: none; background: #fff; font-size: 18px; cursor: pointer; color: var(--ink-mid); transition: background .15s; }
.qty-control button:hover { background: var(--pink-soft); color: var(--pink-deep); }
.qty-control span { min-width: 40px; text-align: center; font-weight: 600; }

/* ══════════ CHECKOUT ══════════ */
.checkout-wrap { max-width: 1100px; margin: 0 auto; padding: 32px 24px 80px; }
.checkout-title { font-family: var(--font-d); font-size: clamp(26px,4vw,38px); font-weight: 400; margin-bottom: 6px; }
.checkout-sub { color: var(--ink-light); margin-bottom: 32px; font-size: 15px; }
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .checkout-grid { grid-template-columns: 1fr; gap: 28px; } }
.checkout-form-section { margin-bottom: 28px; }
.checkout-form-section h3 { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-mid); margin-bottom: 6px; }
.field label .req { color: var(--pink-deep); }
.field input, .field textarea, .field select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border-mid); border-radius: 8px; font-size: 14px; font-family: var(--font-b); color: var(--ink); transition: border-color .15s; background: #fff; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--pink-deep); }
.field textarea { resize: vertical; min-height: 70px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-card { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border: 1.5px solid var(--border-mid); border-radius: 10px; cursor: pointer; transition: border-color .15s, background .15s; }
.radio-card:hover { border-color: var(--pink-mid); }
.radio-card.sel { border-color: var(--pink-deep); background: var(--pink-pale); }
.radio-card input { margin-top: 3px; accent-color: var(--pink-deep); width: 16px; height: 16px; }
.radio-card-body strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.radio-card-body span { font-size: 12px; color: var(--ink-light); }
.checkout-summary { background: var(--pink-pale); border: 1px solid var(--border); border-radius: 14px; padding: 24px; position: sticky; top: 80px; }
.checkout-summary h3 { font-family: var(--font-d); font-size: 20px; font-weight: 400; margin-bottom: 18px; }
.sum-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.sum-item-img { position: relative; width: 52px; height: 66px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.sum-item-img svg { width: 62%; opacity: .3; }
.sum-item-info { flex: 1; min-width: 0; }
.sum-item-name { font-size: 13px; font-weight: 600; line-height: 1.3; }
.sum-item-meta { font-size: 11px; color: var(--ink-light); }
.sum-item-price { font-size: 13px; font-weight: 700; margin-top: 3px; }
.sum-totals { margin-top: 16px; }
.sum-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; color: var(--ink-mid); }
.sum-row.total { font-size: 20px; font-weight: 700; color: var(--ink); border-top: 1px solid var(--border-mid); padding-top: 12px; margin-top: 6px; }
.btn-confirmar { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: var(--pink-deep); color: #fff; border: none; font-size: 16px; font-weight: 700; padding: 16px; border-radius: 10px; cursor: pointer; font-family: var(--font-b); transition: background .15s, transform .12s; margin-top: 18px; }
.btn-confirmar:hover:not(:disabled) { background: #DB2777; transform: translateY(-1px); }
.btn-confirmar:disabled { opacity: .6; cursor: not-allowed; }
.checkout-secure { text-align: center; font-size: 12px; color: var(--ink-light); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.checkout-secure svg { width: 14px; height: 14px; }
.transfer-datos { background: #fff; border: 1px dashed var(--border-mid); border-radius: 8px; padding: 14px; font-size: 13px; color: var(--ink-mid); white-space: pre-line; margin-top: 6px; }

/* ── Confirmación de pedido ── */
.order-done { max-width: 620px; margin: 0 auto; padding: 60px 24px 100px; text-align: center; }
.order-check { width: 84px; height: 84px; border-radius: 50%; background: var(--pink-soft); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.order-check svg { width: 44px; height: 44px; stroke: var(--pink-deep); }
.order-done h1 { font-family: var(--font-d); font-size: 34px; font-weight: 400; margin-bottom: 10px; }
.order-done p { color: var(--ink-mid); margin-bottom: 8px; }
.order-code { display: inline-block; background: var(--ink); color: #fff; font-weight: 700; letter-spacing: .05em; padding: 8px 18px; border-radius: 8px; margin: 16px 0 24px; font-size: 16px; }
.order-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
