/* ============================================
   NYC DESIGNS - ESTILOS PRINCIPALES
   ============================================
   Tecnologías: CSS3, Variables CSS, Flexbox, Grid
   Autor: NYC Designs
   Versión: 2.0
   ============================================ */

/* ========== VARIABLES ========== */
:root {
  --blush: #F6D6D8;
  --offwhite: #FAF7F5;
  --taupe: #8A6F6A;
  --charcoal: #2B2B2B;
  --dusty: #D9A1A7;
  --rose: #B8777F;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(43,43,43,.08);
  --shadow2: 0 10px 22px rgba(43,43,43,.10);
  --max: 1100px;
}

/* ========== RESET & BASE ========== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--charcoal);
  background: linear-gradient(180deg, var(--offwhite) 0%, var(--offwhite) 55%, var(--blush) 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

/* ========== ANIMACIONES ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(184,119,127,.18); }
  50% { box-shadow: 0 0 0 6px rgba(184,119,127,.08); }
}

@keyframes messageIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ========== BARRA DE ANUNCIO ========== */
.announce {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,245,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138,111,106,.22);
}
.announce .inner {
  display:flex; gap: 10px; align-items:center; justify-content:center;
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: .2px;
}
.pill {
  display:inline-flex; align-items:center; gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(217,161,167,.30);
  border: 1px solid rgba(184,119,127,.35);
  color: var(--charcoal);
  font-weight: 600;
  white-space: nowrap;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 3px rgba(184,119,127,.18);
  animation: pulse 2s infinite;
}

/* ========== HEADER ========== */
header {
  padding: 18px 0 10px;
}
.nav {
  display:flex; align-items:center; justify-content:space-between; gap: 16px;
}
.brand {
  display:flex; align-items:center; gap: 12px;
}
.brand img {
  width: 50px; height: 50px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(138,111,106,.20);
  background: var(--blush);
}
.brand .name {
  display:flex; flex-direction:column; line-height: 1.05;
}
.brand .name strong {
  font-size: 14px; letter-spacing: .5px; text-transform: uppercase;
}
.brand .name span {
  font-size: 12px; color: rgba(43,43,43,.7);
}

.menu {
  display:flex; gap: 14px; align-items:center; flex-wrap: wrap; justify-content: flex-end;
  font-size: 14px;
}
.menu a {
  padding: 10px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .2s ease;
}
.menu a:hover {
  border-color: rgba(138,111,106,.35);
  background: rgba(246,214,216,.45);
}

.actions {
  display:flex; gap: 10px; align-items:center;
}

/* ========== BOTONES ========== */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap: 6px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(138,111,106,.35);
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}
.btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}
.btn:hover { background: rgba(246,214,216,.55); box-shadow: var(--shadow2); }
.btn:active { transform: translateY(1px); }

.btn.primary {
  background: var(--rose);
  color: #fff;
  border-color: rgba(184,119,127,.85);
}
.btn.primary:hover {
  background: #a8666e;
}

.btn:disabled,
.btn.primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: rgba(138, 111, 106, 0.3) !important;
  color: rgba(43, 43, 43, 0.5) !important;
  border-color: rgba(138, 111, 106, 0.2) !important;
}

.btn:disabled:hover,
.btn.primary:disabled:hover {
  background: rgba(138, 111, 106, 0.3) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* ========== BADGE CARRITO ========== */
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #fff;
  color: var(--rose);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  margin-left: 4px;
}
.cart-badge:empty { display: none; }

/* ========== HAMBURGER MENU ========== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  padding: 18px 0 26px;
  align-items: stretch;
}
.card {
  background: rgba(250,247,245,.78);
  border: 1px solid rgba(138,111,106,.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-left {
  padding: 24px;
  display:flex; flex-direction:column; gap: 14px;
  position: relative;
  overflow:hidden;
}
.hero-left:before {
  content:"";
  position:absolute; inset: -40px -60px auto auto;
  width: 260px; height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(184,119,127,.28), rgba(217,161,167,.10) 55%, rgba(250,247,245,0) 70%);
  transform: rotate(8deg);
  pointer-events:none;
}
.kicker {
  display:flex; gap: 10px; align-items:center; flex-wrap: wrap;
  color: rgba(43,43,43,.75);
  font-size: 13px;
}
.kicker .tag {
  padding: 6px 10px; border-radius: 999px;
  border: 1px solid rgba(138,111,106,.28);
  background: rgba(246,214,216,.45);
  font-weight: 700;
  transition: all .2s ease;
  cursor: pointer;
}
.kicker .tag:hover {
  background: var(--rose);
  color: #fff;
}
h1 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.5px;
}
.sub {
  margin: 0;
  font-size: 16px;
  color: rgba(43,43,43,.76);
  line-height: 1.5;
  max-width: 56ch;
}
.hero-cta {
  display:flex; gap: 10px; flex-wrap: wrap; margin-top: 6px;
}
.mini-info {
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.mini-info .mini {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(138,111,106,.20);
  background: rgba(250,247,245,.85);
}
.mini .t {
  font-size: 12px;
  color: rgba(43,43,43,.66);
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.mini .v {
  font-weight: 800;
  font-size: 14px;
}

.hero-right {
  overflow:hidden;
  position: relative;
  display:flex; flex-direction:column;
}
.hero-right .imgwrap {
  flex:1;
  min-height: 280px;
  background: var(--blush);
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(138,111,106,.22);
  cursor: pointer;
  position: relative;
}
.hero-right .imgwrap:hover::after {
  content: "🔍";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  background: rgba(255,255,255,.9);
  padding: 12px;
  border-radius: 50%;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.hero-right .caption {
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(43,43,43,.72);
}

/* ========== SECCIONES ========== */
section {
  padding: 18px 0 26px;
}
.section-title {
  display:flex; align-items:baseline; justify-content:space-between; gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.section-title h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.2px;
}
.section-title p {
  margin: 0;
  font-size: 14px;
  color: rgba(43,43,43,.7);
}

/* ========== BUSCADOR ========== */
.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.search-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(138,111,106,.3);
  background: rgba(250,247,245,.9);
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.search-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184,119,127,.15);
}
.search-input::placeholder {
  color: rgba(43,43,43,.5);
}

/* ========== FILTROS ========== */
.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.filter-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(138,111,106,.3);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

/* ========== CATEGORÍAS ========== */
.grid-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(138,111,106,.2);
  background: rgba(250,247,245,.87);
  box-shadow: 0 4px 12px rgba(43,43,43,.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
  min-height: 140px;
  justify-content: center;
}
.cat:hover {
  border-color: var(--rose);
  transform: translateY(-2px);
  background: rgba(250,247,245,.95);
}
.cat .emoji,
.cat .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(184,119,127,.12);
  border: 1px solid rgba(184,119,127,.2);
  font-size: 24px;
  transition: all .2s ease;
}
.cat:hover .emoji,
.cat:hover .icon {
  background: rgba(184,119,127,.2);
  transform: scale(1.05);
}
.cat strong {
  font-size: 15px;
  letter-spacing: -0.2px;
  margin: 0;
}
.cat span {
  color: rgba(43,43,43,.65);
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

/* ========== PRODUCTOS ========== */
.product-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Encabezado de productos con selector de cantidad */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 4px;
  flex-wrap: wrap;
  gap: 16px;
}

.products-header span {
  font-size: 14px;
  color: rgba(43, 43, 43, 0.7);
  font-weight: 500;
}

.products-per-page {
  padding: 8px 12px;
  border: 1px solid rgba(138, 111, 106, 0.22);
  border-radius: 10px;
  background: rgba(250, 247, 245, 0.9);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.products-per-page:hover {
  border-color: rgba(184, 119, 127, 0.4);
  background: rgba(246, 214, 216, 0.4);
}

.products-per-page:focus {
  outline: none;
  border-color: var(--rose);
  background: rgba(246, 214, 216, 0.6);
}

/* Botón "Cargar más" */
.load-more-btn {
  display: block;
  margin: 32px auto 0;
  padding: 12px 32px;
  border: 1px solid rgba(138, 111, 106, 0.22);
  border-radius: var(--radius);
  background: rgba(250, 247, 245, 0.9);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.load-more-btn:hover {
  background: rgba(246, 214, 216, 0.5);
  border-color: rgba(184, 119, 127, 0.4);
  transform: translateY(-2px);
}

.load-more-btn:active {
  transform: translateY(0);
}

.product {
  overflow:hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(138,111,106,.22);
  background: rgba(250,247,245,.82);
  box-shadow: var(--shadow);
  display:flex; flex-direction:column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product.hidden {
  display: none;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
}
.product .pimg {
  height: 210px;
  background: var(--blush);
  overflow:hidden;
  position: relative;
}
.product .pimg::after {
  content: "Ver producto";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transition: opacity .2s ease;
}
.product:hover .pimg::after {
  opacity: 1;
}
.product img {
  width:100%; height:100%; object-fit: cover; display:block;
}
.product .pbody {
  padding: 14px 14px 16px;
  display:flex; flex-direction:column; gap: 10px;
}
.product .pbody strong {
  font-size: 15px;
}
.badges {
  display:flex; gap: 8px; flex-wrap: wrap;
}
.badge {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(138,111,106,.22);
  background: rgba(250,247,245,.9);
  color: rgba(43,43,43,.78);
}
.badge.strong {
  background: rgba(184,119,127,.16);
  border-color: rgba(184,119,127,.40);
  color: var(--charcoal);
}
.price {
  display:flex; align-items:center; justify-content:space-between;
  gap: 10px;
}
.price strong {
  font-size: 16px;
  letter-spacing: -.2px;
}
.price span {
  color: rgba(43,43,43,.7);
  font-size: 13px;
}

/* ========== CÓMO FUNCIONA ========== */
.how-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.work-step {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(138,111,106,.2);
  background: rgba(250,247,245,.85);
  box-shadow: 0 8px 16px rgba(43,43,43,.05);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.work-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
}
.step-number {
  position: absolute;
  top: -12px; right: -12px;
  width: 44px;
  height: 44px;
  background: var(--rose);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
}
.step-icon {
  font-size: 48px;
  margin: 16px 0 12px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
}
.step-icon svg {
  stroke: currentColor;
}
.work-step h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.work-step p {
  margin: 0;
  font-size: 14px;
  color: rgba(43,43,43,.7);
  line-height: 1.5;
}

/* ========== CÓMO COMPRAR ========== */
.how-to-buy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
  background: rgba(217,161,167,.1);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(184,119,127,.15);
}
.step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.step-circle {
  width: 56px;
  height: 56px;
  background: var(--rose);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(184,119,127,.25);
}
.step-item h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.step-item p {
  margin: 0;
  font-size: 14px;
  color: rgba(43,43,43,.7);
  line-height: 1.5;
  max-width: 28ch;
}

/* ========== PÁGINA DE PRODUCTO ========== */
/* Estilos removidos - sección de detalles de producto ya no existe */

/* ========== FAQ ACORDEÓN ========== */
.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(138,111,106,.18);
  background: rgba(250,247,245,.88);
  box-shadow: 0 2px 6px rgba(43,43,43,.03);
  overflow: hidden;
  margin-bottom: 10px;
  transition: all .2s ease;
}
.faq-item:hover {
  border-color: rgba(184,119,127,.2);
  box-shadow: 0 4px 12px rgba(43,43,43,.05);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.1px;
  transition: all .2s ease;
  background: transparent;
}
.faq-question:hover {
  background: rgba(217,161,167,.06);
}
.faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--rose);
  transition: transform .3s ease, color .2s ease;
  min-width: 24px;
  text-align: center;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 16px 16px;
}
.faq-answer p {
  margin: 0;
  font-size: 13px;
  color: rgba(43,43,43,.74);
  line-height: 1.5;
}

/* ========== TESTIMONIOS ========== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.testimonial {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(138,111,106,.22);
  background: rgba(250,247,245,.82);
  box-shadow: var(--shadow);
}
.testimonial-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 10px;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(43,43,43,.8);
  margin-bottom: 12px;
  font-style: italic;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--rose);
}

/* ========== FORMULARIO DE CONTACTO ========== */
.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-input {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(138,111,106,.3);
  background: rgba(250,247,245,.9);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s ease;
}
.form-input:focus {
  border-color: var(--rose);
}
.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* ========== FOOTER ========== */
footer {
  margin-top: 30px;
  padding: 26px 0;
  border-top: 1px solid rgba(138,111,106,.18);
  background: rgba(250,247,245,.5);
}
.foot {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 24px;
}
.foot h4 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .3px;
}
.foot p {
  margin: 0 0 8px;
  font-size: 13px;
  color: rgba(43,43,43,.7);
  line-height: 1.45;
}
.foot .credit {
  font-size: 11px;
  color: rgba(43,43,43,.5);
  margin-top: 12px;
}
.foot .links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.foot .links a {
  font-size: 13px;
  color: rgba(43,43,43,.7);
  transition: color .2s ease;
}
.foot .links a:hover {
  color: var(--rose);
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .2s ease, background .2s ease;
  text-decoration: none;
}
.social-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
.social-link:hover {
  transform: scale(1.1);
  background: #a8666e;
}

/* ========== CARRITO SIDEBAR ========== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 100;
}
.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 90vw);
  height: 100vh;
  height: 100dvh;
  background: var(--offwhite);
  box-shadow: -10px 0 40px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 101;
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  max-height: 100dvh;
}
.cart-sidebar.active {
  transform: translateX(0);
}
.cart-header {
  flex-shrink: 0;
  padding: 20px;
  border-bottom: 1px solid rgba(138,111,106,.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 {
  margin: 0;
  font-size: 18px;
}
.cart-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--charcoal);
  line-height: 1;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding: 16px;
}
.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(138,111,106,.15);
  align-items: center;
}
.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--blush);
}
.cart-item-info h4 {
  margin: 0 0 4px;
  font-size: 14px;
}
.cart-item-info span {
  font-size: 12px;
  color: rgba(43,43,43,.6);
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--rose);
  cursor: pointer;
  font-size: 18px;
}
.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: rgba(43,43,43,.6);
}
.cart-empty span {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
}
.cart-footer {
  flex-shrink: 0;
  padding: 20px;
  border-top: 1px solid rgba(138,111,106,.2);
  box-shadow: 0 -4px 12px rgba(0,0,0,.08);
  background: var(--offwhite);
}

/* Mobile Cart Fix */
@media (max-width: 768px) {
  .cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    background: var(--offwhite, #FAF7F5);
  }

  .cart-sidebar .cart-header {
    flex-shrink: 0;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    background: var(--offwhite, #FAF7F5);
  }

  .cart-sidebar .cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    min-height: 150px;
    max-height: 35vh;
  }

  .cart-sidebar .cart-empty {
    padding: 2rem 1rem;
  }

  .cart-sidebar .cart-footer {
    flex-shrink: 0;
    padding: 1rem;
    background: var(--offwhite, #FAF7F5);
    border-top: 1px solid #eee;
    max-height: 65vh;
    overflow-y: auto;
  }

  /* Compact shipping section */
  .shipping-section {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .shipping-section h4 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .shipping-option {
    padding: 0.5rem 0.75rem;
  }

  .shipping-option-title {
    font-size: 0.85rem;
  }

  .shipping-option-price {
    font-size: 0.8rem;
  }

  .shipping-option-desc {
    font-size: 0.7rem;
  }

  /* Compact coupon section */
  .cart-coupon {
    margin-bottom: 0.75rem;
  }

  .coupon-input-group {
    gap: 0.5rem;
  }

  .coupon-input-group input {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  .coupon-input-group button {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  /* Cart total compact */
  .cart-total {
    padding: 0.5rem 0;
    font-size: 1rem;
  }

  .cart-note {
    padding: 0.5rem;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .cart-footer .btn {
    padding: 0.875rem;
    font-size: 0.95rem;
  }

  .payment-methods {
    font-size: 0.7rem;
    margin-top: 0.5rem;
  }
}

/* Footer Hours */
.footer-hours {
  font-size: 14px;
  line-height: 1.6;
}

.footer-hours p {
  margin: 4px 0;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.cart-footer .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 8px;
}
.cart-footer .btn:last-child {
  margin-bottom: 0;
}

/* Cart Note Warning */
.cart-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: var(--blush);
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--charcoal);
}
.cart-note svg {
  flex-shrink: 0;
  color: var(--rose);
}

/* ========== PERSONALIZATION OPTIONS ========== */
#personalizados {
  padding: 60px 24px;
  background: linear-gradient(135deg, rgba(246,214,216,.1) 0%, transparent 100%);
}

.personalization-options {
  display: flex;
  align-items: stretch;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.option-card {
  flex: 1;
  background: var(--offwhite);
  border: 2px solid var(--blush);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.option-card:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(184, 119, 127, 0.15);
}

.option-icon {
  color: var(--rose);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.option-card h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--charcoal);
}

.option-card p {
  color: var(--taupe);
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
}

.option-divider {
  display: flex;
  align-items: center;
  color: var(--taupe);
  font-weight: 600;
  min-width: 40px;
}

.option-divider span {
  width: 100%;
  text-align: center;
}

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.modal-content h2 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--charcoal);
}

.modal-content > p {
  margin: 0 0 24px;
  color: var(--taupe);
  font-size: 14px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--taupe);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s ease;
}

.modal-close:hover {
  color: var(--charcoal);
}

/* ========== PERSONALIZATION FORM ========== */
.personalization-form .form-group {
  margin-bottom: 20px;
}

.personalization-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
  font-size: 14px;
}

.personalization-form input,
.personalization-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--blush);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.personalization-form input:focus,
.personalization-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184,119,127,.1);
}

.personalization-form textarea {
  min-height: 100px;
  resize: vertical;
}

.file-upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-upload input[type="file"] {
  display: none;
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 2px dashed var(--blush);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--taupe);
  font-weight: 500;
}

.file-label:hover {
  border-color: var(--rose);
  background: rgba(246, 214, 216, 0.2);
  color: var(--rose);
}

.file-label svg {
  flex-shrink: 0;
}

#fileCount {
  font-size: 12px;
  color: rgba(43,43,43,.6);
}

.full-width {
  width: 100% !important;
}

/* ========== BUTTON SECONDARY ========== */
.btn.secondary {
  background: white;
  border: 2px solid var(--rose);
  color: var(--rose);
}

.btn.secondary:hover {
  background: rgba(184,119,127,.1);
  border-color: var(--rose);
}

.btn.full-width {
  width: 100%;
}

/* Payment Methods Info */
.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--taupe);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 200;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,.9);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--charcoal);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.toast-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* ========== BOTÓN VOLVER ARRIBA ========== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow2);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease, transform .2s ease;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: scale(1.1);
}

/* ========== MENÚ MÓVIL ========== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(250,247,245,.98);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-size: 20px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  transition: background .2s ease;
}
.mobile-menu a:hover {
  background: rgba(246,214,216,.5);
}

/* ========== CHATBOT ========== */
.chatbot-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--rose) 0%, #a8666e 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184,119,127,.4);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
  color: #fff;
}
.chatbot-button svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.chatbot-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(184,119,127,.5);
}
.chatbot-button.has-notification::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 12px;
  height: 12px;
  background: #e74c3c;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: pulse 1.5s infinite;
}

.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 360px;
  max-width: calc(100vw - 40px);
  height: 500px;
  max-height: calc(100vh - 140px);
  background: var(--offwhite);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  z-index: 81;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.chatbot-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: linear-gradient(135deg, var(--rose) 0%, #a8666e 100%);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.chatbot-info h4 {
  margin: 0;
  font-size: 15px;
}
.chatbot-info span {
  font-size: 12px;
  opacity: .8;
}
.chatbot-close {
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  opacity: .8;
  transition: opacity .2s ease;
}
.chatbot-close:hover {
  opacity: 1;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  animation: messageIn .3s ease;
}
.chat-message.bot {
  background: rgba(217,161,167,.2);
  border: 1px solid rgba(184,119,127,.2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-message.user {
  background: var(--rose);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-message.typing {
  display: flex;
  gap: 4px;
  padding: 16px 20px;
}
.chat-message.typing span {
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}
.chat-message.typing span:nth-child(2) { animation-delay: .2s; }
.chat-message.typing span:nth-child(3) { animation-delay: .4s; }

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.quick-reply {
  padding: 8px 14px;
  background: rgba(250,247,245,.9);
  border: 1px solid rgba(138,111,106,.3);
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s ease;
}

/* ======= LOADER ======= */
#loader {
  position: fixed;
  inset:0;
  background: var(--offwhite);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index: 9999;
  opacity:1;
  transition: opacity .5s ease;
}
#loader.fade-out {
  opacity:0;
  visibility:hidden;
}
#loader img {
  width:120px;
  animation: pulse 1.8s infinite;
}
#loader p {
  margin-top:12px;
  font-size:16px;
  color: var(--charcoal);
}

/* ======= MERCADOPAGO MODAL ======= */
.mp-modal {
  position: fixed;
  inset:0;
  background: rgba(0,0,0,.5);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 1000;
}
.mp-modal.active {
  opacity:1;
  visibility:visible;
}
.mp-modal-content {
  background: var(--offwhite);
  padding: 24px;
  border-radius: 18px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: var(--shadow);
}
.mp-close {
  position: absolute;
  top: 12px; right: 12px;
  background:none;
  border:none;
  font-size:24px;
  cursor:pointer;
}
.mp-modal-content input {
  width:100%;
  padding:12px 14px;
  margin-bottom:12px;
  border-radius:12px;
  border:1px solid rgba(138,111,106,.3);
  font-size:14px;
}

/* ======= VIDEO GRID ======= */
.shorts-grid {
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
  padding:0 16px;
}
.short-card {
  position:relative;
  width:280px;
  max-width:100%;
  aspect-ratio:9/16;
  border-radius:16px;
  overflow:hidden;
  background:#000;
  cursor:pointer;
  box-shadow:0 4px 20px rgba(0,0,0,.15);
  transition:transform .3s ease,box-shadow .3s ease;
}
.short-card:hover {
  transform:translateY(-4px);
  box-shadow:0 8px 30px rgba(0,0,0,.25);
}
.short-card video {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.short-play-btn {
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:60px;height:60px;
  border-radius:50%;
  background:rgba(255,255,255,.85);
  border:none;
  font-size:24px;
  color:var(--rose);
  cursor:pointer;
  transition:opacity .3s,transform .3s;
  display:flex;align-items:center;justify-content:center;
  backdrop-filter:blur(4px);
}
.short-play-btn.hidden {
  opacity:0;
  pointer-events:none;
}
.short-label {
  position:absolute;
  bottom:0;left:0;right:0;
  padding:24px 14px 14px;
  background:linear-gradient(transparent,rgba(0,0,0,.7));
  color:#fff;
  font-size:15px;
  font-weight:600;
  letter-spacing:.3px;
}

/* utilidad de centrado */
.center { text-align: center; }

/* ======= RESPONSIVE AJUSTES ======= */
@media (max-width: 720px) {
  .shorts-grid { gap:14px; }
  .short-card { width:240px; }
  .product-grid { grid-template-columns: 1fr; }
  .how-works,
  .how-to-buy,
  .how { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
}
.quick-reply:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

.chatbot-input {
  padding: 16px;
  border-top: 1px solid rgba(138,111,106,.2);
  display: flex;
  gap: 10px;
}
.chatbot-input input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(138,111,106,.3);
  font-size: 14px;
  outline: none;
}
.chatbot-input input:focus {
  border-color: var(--rose);
}
.chatbot-input button {
  width: 44px;
  height: 44px;
  background: var(--rose);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s ease;
}
.chatbot-input button:hover {
  background: #a8666e;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .grid-cats {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-works,
  .how-to-buy,
  .how,
  .testimonials {
    grid-template-columns: 1fr;
  }
  .product-page {
    grid-template-columns: 1fr;
  }
  .foot {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========== TRUST BANNER ========== */
.trust-banner {
  background: rgba(246,214,216,.25);
  border: 1px solid rgba(184,119,127,.15);
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 24px 16px;
  margin: 12px 0 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--rose);
  flex-shrink: 0;
}

/* ========== TESTIMONIALS GRID ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(43,43,43,.08);
  border: 1px solid rgba(138,111,106,.1);
}
.testimonial-stars {
  color: #f39c12;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
}
.author-location {
  font-size: 12px;
  color: rgba(43,43,43,.6);
}

/* ========== STEPS HORIZONTAL ========== */
.steps-horizontal {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.step-item {
  flex: 1;
  min-width: 200px;
}
.step-circle {
  width: 40px;
  height: 40px;
  background: var(--rose);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(184,119,127,.2);
}
.step-content h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--charcoal);
}
.step-content p {
  margin: 0;
  font-size: 13px;
  color: rgba(43,43,43,.7);
  line-height: 1.5;
}
.step-connector {
  flex: 0 1 16px;
  height: 2px;
  background: var(--blush);
  margin-bottom: 28px;
}

/* ========== CART PERSONALIZATION ========== */

/* ========== COUPON STYLES ========== */
.cart-coupon {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 15px;
}

.coupon-input-group {
  display: flex;
  gap: 8px;
}

.coupon-input-group input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--charcoal);
  background: white;
}

.coupon-input-group input::placeholder {
  color: var(--taupe);
}

.coupon-input-group input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184, 119, 127, 0.1);
}

.coupon-input-group .btn {
  padding: 10px 16px;
  white-space: nowrap;
  font-size: 13px;
}

.coupon-message {
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
}

.coupon-message.error {
  color: #dc3545;
}

.coupon-message.success {
  color: #28a745;
}

.coupon-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blush);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--rose);
  margin-top: 8px;
}

.remove-coupon {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--taupe);
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s ease;
}

.remove-coupon:hover {
  color: var(--charcoal);
}

.cart-total .original-price {
  text-decoration: line-through;
  color: var(--taupe);
  font-size: 14px;
  margin-right: 8px;
}

.cart-total .discounted-price {
  color: var(--rose);
  font-weight: 700;
}

/* ========== PRODUCT DETAIL MODAL ========== */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.product-modal.active {
  display: flex;
}

.product-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.product-modal-content {
  position: relative;
  background: var(--offwhite);
  border-radius: 16px;
  max-width: 900px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--charcoal);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.product-modal-close:hover {
  background: var(--rose);
  transform: rotate(90deg);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.product-modal-image {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: 16px 0 0 16px;
  gap: 12px;
}

.product-modal-image > img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.product-modal-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-modal-thumbs .modal-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}

.product-modal-thumbs .modal-thumb:hover {
  opacity: 0.9;
}

.product-modal-thumbs .modal-thumb.active {
  border-color: var(--rose);
  opacity: 1;
}

.product-modal-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-modal-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-modal-badges .badge {
  background: var(--blush);
  color: var(--rose);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-modal-badges .badge.strong {
  background: var(--rose);
  color: white;
}

.product-modal-info h2 {
  font-size: 24px;
  margin: 0;
  color: var(--charcoal);
}

.product-modal-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.product-modal-price .current-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--rose);
}

.product-modal-price .old-price {
  font-size: 18px;
  color: var(--taupe);
  text-decoration: line-through;
}

.product-modal-description {
  color: var(--taupe);
  line-height: 1.6;
  margin: 0;
}

.product-modal-details {
  background: white;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--blush);
}

.detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--taupe);
}

.detail-label svg {
  color: var(--rose);
}

.detail-value {
  font-weight: 600;
  color: var(--charcoal);
}

.product-modal-add {
  margin-top: 8px;
}

.product-modal-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.product-modal-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
}

/* Product image hover overlay */
.pimg {
  position: relative;
  cursor: pointer;
}

.pimg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(184, 119, 127, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px 12px 0 0;
}

.pimg:hover .pimg-overlay {
  opacity: 1;
}

.pimg-overlay span {
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border: 2px solid white;
  border-radius: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .product-modal-grid {
    grid-template-columns: 1fr;
  }
  
  .product-modal-image {
    border-radius: 16px 16px 0 0;
    padding: 24px;
  }
  
  .product-modal-image img {
    max-height: 250px;
  }
  
  .product-modal-info {
    padding: 24px;
  }
  
  .product-modal-info h2 {
    font-size: 20px;
  }
  
  .product-modal-price .current-price {
    font-size: 24px;
  }
}
  font-weight: 700;
}

/* ========== QUICK REPLIES ========== */
#quickReplies {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
#quickReplies.active {
  max-height: 300px;
}
.quick-reply {
  background: #fff;
  border: 1px solid var(--rose);
  color: var(--charcoal);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.quick-reply:hover {
  background: var(--blush);
  border-color: var(--rose);
}
.quick-reply.whatsapp-btn {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.quick-reply.whatsapp-btn:hover {
  background: #1fa853;
  border-color: #1fa853;
}

@media (max-width: 700px) {
  .menu { display: none; }
  .hamburger { display: flex; }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .products-header {
    flex-direction: column;
    align-items: stretch;
  }
  .products-per-page {
    width: 100%;
  }
  .mini-info {
    grid-template-columns: 1fr;
  }
  .announce .inner {
    font-size: 12px;
    flex-wrap: wrap;
  }
  .trust-banner {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }
  .trust-item {
    justify-content: center;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .steps-horizontal {
    flex-direction: column;
    gap: 24px;
  }
  .step-connector {
    display: none;
  }
  .personalization-options {
    flex-direction: column;
  }
  .option-divider {
    padding: 16px 0;
  }
  .option-divider span {
    width: 100%;
    text-align: center;
  }
  .modal-content {
    padding: 24px;
    border-radius: 12px;
  }
  .foot {
    grid-template-columns: 1fr;
  }
  .chatbot-window {
    right: 10px;
    bottom: 90px;
    width: calc(100vw - 20px);
  }
  .chatbot-button {
    right: 20px;
    bottom: 20px;
  }
  .back-to-top {
    bottom: 90px;
    right: 20px;
  }
}

/* ========== SOCIAL PROOF COUNTER ========== */
.social-proof {
  background: linear-gradient(135deg, var(--rose) 0%, var(--dusty) 100%);
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 24px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.proof-item {
  color: white;
}

.proof-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-number::after {
  content: '+';
}

.proof-label {
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .proof-number {
    font-size: 36px;
  }
}

/* ========== URGENCIA - POCAS UNIDADES ========== */
.stock-warning {
  background: linear-gradient(90deg, #ff6b6b, #ee5a5a);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  animation: pulse-warning 2s infinite;
}

.stock-warning::before {
  content: '🔥';
}

@keyframes pulse-warning {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

/* ========== CUOTAS VISIBLES ========== */
.installments {
  font-size: 12px;
  color: var(--taupe);
  margin-top: 4px;
}

.installments strong {
  color: #00a650;
}

/* ========== SKELETON LOADING ========== */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-product {
  height: 320px;
}

.skeleton-text {
  height: 16px;
  margin: 8px 0;
}

.skeleton-text.short {
  width: 60%;
}

/* ========== ESTADOS VACÍOS ========== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--taupe);
}

.empty-state svg {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.empty-state p {
  margin-bottom: 20px;
}

/* ========== POPUP SALIDA ========== */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(5px);
}

.exit-popup.active {
  display: flex;
}

.exit-popup-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: popupBounce 0.4s ease;
}

@keyframes popupBounce {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

.exit-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--taupe);
}

.exit-popup h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.exit-popup .discount-code {
  background: var(--blush);
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--rose);
  letter-spacing: 2px;
  margin: 20px 0;
  display: inline-block;
}

.exit-popup p {
  color: var(--taupe);
  margin-bottom: 20px;
}

/* ========== LOADING EN BOTONES ========== */
.btn.loading {
  pointer-events: none;
  position: relative;
  color: transparent !important;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========== TOAST MEJORADO ========== */
.toast {
  background: var(--charcoal);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.toast.success {
  background: linear-gradient(135deg, #00a650, #00875a);
}

.toast.error {
  background: linear-gradient(135deg, #dc3545, #c82333);
}

.toast.warning {
  background: linear-gradient(135deg, #ffc107, #e0a800);
  color: var(--charcoal);
}

/* ========== BADGE DESCUENTO ========== */
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #dc3545;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

/* ========== HOVER MEJORADO PRODUCTOS ========== */
.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ========== FULL WIDTH BUTTON ========== */
.btn.full-width {
  width: 100%;
  justify-content: center;
}

/* ========== SHIPPING SECTION ========== */
.shipping-section {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.shipping-section h4 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shipping-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 2px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.shipping-option:hover {
  border-color: var(--dusty);
}

.shipping-option:has(input:checked) {
  border-color: var(--rose);
  background: rgba(184, 119, 127, 0.05);
}

.shipping-option input[type="radio"] {
  margin-top: 0.25rem;
  accent-color: var(--rose);
  flex-shrink: 0;
}

.shipping-option-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shipping-option-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.shipping-option-price {
  color: var(--rose);
  font-weight: 700;
}

.shipping-option-desc {
  font-size: 0.75rem;
  color: var(--taupe);
}

.shipping-calculator {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.shipping-calculator input {
  flex: 1;
  min-width: 100px;
  padding: 0.6rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
}

.shipping-calculator .btn {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

#shippingResult {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.shipping-address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.shipping-address input {
  padding: 0.6rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
}
