@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&display=swap');

/* Reset / body */
:root{
  --marfil: #FBF6F1;
  --deep-rose: #B23A48;
  --dusty-rose: #EBA7A1;
  --gold: #CBA34F;
  --slate: #343A40;
  --muted: #6c6c6c;
}

*{box-sizing:border-box}
body{
  font-family: "Quicksand", "Inter", "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--marfil) 0%, #fff 100%);
  color: var(--slate);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* NAV / brand */
.navbar{
  background: transparent;
}

.brand-mark{
  width:48px;height:48px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background: linear-gradient(135deg, var(--deep-rose), var(--dusty-rose));
  color: #fff; font-weight:700; font-size:20px; box-shadow: 0 6px 18px rgba(178,58,72,0.15);
}

.brand-title{font-weight:700; letter-spacing:0.3px; font-size:1.05rem}
.brand-sub{color:var(--muted); font-size:0.75rem}

/* Hero */
.hero {
  padding: 80px 20px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #8e2de2, #ff6fb1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.hero::after{
  content:"";
  position:absolute; right:0; top:0; bottom:0; left:0;
  background: radial-gradient(800px 200px at 10% 20%, rgba(203,163,79,0.06), transparent 10%),
              radial-gradient(600px 150px at 90% 80%, rgba(178,58,72,0.04), transparent 10%);
  pointer-events:none;
}

.hero-image{
  height:260px;
  border-radius: 12px;
  background-image: url('https://images.unsplash.com/photo-1520975698512-4b4fb0e791cf?auto=format&fit=crop&w=1000&q=80');
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(52,58,64,0.08);
}

 
/* Product card styling */
.product-card{
  border: 0;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.2,.9,.3,1), box-shadow .28s;
  border-radius: 12px;
}
.product-card:hover{
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 50px rgba(52,58,64,0.12);
}

/* card image */
.card-img-top{
   
  object-fit:cover;
  transition: transform .5s ease;
}
.product-card:hover .card-img-top{
  transform: scale(1.06);
}

/* badges */
.badge{
  position:absolute; left:10px; top:10px; padding:6px 10px; border-radius:8px; font-weight:600;
  font-size:12px; box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

.new-badge{background: linear-gradient(90deg,var(--deep-rose),var(--dusty-rose)); color:white}
.sale-badge{background:rgba(203,163,79,0.12); color:var(--gold); border:1px solid rgba(203,163,79,0.18)}
.bestseller-badge{background:rgba(52,58,64,0.9); color:white}

/* price and buttons */
.price{font-weight:700; color:var(--deep-rose); display:block; font-size:1.05rem}
.btn-gold{
  background: linear-gradient(90deg,var(--gold), #e6c76a);
  border: none;
  color: #2b2922;
  box-shadow: 0 8px 24px rgba(203,163,79,0.14);
}
 

/* small UI niceties */
.cart-count{
  position: absolute; top: -6px; right: -6px;
  font-size:11px; background:var(--deep-rose); color:white; padding:3px 6px; border-radius:50%;
  box-shadow:0 6px 12px rgba(178,58,72,0.2);
}


.modal-content {
  border: none;
  overflow: hidden;
}

.navbar .nav-link {
  position: relative;
  color: #555;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Línea animada al pasar el mouse */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #E91E63; /* tu color de marca */
  transition: width 0.3s ease-in-out;
}

/* Efecto hover */
.navbar .nav-link:hover {
  color: #E91E63;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

/* Estado activo (la página actual) */
.navbar .nav-link.active {
  color: #E91E63;
}

.navbar .nav-link.active::after {
  width: 100%;
}


.form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #c59d5f;
  box-shadow: 0 0 0 0.2rem rgba(197,157,95,0.25);
}

.btn-gold {
  background-color: #c59d5f;
  color: #fff;
  border: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #b28b50;
  transform: scale(1.03);
}

.btn-outline-dark.btn-sm.rounded-circle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header .btn-close {
  filter: invert(50%);
}
  
 
.scroll-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 9999;

  /* Fondo con gradiente radial */
  background: 
    radial-gradient(800px 200px at 10% 20%, rgba(233, 30, 99, 0.15), transparent 60%),
    radial-gradient(600px 150px at 90% 80%, rgba(233, 30, 99, 0.15), transparent 70%),
    linear-gradient(135deg, #e91e63, #c2185b);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  
}
 




/* Mostrar cuando hay scroll */
.scroll-up.show {
  opacity: 1;
  pointer-events: auto;
}

/* Hover con brillo suave */
.scroll-up:hover {
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(203,163,79,0.6);
}


/* --- Menú fijo --- */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Cuando haces scroll, cambia levemente el fondo */
.sticky-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}


/* --- NUEVO DISEÑO DE PRODUCTOS --- */
.product-card-modern {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

.product-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-image {position: relative; overflow: hidden;}
.product-image img {width: 100%; height: auto; display: block; transition: transform 1.5s ease, opacity 0.5s ease;}
.product-image .img-hover {position: absolute; top: 0; left: 0; opacity: 0;}

/* ----- Tarjeta del producto ----- */
.product-card-modern {position: relative; overflow: hidden; border: none; background: #fff; border-radius: 12px; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.1);}
.product-card-modern:hover {box-shadow: 0 6px 18px rgba(0,0,0,0.2); transform: translateY(-3px);}
.product-image {position: relative; overflow: hidden; border-radius: 12px 12px 0 0;}
.product-image img {width: 100%; height: auto; display: block; transition: opacity 0.6s ease, transform 0.6s ease; cursor: pointer;}
.product-image .img-main {opacity: 1;}
.product-image .img-hover {position: absolute; top: 0; left: 0; opacity: 0;}
.product-image:hover .img-main {opacity: 0; transform: scale(1.05);}
.product-image:hover .img-hover {opacity: 1; transform: scale(1.05);}

/* ----- Botón de Comprar ----- */
.quick-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #d4b24f;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 18px 50px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  cursor: pointer;
}

  .quick-view-btn .btn-text,.quick-view-btn .btn-icon {position: absolute; transition: all 0.3s ease;}
  .quick-view-btn .btn-icon {opacity: 0; transform: scale(0);}
  .quick-view-btn .btn-text {opacity: 1; transform: scale(1);}

  .product-image:hover .quick-view-btn {opacity: 1; transform: translate(-50%, -50%) scale(1);}
  .quick-view-btn:hover {background: #b8923f; transform: translate(-50%, -50%) scale(1.1);}
  .quick-view-btn:hover .btn-text {opacity: 0; transform: scale(0);}
  .quick-view-btn:hover .btn-icon {opacity: 1; transform: scale(1.2);}

  .discount-badge {position: absolute; top: 12px; left: 12px; background: #b23a48; color: #fff; padding: 6px 10px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;}

  .product-info {padding: 14px 10px 18px; text-align: center;}
  .product-title {font-size: 0.95rem; color: #333; font-weight: 600; margin-bottom: 6px;}
  .product-prices {display: flex; justify-content: center; gap: 8px; align-items: baseline;}
  .old-price {color: #888; text-decoration: line-through; font-size: 0.9rem;}
  .new-price {color: #b23a48; font-weight: 700; font-size: 1rem;}

footer{border-top: 1px solid rgba(52,58,64,0.05);}

/* ===== POPUP SUSCRIPCIÓN ===== */
  .popup-overlay {position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease;}
  .popup-overlay.active {opacity: 1; visibility: visible;}
  .popup-container {background: #fff; border-radius: 12px; max-width: 900px; width: 90%; display: flex; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.2); position: relative; animation: slideUp 0.5s ease;}

  .popup-close {position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 26px; cursor: pointer; color: #444;}
  .popup-content {display: flex; width: 100%;}
  .popup-text {flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center;}
  .popup-text h2 { font-weight: 600; letter-spacing: 2px; margin-bottom: 15px; color: #222;}
  .popup-text p {color: #555; font-size: 15px; margin-bottom: 25px;}
  .popup-text form {display: flex; border: 1px solid #ccc; border-radius: 25px; overflow: hidden;}
  .popup-text input {flex: 1; border: none; padding: 12px 18px; outline: none; font-size: 15px;}
  .popup-text button {background: #222;color: #fff; border: none; padding: 0 20px; cursor: pointer; transition: background 0.3s ease;}
  .popup-text button:hover {background: #444;}
  .popup-image { flex: 1;}
  .popup-image img {width: 100%; height: 100%; object-fit: cover;}

  .section-title {font-family: "Playfair Display", serif; font-size: 2.8rem; font-weight: 600; color: #2c1a1d; text-transform: uppercase; letter-spacing: 2px; text-align: center; margin: 2rem 0 3rem; position: relative; display: inline-block;}
  .section-title::after {content: ""; display: block; width: 80px; height: 3px; background: linear-gradient(to right, #b58e5e, #e0c097); margin: 10px auto 0; border-radius: 3px; transition: width 0.3s ease;}
  .section-title:hover::after { width: 120px;}

  .premium-card { border-radius:14px; overflow:hidden; box-shadow:0 6px 20px rgba(0,0,0,0.06); }
  .premium-card .badge-top { position:absolute; top:12px; left:12px; padding:7px 11px; border-radius:12px; font-weight:600; color:#fff; }
  .premium-card .card-body { padding:18px; }
  .premium-price { color:#d64550; font-weight:700; font-size:1.05rem; }
  .premium-small { color:#6c6c6c; font-size:0.9rem; }
  .card-img-container {overflow: hidden; position: relative;}
  .card-img-container img {width: 100%; height: auto; transition: transform 0.6s ease, filter 0.6s ease;}
  .card-img-container:hover img {transform: scale(1.1); filter: brightness(1.1);}

 

.footer-section {
  background-color: #E91E63;
  color: #fff;
  padding: 60px 10%;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.footer-social a {
  color: #fff;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ffcc00;
}

.footer-column h3 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  color: #ddd;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-column a:hover {
  color: #ffcc00;
}

.footer-column p {
  font-size: 13px;
  color: #ddd;
  margin-bottom: 15px;
}

.footer-form label {
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}

.footer-form button {
  background: none;
  border: 1px solid #ccc;
  color: #fff;
  padding: 10px 15px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-form button:hover {
  background-color: #ffcc00;
  color: #2f455e;
  border-color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #bbb;
  margin-top: 40px;
}
 


    .btn-hero:hover {
      background: #e14d50;
    }
    
    .btn-whatsapp{
      position: fixed;
      left: 25px;
      bottom: 25px;
      width: 60px;
      height: 60px;
      z-index: 9999;
      background: #25D366;
      border-radius: 50%;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      transition: transform .18s ease, box-shadow .18s ease;
      text-decoration:none;
    }
    
    .btn-whatsapp i{
      color: #fff;
      font-size: 26px;
      line-height:1;
    }
    .btn-whatsapp:hover{
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 10px 26px rgba(0,0,0,0.2);
    }
    

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px; /* separa el logo de los íconos */
}

.footer-logo {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px; /* espacio entre íconos */
}

.footer-social a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ffcc00;
}


.brand-logo {
  height: 60px;        /* ajusta según el tamaño del logo */
  width: auto;
  object-fit: contain;
  border-radius: 6px;  /* opcional: bordes suaves */
}


.btn-outline-primary {
  border-radius: 8px;
  border: 2px solid #E91E63;   /* borde con tu color */
  color: #E91E63;              /* texto con tu color */
  background-color: transparent;
  transition: all 0.3s ease;   /* animación suave */
}

/* Hover: fondo lleno del mismo color */
.btn-outline-primary:hover {
  background-color: #E91E63;   /* fondo rosa */
  color: #fff;                 /* texto blanco */
  border-color: #E91E63;       /* mantiene el borde */
}

/* Focus o active (cuando se hace clic) */
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: #E91E63;
  color: #fff;
  border-color: #E91E63;
  box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.3); /* sutil brillo */
}

@media (max-width:991px){
  .hero-image{display:none}
  .brand-sub{display:none}
}

@media (max-width: 768px) {
  .popup-content {flex-direction: column;}
  .popup-image {display: none; }
  .popup-text {padding: 30px;}
}

@media(max-width:480px){
  .btn-whatsapp{ width:56px; height:56px; left:18px; bottom:18px; }
  .btn-whatsapp i{ font-size:22px; }
}



