
:root {
  --bg: #f4c3bf;
  --bg-soft: #f8d4d1;
  --card: #ffffff;
  --text-main: #503535;
  --text-soft: #7a5a5a;
  --accent: #f29a96;
  --accent-soft: #f7b4b1;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 195, 191, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

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

.header-logo img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.brand-link h1 {
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}

.brand-link h1 span {
  font-weight: 500;
}

.slogan {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: .2s;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.8);
}

.main-nav a.active {
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.03);
}

/* HERO */
/* ============================
   HERO FULLSCREEN • ULTRA PREMIUM UI – V2
   ============================ */

.hero {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  isolation: isolate;
}

/* SLIDER CON PARALLAX + BLEND-MODE */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 105%;
  height: 105%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.82) contrast(1.25) saturate(1.1);
  opacity: 0;
  transform: scale(1.14);
  transition: opacity 1.5s ease, transform 3.5s ease;
  mix-blend-mode: multiply;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}

/* GRADIENTE OSCURO DETRÁS DEL TEXTO – MÁS LEGIBLE */
.hero-darklayer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 7, 9, 0.35),
    rgba(10, 7, 9, 0.18),
    rgba(10, 7, 9, 0.05)
  );
  z-index: 1;
}


/* GLASSMORPHISM SUAVE ROSA */
.hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px) saturate(120%);
  background: linear-gradient(
    120deg,
    rgba(244, 195, 191, 0.20),
    rgba(244, 195, 191, 0.05)
  );
  z-index: 2;
}

/* CONTENIDO */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 40px;
  color: #ffffff;
  animation: fadeUp 1.1s ease;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

/* TÍTULO SUPER LEGIBLE */
.hero-content h2 {
  font-size: 4.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -1.2px;
  line-height: 1.05;
  color: #ffffff;
}

/* SUBTÍTULO CLARO */
.hero-content h3 {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
  font-weight: 500;
}

/* DESCRIPCIÓN */
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 26px;
  max-width: 620px;
  opacity: 0.96;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

/* BOTONES */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.btn-primary,
.btn-outline {
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1.15rem;
  transition: 0.25s ease;
  backdrop-filter: blur(6px);
}

/* Botón principal */
.btn-primary {
  background: linear-gradient(135deg, #ffe6e6, #ffb5b0);
  color: #3c2424;
  box-shadow: 0 8px 22px rgba(255, 150, 150, 0.35);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255, 140, 140, 0.55);
}

/* Botón outline */
.btn-outline {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.66);
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: translateY(-4px);
}

/* SUBTEXTO */
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.4px;
}

/* ANIMACIÓN */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    height: 520px;
  }
  .hero-content {
    padding: 20px;
  }
  .hero-content h2 {
    font-size: 2.8rem;
  }
  .hero-content h3 {
    font-size: 1.3rem;
  }
  .hero-content p {
    font-size: 1.05rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
}


/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: .25s;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff, var(--accent-soft));
  color: var(--text-main);
  box-shadow: 0 6px 14px rgba(152, 84, 84, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(152, 84, 84, 0.3);
}

.btn-outline {
  border: 1px solid #ffffff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 12px 30px rgba(166, 103, 103, 0.22);
  position: relative;
}

.badge {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
}

.hero-card h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.hero-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.hero-card ul {
  margin: 0 0 10px 18px;
  font-size: 0.9rem;
  color: var(--text-soft);
  list-style: disc;
}

.hero-link {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 40px 20px;
}

.section h2 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.9rem;
}

.section-sub {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 25px;
}

.section-soft {
  background: var(--bg-soft);
}

.destacados-carousel .product-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  padding-bottom: 14px;
  transition: .3s;
}

.destacados-carousel .product-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.destacados-carousel .product-img {
  height: 240px;
  overflow: hidden;
}

.destacados-carousel .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s;
}

.destacados-carousel .product-card:hover img {
  transform: scale(1.07);
}

/* Asegurar que las tarjetas sean clickeables */
.destacados-carousel .product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}


/* ==========================  
   🛍️ PRODUCTO PREMIUM 2025
   ========================== */

/* Grid responsivo */
.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  padding: 10px 0;
  animation: fadeIn 0.8s ease forwards;
}

/* Tarjeta principal */
.product-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  overflow: hidden;
  padding: 0 0 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  border: 1px solid rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
}

/* Hover premium */
.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Imagen */
.product-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

/* Zoom suave */
.product-card:hover .product-img img {
  transform: scale(1.07);
}

/* Badge categoría */
.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent);
  font-weight: 600;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* Título */
.product-card h3 {
  margin: 16px 16px 4px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Descripción */
.product-card p {
  margin: 0 16px 8px;
  font-size: 0.92rem;
  color: var(--text-soft);
}

/* Precio premium */
.detail-price {
  font-size: 1.32rem !important;
  font-weight: 700;
  color: var(--text-main);
  margin: 4px 16px 10px !important;
}

/* Botón principal */
.btn-primary {
  margin: 0 16px;
  margin-top: 8px;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: white !important;
  box-shadow: 0 8px 18px rgba(242, 154, 150, 0.35);
  transition: 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(242, 154, 150, 0.45);
}

/* Link detalle */
.hero-link {
  display: block;
  margin-left: 16px;
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: 0.2s ease;
}

.hero-link:hover {
  opacity: 0.8;
}

/* ANIMACIÓN FADE-IN */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



.chip {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(242, 154, 150, 0.08);
  border: 1px solid rgba(242, 154, 150, 0.5);
}

.section-cta {
  text-align: center;
  margin-top: 25px;
}

.grid-benefits {
  max-width: 900px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.benefit-card, .step, .cart, .cart-summary, .detail-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 10px 24px rgba(152, 84, 84, 0.16);
}

.benefit-card h3 {
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.steps {
  max-width: 900px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.step-number {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  font-size: 0.9rem;
  margin-bottom: 6px;
}


/* ====== CONTACTO & INFO NAHIRÉ ====== */

.contact-grid {
  max-width: 1100px;
  margin: 10px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: var(--shadow-soft, 0 10px 24px rgba(0,0,0,0.06));
  border: 1px solid var(--border-soft, rgba(0,0,0,0.04));
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.94rem;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.contact-card ul {
  margin: 6px 0 0 18px;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.contact-main {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.contact-warning {
  font-size: 0.9rem;
  color: #b04848;
}

.contact-pill {
  display: inline-block;
  margin: 6px 0 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark, #a55b5b);
}

/* Redes */

.contact-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  margin-top: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  transition: 0.2s ease;
}

.contact-social a:last-child {
  border-bottom: none;
}

.contact-social a:hover {
  color: var(--accent-dark, #a55b5b);
}

.contact-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
}

/* Responsive pequeño ajuste */

@media (max-width: 600px) {
  .contact-card {
    padding: 16px 14px;
  }
}


/* FOOTER */

.footer {
  background: #ede5e3;
  margin-top: 40px;
  padding: 32px 0 22px;
  border-top: 1px solid var(--border-soft, rgba(0,0,0,0.05));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr;
  gap: 24px;
  align-items: flex-start;
}

.footer-brand {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.footer-text {
  font-size: 0.92rem;
  color: var(--text-soft);
  max-width: 320px;
}

.footer-title {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.footer-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.footer-list li + li {
  margin-top: 4px;
}

.footer a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer a:hover {
  color: var(--accent-dark, #a55b5b);
  opacity: 0.9;
}

/* Social pill */

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.85rem;
}

/* Bottom bar */

.footer-bottom {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-copy {
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
}

/* Responsive */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* CART */
.cart {
  margin-top: 25px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 10px 0;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-item-body {
  flex: 1;
}

.qty-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.qty-row button {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: none;
  background: var(--accent-soft);
  cursor: pointer;
}

.cart-item-price {
  min-width: 90px;
  text-align: right;
}

.remove {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

.cart-summary {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.btn-outline-danger {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #ff7676;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
}

.cupon-box {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.cupon-box input {
  flex: 1;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid var(--accent-soft);
  background: #fff;
}

.cupon-box button {
  padding: 8px 14px;
  background: var(--accent);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
}

.cupon-mensaje {
  font-size: 0.85rem;
}

.cupon-mensaje.ok { color: #00aa66; }
.cupon-mensaje.error { color: #ff4d4d; }
.cupon-mensaje.warning { color: #aa6600; }

.total-final {
  font-size: 1.1rem;
  margin-top: 4px;
}

.cart-badge {
  display: inline-flex;
  min-width: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.75rem;
  justify-content: center;
  margin-left: 4px;
}

/* detail */
.detail-layout {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 20px;
}

.detail-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.detail-price {
  font-size: 1.4rem;
  margin: 10px 0;
}

@media (max-width: 900px) {
  .header-flex {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
}
