* {
  box-sizing: border-box;
}


body {
  margin: 0;
 font-family: 'Poppins', sans-serif;  
 background: #fff0f6;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}
.best-section {
  padding: 70px 0;
  background: #fff8fb;
  text-align: center;
}

.best-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.best-section h2::after {
  content: "";
  width: 60%;
  height: 3px;
  background: #ff4d6d;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}


/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

.header-left {
  gap: 15px;
}

.header-center {
  flex: 1;
  justify-content: center;
}

.header-right {
  gap: 20px;
}
.icons a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.logo {
  width: 120px; 
  height: auto;
  flex-shrink: 0;
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

@media (max-width: 768px) {

  .slogan {
    display: none;
  }

  .header-center {
    display: none;
  }

  .header {
    padding: 0 20px;
    height: 70px;
  }

}
.slogan-minimal {
    font-family: 'Poppins', sans-serif;
    font-size: 11px; /* Slogan más pequeño para que no compita */
    font-weight: 400;
    color: #92524f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* buscador y filtro*/
.search-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1; /* Ocupa el espacio central */
  justify-content: center;
}

/* Estilos de iconos dentro del header */
.icons {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 9px;
}
.icons a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease; 
}
.icons a:hover {
  background-color: #ffc8dd; 
  color: white;
  transform: translateY(-2px); 
}
#fav-count, #cart-count {
  background: #ff4d6d; 
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
  margin-left: 2px;
}
#logout-btn {
  background: none;
  border: 1px solid #ffc8dd;
  padding: 5px 10px;
  border-radius: 15px;
  cursor: pointer;
  font-family: Arial;
  font-weight: bold;
  transition: 0.3s;
}

#logout-btn:hover {
  background: #fec5bb;
  border-color: #fec5bb;
}
/*Perfil*/
/* Estilos para el menú desplegable */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    padding: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    overflow: hidden;
}

.dropdown-content a, .logout-link {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 14px;
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
}

.dropdown-content a:hover, .logout-link:hover {
    background-color: #fff0f3;
    color: #ff4d6d;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.arrow {
    font-size: 10px;
    margin-left: 5px;
}

/* DISEÑO DE LA PÁGINA "NOSOTROS" */
.about-hero {
  text-align: center;
  padding: 60px 30px;
  background-color: #36171d1a; 
  margin: 20px 0 40px 0;
  border-radius: 20px;
}

.about-hero h1 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  color: #ff4d6d;
  font-style: italic;
}

/* Cuadrícula de Historia */
.about-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
  padding: 0 30px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Sección de Valores (Tarjetas) */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  margin: 60px 0;
  padding: 0 20px;
}

.value-card {
  padding: 40px 20px;
  background: white;
  border-radius: 20px;
  border: 1px solid #fce4ec;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 77, 109, 0.1);
}

.value-card span {
  font-size: 45px;
  display: block;
  margin-bottom: 15px;
}

.value-card h3 {
  color: #ff4d6d;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* --- RESPONSIVE (Para celulares) --- */
@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }
  
  .values {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }
}
/* Estilo del botón de rayitas */
.menu-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* El menú lateral escondido */
.side-nav {
  height: 100%;
  width: 280px;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: -280px; /* Escondido a la izquierda */
  background-color: #fff;
  transition: 0.4s;
  padding-top: 60px;
  box-shadow: 5px 0 15px rgba(0,0,0,0.1);
}

/* Cuando el menú está activo */
.side-nav.active {
  left: 0;
}

/* Estilo de los links y botones dentro del menú */
.side-nav a, .side-nav button {
  padding: 15px 25px;
  text-decoration: none;
  font-size: 16px;
  color: #333;
  display: block;
  box-sizing: border-box;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

.side-nav a:hover, .side-nav button:hover {
  background-color: #fce4ec;
  color: #ff4d6d;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}


.overlay.active {
  display: block;
}






/*probado*/
.video-showcase {
  padding: 60px 8%;
 
  background: 
    linear-gradient(to bottom, #fff0f6fa, #fff0f6cb),
    url('../img/pettern.jpeg');

  background-repeat: repeat;
  background-size: auto, 200px;
}

.video-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.video-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.video-card {
  position: relative;
  width: 300px;
  height: 540px; /* formato vertical tipo reel */
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Overlay elegante */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}

/* Hover efecto */
.video-card:hover .overlay {
  opacity: 1;
}

.video-card:hover video {
  transform: scale(1.05);
}


/*look*/
.triple-banner-section {
  padding: 60px 0;
  background: linear-gradient(
    to bottom,
    #e8d8cc00 0%,
    #f3ebe5 40%,
    #ffffff 100%
  );}

.triple-container-full {
  display: flex;
  gap: 20px;
  width: 95%; /* Ocupa casi todo el ancho de la pantalla */
  max-width: 1600px; /* Tope para que no se vea raro en pantallas de cine */
  margin: 0 auto;
}

.banner-box-luxe {
  flex: 1;
  height: 500px;
  display: flex;
  flex-direction: column;
  border-radius: 35px; /* Bordes redondeados */
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(233, 180, 180, 0.07);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.banner-box-luxe:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(255, 77, 109, 0.2);
}

.banner-info-luxe {
  padding: 45px 30px;
  text-align: center;
  height: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-info-luxe h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 12px;
  color: #222;
}

.banner-info-luxe p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
  max-width: 85%;
}

.banner-img-luxe {
  width: 100%;
  height: 55%;
}

.banner-img-luxe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Degradado hacia arriba para fundirse con el color del cuadro */
  mask-image: linear-gradient(to top, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 85%, transparent 100%);
}

/* Colores de fondo por sección */
.pro-box { background-color: #f8f1f1; }  /* Tono neutro/nude */
.gift-box { background-color: #fef9e7; } /* Crema suave */
.skin-box { background-color: #e8f5e9; } /* Verde menta relajante */

.btn-luxe {
  background: #694d4d;
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-luxe:hover {
  background: #ff4d6d;
  letter-spacing: 1px;
}

/* Responsive para celulares */
@media (max-width: 1100px) {
  .triple-container-full { flex-direction: column; align-items: center; }
  .banner-box-luxe { width: 90%; height: 420px; }
}

/*looktarjetas*/
.look-modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.171); 
    backdrop-filter: blur(8px); 
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.look-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transition: background-color 0.5s ease;
    
    /* ESTO CENTRA EL CONTENIDO INTERNO */
    display: flex;
    flex-direction: column;
    align-items: center; 
}

/* GRID DE PRODUCTOS (Centrado) */
#look-products {
    display: flex; 
    flex-wrap: wrap;
    justify-content: center; 
    gap: 25px;
    margin-top: 30px;
    width: 100%;
}
/* LA X  */
.close-look {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    cursor: pointer;
    z-index: 2100;
}

.close-look:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* TARJETAS LUXE (Dentro del Modal) */
card-luxe:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(238, 213, 213, 0.05);
}

.card-luxe img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 15px 0;
}
/*  BOTÓN DE COMPRA TOTAL */
.look-total {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-add-all-luxe {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.btn-add-all-luxe:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}


/* MAIN */
.container {
  display: flex;
  padding: 20px;
  max-width: 1200px; /* Centra el contenido general */
  margin: 0 auto;
}

/*Buscador*/
.buscar{
  max-width: 500px; 
  width: 100%;       
  height: 46px;
  padding: 0 18px;
  border-radius: 25px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buscar:focus {
  border-color: #e6a5b4;   
  box-shadow: 0 0 6px rgba(230, 165, 180, 0.4);
}


/* FILTROS */
.filtro {
  width: 200px;        
  height: 46px;
  padding: 0 18px;
  border-radius: 25px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.filtro:focus {
  border-color: #e6a5b4;
  box-shadow: 0 0 6px rgba(230, 165, 180, 0.4);
}

/*Iniciar sesion y Perfil pq si*/
input {
  width: 100%;
  max-width: 300px; 
  padding: 12px 18px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 25px; 
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  background-color: #fff;
}


input:focus {
  border-color: #ffc8dd;
  box-shadow: 0 0 8px rgba(255, 200, 221, 0.6);
  transform: scale(1.02);
}

/* Botón de entrar/guardar */
#btnLogin, #btnRegister, #btnGuardar {
  background: #000; 
  color: white;
  padding: 12px 35px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

#btnLogin:hover, #btnRegister:hover, #btnGuardar:hover {
  background: #ff4d6d; /* Cambia a rosa al pasar el mouse */
  letter-spacing: 1px;
}

#perfilNombreInput, #perfilCorreoInput, 
#perfilDireccionInput, #perfilTarjetaInput {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 15px;
    border: 1px solid #ddd;
    display: block; /* Uno debajo del otro */
}

/*marca*/
/* La tira de marcas */
.brand-menu-sticky {
    position: sticky;
    /* Ajusta este número: si tu header mide 70px de alto, aquí pon 70px */
    top: 80px; 
    z-index: 990; /* Un poquito menos que el header para que no se encime si hay sombras */
    background: rgba(243, 131, 193, 0.664);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 5px 0;
    height: 60px; /* Un poquito más alta para logos más grandes */
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
}

/* El carrusel interno */
.brand-carousel-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Más espacio entre logos */
    width: 55%;
    padding: 0 30px;
}

/* Los logos individuales */
.brand-item-mini {
    cursor: pointer;
    transition: 0.3s ease;
    flex-shrink: 0;
}


.todo-btn {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #333;
    border-right: 1px solid #c0568b;
    padding-right: 20px;
}
/* Estilo del texto "Elije tu marca" */
.brand-instruction {
    text-align:center;
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 22%;
}

/* Logos más grandes y centrados */
.brand-item-mini img {
    height: 45px !important; /* Forzamos un tamaño mayor */
    width: auto;
    filter: grayscale(100%); /* Empiezan en gris */
    opacity: 0.5;
    transition: all 0.3s ease;
}

/* Cuando pasas el mouse o cuando está SELECCIONADA */
.brand-item-mini:hover img,
.brand-item-mini.selected img {
    filter: grayscale(0%); /* Se pintan con su color original / negro */
    opacity: 1;
    transform: scale(1.15); /* Crecen un poquito */
}

/* Ajuste para el botón "TODO" */
.brand-item-mini.todo-btn.selected {
    color: #000000;
    border-bottom: 2px solid #111111;
}


/* Ocultar scrollbar */
.brand-menu-sticky::-webkit-scrollbar {
    display: none;
}
/*categoria*/
.category-menu button.active {
  color: #ff4d6d;
}

.category-menu button.active::after {
  width: 100%;
}

.category-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px 0;
}

.category-menu button {
  background: none;
  border: none;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  position: relative;
}

.category-menu button::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ff4d6d;
  transition: 0.3s;
}

.category-menu button:hover::after {
  width: 100%;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    background: #fff; /* Fondo blanco limpio para que resalten los productos */
}

/* La Tarjeta */
.product-card-luxe {
    position: relative;
    background: #ffffff;
    border: 1px solid #f2f2f2;
    display: flex;
    flex-direction: column;
    text-align: left; /* TODO A LA IZQUIERDA */
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card-luxe:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* Imagen del producto */
.img-container {
    width: 100%;
    height: 250px; /* Altura fija para que todas sean iguales */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff; /* Fondo blanco por si la imagen es pequeña */
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
}

.img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ajusta la imagen al cuadro sin deformarla */
    transition: transform 0.5s ease;
}

/* Efecto de zoom suave al pasar el mouse, muy estilo Maybelline */
.product-card-luxe:hover .img-container img {
    transform: scale(1.1);
}

/* El Corazón de Favoritos (Arriba Derecha) */
.heart-fav {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 26px;
    color: #e0e0e0; /* Gris elegante cuando no es fav */
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.heart-fav:hover {
    transform: scale(1.2);
}

.heart-fav.active {
    color: #ff4d6d !important; /* Rosa Luxe */
    transform: scale(1.2);
    animation: heartbeat 0.4s linear;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.1); }
}
/* Información del Texto */
.info-luxe {
padding: 15px;
    flex-grow: 1; /* Esto ya lo tienes, pero asegúrate de que el contenedor padre sea flex */
    display: flex;
    flex-direction: column;
}

.info-luxe h4 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    line-height: 1.3;
}

.subtitle-luxe {
    font-size: 11px;
    color: #888;
    margin: 5px 0 10px 0;
    font-weight: 400;
}

.price-luxe {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

/* Botón de Compra (Barra inferior completa) */
.btn-buy-luxe {
   background: #441e1eab;
    color: #fff;
    border: none;
    width: 100%;
    padding: 18px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
    
    /* AÑADE ESTA LÍNEA */
    margin-top: auto; 
}
.btn-buy-luxe:hover {
    background: #ff4d6d;
}

/* Animación de latido para el corazón */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1.2); }
}

/* Ajuste para los enlaces */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.products {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  padding-left: 20px;
}

/* ESTILOS PARA EL CARRITO (DOS COLUMNAS Y CENTRADO) */
.btn-vaciar {
  background: transparent;
  border: none;
  color: #888;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.btn-vaciar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #ff4d6d;
  transition: 0.3s;
}

.btn-vaciar:hover {
  color: #ff4d6d;
}

.btn-vaciar:hover::after {
  width: 100%;
}
/*vaciar*/
.cart-page-wrapper {
  display: flex;
  justify-content: center; 
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto; 
  padding: 0 20px;
}

.cart-main-content {
  flex: 2;
  min-width: 600px;
}

.cart-sidebar {
  flex: 1;
  position: sticky;
  top: 100px;
  min-width: 320px;
}

/* Estilo específico para items del carrito  */
#cart-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#cart-items .card {
  display: flex;
  flex-direction: row; 
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 15px 30px;
}

#cart-items .card img {
  width: 80px;
  height: 80px;
}

/* en el carrito y fav una animación*/
@keyframes pulse-animation {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse-animation 0.4s ease-out;
}

/* Visibilidad Contadores */
#cart-count[data-count="0"],
#fav-count[data-count="0"],
#cart-count:empty,
#fav-count:empty {
    display: none !important;
}
/* SUGERENCIAS MINI */
.sugerencias-sidebar {
  background: white;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  margin-top: 20px;
}

.sugerencias-sidebar .card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: none;
  border: 1px solid #fff0f3;
}

.sugerencias-sidebar .card img {
  width: 50px;
  height: 50px;
}

/* CARD GENERAL */

.card {
  background: white;
  padding: 20px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
/*abajo*/
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: 0.5s;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-10px);
}


.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.card button {
  margin-top: 8px;
  padding: 10px;
  width: 90%;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background: #f78fb7;
  color: white;
}

.card button:hover {
  background: black;
}
.shipping-box {
  background: #fff0f3;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
}

.shipping-bar {
  height: 8px;
  background: #ffe5ec;
  border-radius: 10px;
  margin-top: 8px;
  overflow: hidden;
}

.shipping-progress {
  height: 100%;
  background: #ff4d6d;
  width: 0%;
  transition: width 0.4s ease;
}


/* ESTILOS DE MIS PEDIDOS / HISTORIAL*/
.card-pedido {
  background: white;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #ff4d6d;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.card-pedido h3 {
  margin-top: 0;
  color: #333;
}

.card-pedido p {
  margin: 5px 0;
  font-size: 14px;
}

/* SECCIÓN DE TOTAL Y PAGO */
#total {
  font-size: 28px;
  color: #333;
  margin: 10px 0 20px 0;
  font-weight: bold;
}

.btn-pagar {
  background-color: #141313; 
  color: white;              
  padding: 15px;
  width: 100%;
  font-size: 18px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-pagar:hover {
  background-color: #ff4d6d; 
}



/*TOAST NOTIFICACIÓN */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: black;
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* DETALLE PRODUCTO */
.detail-card {
  display: flex;
  gap: 30px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(165, 101, 101, 0.2);
}

.detail-img {
  width: 250px;
  border-radius: 15px;
}

.desc {
  margin: 15px 0;
  font-size: 16px;
}

/* Carousel (SLIDER)*/
.slider {
  width: 70%;
  max-width: 15000px;
  height: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 25px auto;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
  animation: fade 0.8s ease-in-out;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

/* Botones */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.6);
  color: black;
  border: none;
  padding: 15px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.prev:hover, .next:hover {
  background: white;
}

.prev { left: 15px; }
.next { right: 15px; }

/* Animación */
@keyframes fade {
  from { opacity: 0.3; }
  to { opacity: 1; }
}
/* Estilos de Autenticación */
.auth-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.auth-box {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.auth-box.hidden {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.toggle-text {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

.toggle-text span {
  color: #ff4d6d;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
}
.footer-luxe {
    background-color: #ffffff;
    padding: 80px 20px 30px;
    border-top: 2px solid #ffc8dd;
    margin-top: 100px;
    border-radius: 60px 60px 0 0; 
    box-shadow: 0 -10px 30px rgba(255, 77, 109, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 25px;
    color: #333;
    position: relative;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff4d6d;
}

.footer-logo {
    width: 130px;
    margin-bottom: 20px;
}

.footer-description {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #666;
    transition: 0.3s;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #ff4d6d;
    padding-left: 8px;
}

/* Newsletter con Estilo */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    background: #fff0f3;
    border: 1px solid #ffc8dd;
    padding: 12px 15px;
    border-radius: 25px;
    font-size: 14px;
}

.newsletter-form button {
    background: #000;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #ff4d6d;
    transform: scale(1.05);
}

/* Redes Sociales */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #fff0f3;
    color: #ff4d6d;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #ff4d6d;
    color: white;
    transform: rotate(360deg);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #999;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        justify-content: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
}
/*compra finalpago*/
.checkout-container {
    background: #fdf2f5; 
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.checkout-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.checkout-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.checkout-section {
    margin-bottom: px;
    display: flex;
    flex-direction: column;
    align-items: center;            
    width: 100%;
}

.checkout-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    display: flex;
    align-items: center;
}

.step {
    background: #ff4d6d;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin-right: 10px;
}

/* Estilo de los Inputs */
.input-group input, .luxe-select, .payment-box input {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #f9f9f9;
    transition: 0.3s;
    font-size: 14px;
    box-sizing: border-box;
}

.input-group input:focus, .luxe-select:focus {
    outline: none;
    border-color: #ff4d6d;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 77, 109, 0.1);
}

.input-row {
    display: flex;
    gap: 10px;
}

/* Cajas de pago ocultas por defecto */
.payment-box {
    background: #fff0f3;
    padding: 20px;
    border-radius: 15px;
    margin-top: 10px;
    display: none; /* Se activa con JS */
    animation: fadeIn 0.4s ease;
}

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

/* Botón de Pago */
.btn-luxe-pay {
    background: #000;
    color: white;
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-luxe-pay:hover {
    background: #ff4d6d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 109, 0.3);
}

.secure-text {
    font-size: 12px;
    color: #aaa;
    margin-top: 15px;
}
/* Clase para ocultar elementos (cambiar entre login/registro) */
.hidden {
    display: none !important;
}
