﻿/* ═══════════════════════════════════════
   NUEVA MODA — estyles.css
   Paleta: Negro #111, Dorado #C8A84B, Rosa #E91E8C
═══════════════════════════════════════ */

:root {
  --black:   #111111;
  --black2:  #1a1a1a;
  --gold:    #C8A84B;
  --gold2:   #e8c96a;
  --pink:    #E91E8C;
  --pink2:   #f03da0;
  --white:   #ffffff;
  --gray:    #f5f5f5;
  --gray2:   #888888;
  --text:    #333333;
  --radius:  8px;
  --shadow:  0 4px 20px rgba(0,0,0,.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── TOPBAR ── */
.topbar {
  background: var(--black);
  color: var(--white);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 20px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar span { display: flex; align-items: center; gap: 6px; }
.topbar i { color: var(--pink); }

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 40px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(236, 234, 234, 0.678);
}

/* Logo */
.logo-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border: 2px solid var(--gold);
  border-radius: 70%;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  /* SIN overflow:hidden para que el texto no se corte */
}
.logo-circle.small { width: 54px; height: 54px; }
.logo-icon { color: var(--gold); font-size: 1.6rem; }
.logo-img {
  width: 800%;
  height: 90%;
  object-fit: contain;
  border-radius: 50%;
}
.logo-circle.small .logo-icon { font-size: 1.2rem; }

.logo-circle.small img {
    width: 140%;    /* Ampliamos la imagen para que el fondo negro quede fuera */
    height: 140%;
    object-fit: cover;
    margin-top: -20%; /* Ajustamos para centrar el círculo interno */
    margin-left: -20%;
}

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

.logo-text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.logo-tagline {
  font-size: .58rem;
  letter-spacing: .16em;
  color: var(--black);
  font-weight: 700;
  white-space: nowrap;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--black);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* Nav acciones */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  overflow: hidden;
}
.search-box input {
  border: none;
  outline: none;
  padding: 7px 12px;
  font-size: .8rem;
  font-family: inherit;
  width: 180px;
}
.search-box button {
  border: none;
  background: var(--black);
  color: var(--white);
  padding: 7px 12px;
  cursor: pointer;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--black);
  position: relative;
  padding: 4px;
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  font-size: .65rem;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--black);
  margin-left: auto;
}

/* ── HERO ── */
.hero {
  background: var(--black);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 340px;
  padding: 0 0 0 80px;
  position: relative;
  overflow: hidden;
}

/* Partículas doradas */
.hero-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-bg-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .25;
  animation: float 6s infinite ease-in-out;
}
.hero-bg-particles span:nth-child(1)  { left:5%;  top:20%; animation-delay:0s;   width:4px;  height:4px; }
.hero-bg-particles span:nth-child(2)  { left:8%;  top:60%; animation-delay:1s;   width:8px;  height:8px; opacity:.15; }
.hero-bg-particles span:nth-child(3)  { left:12%; top:80%; animation-delay:2s;   width:3px;  height:3px; }
.hero-bg-particles span:nth-child(4)  { left:18%; top:40%; animation-delay:0.5s; width:6px;  height:6px; }
.hero-bg-particles span:nth-child(5)  { left:25%; top:70%; animation-delay:1.5s; width:5px;  height:5px; opacity:.2; }
.hero-bg-particles span:nth-child(6)  { left:3%;  top:45%; animation-delay:3s;   width:4px;  height:4px; }
.hero-bg-particles span:nth-child(7)  { left:20%; top:15%; animation-delay:2.5s; width:7px;  height:7px; opacity:.1; }
.hero-bg-particles span:nth-child(8)  { left:10%; top:90%; animation-delay:4s;   width:3px;  height:3px; }
.hero-bg-particles span:nth-child(9)  { left:30%; top:85%; animation-delay:1.2s; width:5px;  height:5px; }
.hero-bg-particles span:nth-child(10) { left:2%;  top:30%; animation-delay:3.5s; width:6px;  height:6px; opacity:.18; }

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); opacity:.25; }
  50%      { transform: translateY(-18px) scale(1.2); opacity:.5; }
}

/* Contenido hero izquierdo */
.hero-content {
  color: var(--white);
  max-width: 420px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0;
}
@keyframes fadeInLeft {
  from { opacity:0; transform:translateX(-30px); }
  to   { opacity:1; transform:translateX(0); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-subtitle {
  font-size: .85rem;
  letter-spacing: .2em;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.hero-divider {
  width: 50px;
  height: 3px;
  background: var(--pink);
  margin-bottom: 18px;
  border-radius: 2px;
}
.hero-desc {
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 30px;
}

/* ── LADO DERECHO DEL HERO ── */
.hero-right {
  position: relative;
  flex-shrink: 0;
  width: 40%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible
}

/* Arco SVG fuscia que abraza la modelo por la izquierda */
.hero-arc-svg {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 110%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

/* Imagen de la modelo — llega al borde derecho y al fondo */
.hero-model {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 320px;
  width: 75%;
  object-fit: cover;
  object-position: top center;
  display: block;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
  mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

/* Flores — esquina superior derecha */
.hero-flowers {
  position: absolute;
  right: 0;
  top: 0;
  width: 160px;
  height: 260px;
  object-fit: cover;
  z-index: 4;
  opacity: .9;
}

/* ── Botones ── */
.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  border: 2px solid var(--pink);
  cursor: pointer;
  transition: background .25s, color .25s, transform .15s;
}
.btn-primary:hover {
  background: var(--pink2);
  transform: translateY(-2px);
}
.btn-primary.small { padding: 10px 20px; font-size: .8rem; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--black);
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background .25s, color .25s;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ── CATEGORÍAS ── */
.categories {
  background: var(--white);
  padding: 30px 40px;
  border-bottom: 1px solid #eee;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 10px;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.cat-card:hover {
  border-color: var(--pink);
  box-shadow: 0 4px 16px rgba(233,30,140,.15);
  transform: translateY(-4px);
}
.cat-card i.cat-icon,
.cat-card .cat-svg {
  color: var(--pink);
  font-size: 2rem;
  width: 40px;
  height: 40px;
  stroke: var(--pink);
}
.cat-card span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--black);
}

/* ── COLECCIÓN DESTACADA ── */
.featured {
  padding: 60px 40px;
  max-width: 1300px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 40px; }
.section-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}
.section-lines span {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.section-lines h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--black);
}
.section-sub { font-size: .9rem; color: var(--gray2); }

/* Productos grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transform: translateY(-5px);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center:
  transition: transform .4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  font-size: .9rem;
  color: #bbb;
  transition: color .2s;
}
.wish-btn:hover, .wish-btn.active { color: var(--pink); }

.product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}
.product-price {
  color: var(--pink);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Tallas */
.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.size-tag {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 3px 9px;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.size-tag:hover, .size-tag.selected {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-ver {
  margin-top: auto;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 11px 16px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
}
.btn-ver:hover { background: var(--pink); }

.load-more-wrap { text-align: center; }

/* ── BENEFICIOS ── */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 30px 24px;
  border-right: 1px solid #eee;
}
.benefit-item:last-child { border-right: none; }
.benefit-icon {
  font-size: 2rem;
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-item strong {
  display: block;
  font-size: .82rem;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.benefit-item p { font-size: .8rem; color: var(--gray2); line-height: 1.4; }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 50px 40px 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--white);
  transition: background .2s, border-color .2s;
}
.footer-socials a:hover { background: var(--pink); border-color: var(--pink); }

.footer-col h4 {
  color: var(--pink);
  font-size: .78rem;
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.subscribe-form input {
  padding: 11px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: var(--white);
  font-size: .85rem;
  font-family: inherit;
  outline: none;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,.4); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.05rem;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .35), 0 10px 24px rgba(17,17,17,.26);
  z-index: 999;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.08); background: #1EBE5D; box-shadow: 0 10px 30px rgba(37, 211, 102, .45), 0 12px 28px rgba(17,17,17,.28); }

.whatsapp-float i {
  color: var(--white);
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-card {
  background: var(--white);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity:0; transform:scale(.92); }
  to   { opacity:1; transform:scale(1); }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--gray2);
  z-index: 2;
}
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-body img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.modal-info {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
.modal-info .price { color: var(--pink); font-size: 1.3rem; font-weight: 700; }
.modal-info p { font-size: .88rem; color: var(--gray2); line-height: 1.6; }
.modal-info .sizes { flex-wrap: wrap; }
.modal-info .btn-primary { margin-top: auto; text-align: center; }
/* ── MODAL MÓVIL ── */
@media (max-width: 600px) {
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .modal-card {
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
    overflow-y: auto;
  }
  .modal-body {
    grid-template-columns: 1fr;
  }
  .modal-body img {
    height: auto;
    width: 100%;
    object-fit: contain;
  }
  .modal-info {
    padding: 20px 16px;
  }
}


/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit-item:nth-child(2) { border-right: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero { padding: 0 0 0 40px; }
  .hero-right { width: 50%; }
}

@media (max-width: 768px) {
  .navbar { padding: 12px 20px; flex-wrap: wrap; gap: 10px; }
  .nav-links { display: none; }
  .nav-actions { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; width: 100%; order: 3; gap: 12px; }
  .hamburger { display: block; }
  .logo-circle { width: 54px; height: 54px; }
  .logo-name { font-size: 1.1rem; }
  .logo-tagline { font-size: .5rem; }

.hero { flex-direction: column; padding: 20px 20px 0; min-height: auto; }
.hero-content { padding: 0; max-width: 100%; }
.hero-right { width: 100%; height: auto; overflow: visible; position: relative; }
.hero-model { width: 100%; height: auto; min-height: unset; object-fit: contain; object-position: top center; -webkit-mask-image: none; mask-image: none; display: block; }
.hero-flowers { display: none; }
.hero-arc-svg { display: none; }

  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-body img { height: auto; object-fit: contain; }
  
}

@media (max-width: 480px) {
  .topbar { flex-direction: column; gap: 4px; text-align: center; font-size: .72rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .benefit-item { border-right: none; border-bottom: 1px solid #eee; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
.colores {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.color-tag {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.color-tag:hover,
.color-tag.selected {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

/* ── PANEL CARRITO ── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
}
.cart-overlay.active { display: block; }

.cart-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0,0,0,.15);
  transition: right .3s ease;
}
.cart-panel.active { right: 0; }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}
.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}
.cart-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gray2);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-item-info { flex: 1; }
.cart-item-info strong { font-size: .9rem; display: block; margin-bottom: 4px; }
.cart-item-info span { font-size: .8rem; color: var(--gray2); display: block; }
.cart-item-price { color: var(--pink); font-weight: 700; font-size: .95rem; }

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.qty-btn {
  background: var(--gray);
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  font-size: .9rem;
}
.qty-btn:hover { background: var(--pink); color: var(--white); }
.qty-display { font-weight: 700; font-size: .9rem; min-width: 20px; text-align: center; }

.cart-empty {
  text-align: center;
  color: var(--gray2);
  padding: 40px 0;
  font-size: .9rem;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
}
#cartTotal { color: var(--pink); }
/* ── CARRITO: FONDO Y ACABADO VISUAL ── */
.cart-panel {
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,246,251,.94) 48%, rgba(255,252,244,.96)),
    repeating-linear-gradient(135deg, rgba(200,168,75,.08) 0 1px, transparent 1px 16px);
}

.cart-header,
.cart-footer {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
}

.cart-header {
  box-shadow: 0 8px 24px rgba(17,17,17,.04);
}

.cart-items {
  padding: 20px 22px;
}

.cart-item {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(233,30,140,.09);
  border-bottom: 1px solid rgba(233,30,140,.09);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 10px 26px rgba(17,17,17,.06);
}

.cart-item img {
  box-shadow: 0 4px 14px rgba(17,17,17,.12);
}

.cart-footer {
  box-shadow: 0 -10px 28px rgba(17,17,17,.06);
}
/* ── MEDIOS DE PAGO ── */
.payment-benefit {
  align-items: center;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
  box-shadow: 0 4px 12px rgba(17,17,17,.08);
  white-space: nowrap;
}

.payment-logo.nequi {
  background: #210049;
  color: #ff3ea5;
  border: 1px solid rgba(255,62,165,.35);
}

.payment-logo.daviplata {
  background: #ed1c24;
  color: #fff;
  border: 1px solid rgba(237,28,36,.2);
}

.payment-logo.cards {
  background: #111;
  color: #fff;
  gap: 6px;
}

.payment-logo.cards i {
  color: var(--gold2);
}
/* ── BENEFICIOS: ICONOS DESTACADOS ── */
.benefit-item:not(.payment-benefit) .benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black), var(--pink));
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 8px 18px rgba(233,30,140,.2);
  margin-top: -2px;
}

.benefit-item:not(.payment-benefit):hover .benefit-icon {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(233,30,140,.28);
}

.benefit-item:not(.payment-benefit) .benefit-icon,
.benefit-item:not(.payment-benefit) {
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
/* ── HEADER: ACABADO PREMIUM ── */
.topbar {
  background: linear-gradient(90deg, #070707 0%, #181818 42%, #070707 100%);
  border-bottom: 1px solid rgba(200,168,75,.38);
  box-shadow: 0 4px 18px rgba(17,17,17,.18);
}

.topbar span {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
}

.topbar i {
  color: var(--pink);
  text-shadow: 0 0 10px rgba(233,30,140,.45);
}

.navbar {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,253,.96)),
    radial-gradient(circle at 12% 45%, rgba(200,168,75,.16), transparent 28%),
    radial-gradient(circle at 88% 35%, rgba(233,30,140,.12), transparent 24%);
  border-bottom: 1px solid rgba(200,168,75,.22);
  box-shadow: 0 10px 30px rgba(17,17,17,.08);
}

.logo-circle {
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(200,168,75,.12), 0 10px 28px rgba(17,17,17,.16);
}

.logo-name {
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(200,168,75,.18);
}

.logo-tagline {
  color: rgba(17,17,17,.72);
}

.nav-links {
  gap: 10px;
}

.nav-links a {
  border-bottom: 0;
  border-radius: 999px;
  padding: 9px 13px;
  transition: color .2s, background .2s, box-shadow .2s, transform .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink);
  background: rgba(233,30,140,.08);
  box-shadow: inset 0 0 0 1px rgba(233,30,140,.16);
  transform: translateY(-1px);
}

.search-box {
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(17,17,17,.06);
}

.search-box input {
  padding: 10px 14px;
}

.search-box button {
  background: linear-gradient(135deg, var(--black), #2b2b2b);
  padding: 10px 14px;
  transition: background .2s, color .2s;
}

.search-box button:hover {
  background: var(--pink);
}

.icon-btn.cart-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(17,17,17,.08);
  transition: transform .2s, color .2s, box-shadow .2s;
}

.icon-btn.cart-btn:hover {
  color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(233,30,140,.18);
}

.cart-count {
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  box-shadow: 0 0 0 3px var(--white);
}
/* ── HERO: VIDA Y MOVIMIENTO SUAVE ── */
.hero {
  background:
    radial-gradient(circle at 18% 26%, rgba(200,168,75,.16), transparent 18%),
    radial-gradient(circle at 42% 78%, rgba(233,30,140,.12), transparent 22%),
    linear-gradient(120deg, #0b0b0b 0%, #111 48%, #090909 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.045) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: heroSheen 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 4%;
  top: 16%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,.13), transparent 68%);
  filter: blur(8px);
  animation: heroGlow 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  animation: heroTextIn .9s ease both;
}

.hero-title {
  text-shadow: 0 8px 28px rgba(200,168,75,.22);
}

.hero-subtitle {
  animation: heroTextIn .9s ease .12s both;
}

.hero-divider {
  width: 64px;
  box-shadow: 0 0 18px rgba(233,30,140,.55);
  animation: dividerPulse 2.8s ease-in-out infinite;
}

.hero-desc {
  animation: heroTextIn .9s ease .22s both;
}

.hero .btn-primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(233,30,140,.28);
  animation: heroTextIn .9s ease .32s both;
}

.hero .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.28) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.hero .btn-primary:hover::after {
  transform: translateX(120%);
}

.hero .btn-primary:hover {
  box-shadow: 0 16px 34px rgba(233,30,140,.38);
}

.hero-bg-particles span {
  box-shadow: 0 0 14px rgba(200,168,75,.65);
  animation-name: heroParticleFloat;
  animation-duration: 8s;
}

.hero-arc-svg {
  filter: drop-shadow(0 0 18px rgba(233,30,140,.5));
  animation: arcBreath 5.5s ease-in-out infinite;
}

.hero-model {
  filter: saturate(1.04) contrast(1.03);
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateX(-26px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroParticleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: .18; }
  45% { transform: translateY(-22px) scale(1.35); opacity: .55; }
  70% { transform: translateY(-10px) scale(.9); opacity: .28; }
}

@keyframes arcBreath {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: .92; }
  50% { transform: translateY(-50%) scale(1.025); opacity: 1; }
}

@keyframes dividerPulse {
  0%, 100% { width: 56px; opacity: .9; }
  50% { width: 76px; opacity: 1; }
}

@keyframes heroSheen {
  0%, 58% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}

@keyframes heroGlow {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .hero-content,
  .hero-subtitle,
  .hero-desc,
  .hero .btn-primary,
  .hero-bg-particles span,
  .hero-arc-svg,
  .hero-divider {
    animation: none;
  }
}
/* ── FOOTER MAP ── */
.footer-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

/* ── RESPONSIVE 375px ── */
@media (max-width: 390px) {
  .topbar {
    padding: 8px 14px;
    font-size: .7rem;
  }

  .navbar {
    padding: 10px 16px;
  }

  .hero {
    padding: 30px 16px 0;
  }

  .hero-content {
    padding-left: 4px;
  }

  .hero-title {
    font-size: 2.4rem;
  }
}
