/* -------------------------------------------------------------------------
    INFORMACIÓN BÁSICA DEL TEMA
   -------------------------------------------------------------------------*/

/*  

    Nombre: Tema Pulzzo
    Autor: Mark
    Descripcion: Visual para Ozoley, PC Perfumes y Pulzzo (landing)
    Versión: 1.0
*/


/* -------------------------------------------------------------------------
    Bloque 1: BASE GLOBAL
   -------------------------------------------------------------------------*/

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

body{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color:#f4f4f4;
  overflow-x:hidden;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }


/* -------------------------------------------------------------------------
    Bloque 2: ESQUELETO
   -------------------------------------------------------------------------*/

.home-hero{
  border-radius:16px;
  overflow:hidden;
  min-height:360px;
  display:flex;
  align-items:center;
  padding:56px;
  background:#e6e6e6;
  margin-bottom:48px;
}
.home-hero__inner{ max-width:700px; }
.home-hero h1{ font-size:3rem; line-height:1.05; margin:0 0 14px; }
.home-hero p{ margin:0 0 18px; font-size:1.1rem; }
.home-section{ margin-top:48px; }

.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
.card{
  border:1px solid #eaeaea;
  border-radius:14px;
  padding:18px;
  background:#fff;
}
@media (max-width:900px){
  .cards{ grid-template-columns:1fr; }
  .home-hero{ padding:32px; }
  .home-hero h1{ font-size:2.2rem; }
}


/* ==========================================================================
   3) HEADER (CLÁSICO + ISLA FLOTANTE)
   ========================================================================== */
.header-flotante{
position:fixed;
top:20px;
left:50%;
transform:translateX(-50%); /* Centrado perfecto */
width:95%;
max-width:1100px;
height:70px;

background-color:rgba(255,255,255,0.9);
backdrop-filter:blur(10px); /* Efecto cristal */
border-radius:50px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
color:#000;

display:flex;
justify-content:space-between;
align-items:center;
padding:0 40px;
z-index:9999; /* Siempre encima de todo */
transition:all .3s ease;
}

body.admin-bar .header-flotante{ top:52px; }

.nav-links{ display:flex; gap:30px; align-items:center; }
.nav-item{
  text-decoration:none;
  color:#000;
  font-size:1.1rem;
  font-weight:600;
  transition:transform .3s ease, color .3s ease;
}
.icon-container{ display:flex; gap:25px; }
.nav-icon{
  color:#000;
  font-size:1.2rem;
  cursor:pointer;
  transition:transform .3s ease, color .3s ease;
}
.nav-item:hover,
.nav-icon:hover{
  transform:scale(1.15);
  color:#555;
}
@media (max-width:768px){
  .header-flotante{ width:92%; padding:0 20px; height:60px; top:10px; }
  .nav-links{ display:none; }
  body.admin-bar .header-flotante{ top:20px; }
}

/* -------------------------------------------------------------------------
    Bloque 4: BANNER DESLIZANTE (INICIO)
   -------------------------------------------------------------------------*/

.hero-slider{
  position:relative;
  width:100%;
  height:65vh;
  overflow:hidden;
  background-color:#000;
}
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1s ease-in-out;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.slide.active{ opacity:1; z-index:1; }

.slide-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  z-index:-1;
}
.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.4);
  z-index:0;
}
.slide-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding:20px;
  max-width:800px;
  transform:translateY(30px);
  opacity:0;
  transition:all .8s ease .5s;
}
.slide.active .slide-content{
  transform:translateY(0);
  opacity:1;
}
.slide-title{
  font-size:4rem;
  font-weight:700;
  margin-bottom:5px;
  letter-spacing:2px;
  text-transform:uppercase;
  text-shadow:2px 2px 10px rgba(0,0,0,0.5);
}
.slide-phrase{
  font-size:1.2rem;
  margin-bottom:25px;
  font-weight:300;
  letter-spacing:1px;
}
.cta-button{
  display:inline-block;
  padding:10px 30px;
  background-color:#fff;
  color:#000;
  text-decoration:none;
  font-size:1rem;
  font-weight:bold;
  border-radius:30px;
  transition:all .3s ease;
  text-transform:uppercase;
  letter-spacing:1px;
}
.cta-button:hover{
  background-color:#000;
  color:#fff;
  transform:translateY(-5px);
  box-shadow:0 10px 20px rgba(0,0,0,0.3);
  border:1px solid #fff;
}
.slider-dots{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:15px;
  z-index:10;
}
.dot{
  width:10px;
  height:10px;
  background-color:rgba(255,255,255,0.5);
  border-radius:50%;
  cursor:pointer;
  transition:background-color .3s ease, transform .3s ease;
}
.dot.active{
  background-color:#fff;
  transform:scale(1.2);
}
@media (max-width:768px){
  .hero-slider{ height:60vh; }
  .slide-title{ font-size:2rem; }
  .slide-phrase{ font-size:.9rem; }
  .cta-button{ padding:10px 25px; font-size:.8rem; }
}

/* -------------------------------------------------------------------------
    Bloque 5: SECCIONES (MAS VENDIDOS/DESRUBRE) - INICIO
   -------------------------------------------------------------------------*/

.titulo-seccion h2{
  font-size:2.5rem;
  margin-bottom:15px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
}
.linea-decorativa{
  width:60px;
  height:4px;
  background-color:#000;
  margin:0 auto 50px auto;
  border-radius:2px;
}


/* --------------------------5.1 Más Vendidos------------------------------ */

.mas-vendidos-section{
  padding:60px 20px;
  background-color:#fff;
  text-align:center;
}
.grid-productos{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:30px;
  max-width:1200px;
  margin:0 auto;
}
.producto-card{
  background:#fff;
  border-radius:30px;
  padding:15px;
  transition:all .3s ease;
  border:1px solid #f0f0f0;
  box-shadow:0 10px 20px rgba(0,0,0,0.05);
  display:flex;
  flex-direction:column;
  align-items:center;
}
.producto-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}
.img-contenedor{
  width:100%;
  aspect-ratio:1/1;
  border-radius:20px;
  overflow:hidden;
  margin-bottom:15px;
}
.img-contenedor img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s;
}
.producto-card:hover img{ transform:scale(1.1); }

.info-producto h3{
  font-size:1.1rem;
  margin:10px 0 5px;
  font-weight:700;
  text-transform:uppercase;
}
.precio{
  font-size:1.1rem;
  color:#555;
  font-weight:500;
  margin-bottom:15px;
}
.btn-comprar{
  display:inline-block;
  padding:12px 35px;
  background-color:#000;
  color:#fff;
  text-transform:uppercase;
  font-size:.9rem;
  font-weight:bold;
  border-radius:50px;
  border:none;
  cursor:pointer;
  transition:all .3s ease;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
}
.btn-comprar:hover{ background-color:#333; transform:scale(1.05); }

/* --------------------------5.2 DESCUBRE------------------------------ */

.colecciones-section{
  padding:60px 20px;
  background-color:#fff;
  text-align:center;
}
.grid-colecciones{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(350px, 1fr));
  gap:30px;
  max-width:1200px;
  margin:0 auto;
}
.coleccion-card{
  display:block;
  position:relative;
  height:500px;
  overflow:hidden;
  border-radius:30px;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}
.bg-coleccion{
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  transition:transform .6s ease;
}
.coleccion-card:hover .bg-coleccion{ transform:scale(1.1); }
.info-coleccion{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.3);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:#fff;
  transition:background .3s ease;
}
.coleccion-card:hover .info-coleccion{ background:rgba(0,0,0,0.5); }
.info-coleccion h3{
  font-size:3rem;
  font-weight:900;
  margin-bottom:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  text-shadow:2px 2px 10px rgba(0,0,0,0.5);
}
.info-coleccion p{
  font-size:1.2rem;
  margin-bottom:30px;
  font-weight:400;
  text-shadow:1px 1px 5px rgba(0,0,0,0.5);
}
.btn-ver-marca{
  display:inline-block;
  padding:15px 40px;
  border:2px solid #fff;
  border-radius:50px;
  color:#fff;
  font-weight:bold;
  text-transform:uppercase;
  font-size:1rem;
  transition:all .3s ease;
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(5px);
}
.coleccion-card:hover .btn-ver-marca{
  background-color:#fff;
  color:#000;
  transform:translateY(-5px);
}

/* -------------------------------------------------------------------------
    Bloque 6: FOOTER
   -------------------------------------------------------------------------*/

.site-footer{
          background-color:#002347;
          color:#fff;
          padding-top:20px;
          padding-bottom:30px;
          font-size:15px;
          /* Asegurar que el footer empuje si es necesario */
          margin-top: auto; 
        }
        .site-footer a{ color:#fff; transition: opacity 0.3s; }
        .site-footer a:hover{ text-decoration:underline; opacity: 0.8; }

        .footer-top-bar{ text-align:center; margin-bottom:30px; padding-bottom:10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .back-to-top-link{ font-weight:bold; font-size:16px; display:inline-block; padding: 10px; }

        .footer-container{
          display:flex;
          flex-wrap:wrap;
          justify-content:space-around;
          max-width:1200px;
          margin:0 auto;
          align-items:flex-start;
          padding: 0 20px;
        }
        .footer-column{
          flex:1;
          min-width:200px;
          margin-bottom:20px;
          padding-right:20px;
        }
        .footer-heading{
          font-size:18px;
          font-weight:bold;
          margin-bottom:25px;
          color:#fff;
          text-transform: uppercase;
          letter-spacing: 1px;
        }
        .brand-block{ margin-bottom:20px; }
        .brand-name{ font-size:20px; font-weight:bold; margin:0 0 8px; }
        
        .social-icons{ display:flex; gap:15px; margin-top: 15px; }
        .social-icons i{ font-size:20px; cursor:pointer; }
        
        .footer-links{ list-style:none; padding:0; margin:0; }
        .footer-links li{ margin-bottom:15px; }
        .contact-info{ margin:0 0 15px; line-height:1.4; color: #ccc; }


/* -------------------------------------------------------------------------
    Bloque 7: PAGE-PCPERFUMES
   -------------------------------------------------------------------------*/

/* ESPACIO GENERAL */

.pagina-pcperfumes{
  color:#000;
  min-height:100vh;
  padding:20px;
}

/* ESPACIO ENTRE SECCIONES */

.pagina-pcperfumes .bloque-combos{

  padding:20px 10px;
  text-align:center;
}

.pagina-pcperfumes .bloque-arabes{

  padding:20px 10px;
  text-align:center;
}

.pagina-pcperfumes .bloque-disenador{

  padding:60px 10px;
  text-align:center;
}

.pagina-pcperfumes .bloque-decant{

  padding:60px 10px;
  text-align:center;
}


/* TITULO DE LAS SECCIONES */

.pagina-pcperfumes .titulo-destacado{
  font-size:2.5rem;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:40px;
  text-align: center;
  color:#fff;
}

/* ---------------------7.1 ESPACIO PARA EL HEADER-------------------------- */

.pagina-pcperfumes{
  min-height: 100vh;
  padding: 20px;
  padding-top: 120px;

/* --------------------------7.2 IMAGEN DE FONDO---------------------------- */

  background-image: url("https://pulzzo.top/wp-content/uploads/2026/01/Gemini_Generated_Image_ef22iuef22iuef22-1-3.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;

  .pagina-pcperfumes: :before{

    content:"";
    position: absolute;
    inset:0;
    background: rgba(0,0,0,0.35);
    z-index:0;
  }

  .pagina-pcperfumes > *{

    position: relative;
    z-index: ;
  }

  color: #000;

}

/* -----------------------7.3 CARRUSEL DE PRODUCTOS------------------------ */

.carousel-container{
  position:relative;
  max-width:1200px;
  margin:0 auto;
  padding:0 50px;
}
.carousel-track{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:20px 5px;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.carousel-track::-webkit-scrollbar{ display:none; }

.card-carousel {
  min-width: 350px;  /* ANTES 260px */
  max-width: 350px;  /* ANTES 260px */
  flex-shrink: 0;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  aspect-ratio: 1/1;
}

.card-carousel img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius: 18px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-carousel:hover img {
transform: scale(1:1);
}

.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background-color:#fff;
  border:1px solid #ddd;
  width:40px;
  height:40px;
  border-radius:50%;
  font-size:20px;
  cursor:pointer;
  z-index:10;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .3s;
}
.carousel-btn:hover{ background-color:#000; color:#fff; }
.carousel-btn.prev{ left:0; }
.carousel-btn.next{ right:0; }

/* ----------------------7.4 BOTON + PARA PRODUCTOS---------------------- */

.pagina-pcperfumes .btn-plus{
  position:absolute;
  bottom:15px;
  right:15px;
  width:35px;
  height:35px;
  background-color:#333;
  color:#fff;
  border:none;
  border-radius:50%;
  font-size:20px;
  font-weight:bold;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .3s, background .3s;
}
.pagina-pcperfumes .btn-plus:hover{ background-color:#ff7a00; transform:scale(1.1); color: #fff;}

/* prev/next */
.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background-color:#fff;
  border:1px solid #ddd;
  width:40px;
  height:40px;
  border-radius:50%;
  font-size:20px;
  cursor:pointer;
  z-index:10;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  display:flex;
  align-items:center; 
  justify-content:center;
  transition:all .3s;
}
.carousel-btn:hover{ background-color:#000; color:#fff; }
.carousel-btn.prev{ left:0; }
.carousel-btn.next{ right:0; }

/* =========================================================
   SECCIÓN COMBOS
   ========================================================= */

.pagina-pcperfumes .bloque-combos {
    padding: 35px 20px 100px 20px;
    text-align: center;
}

/* Grid de 3 columnas */
.grid-combos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Tarjeta Combo */
.card-combo {
    background: #e6e6e6; /* Fondo gris claro/blanco */
    border-radius: 35px; /* Bordes muy redondos */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Sombra suave */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card-combo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: #fff; /* Se ilumina a blanco puro al pasar mouse */
}

/* Imagen */
.img-combo-wrap {
    width: 100%;
    height: 250px; /* Alto fijo para la imagen */
    overflow: hidden;
}
.img-combo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card-combo:hover .img-combo-wrap img {
    transform: scale(1.1);
}

/* Información */
.info-combo {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.info-combo h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.3;
}

.info-combo p {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Botón de Precio (Píldora Gris) */
.pill-precio {
    background: #999; /* Gris oscuro */
    color: #fff;
    font-weight: bold;
    font-size: 1.4rem;
    padding: 10px 0;
    width: 100%; /* Ocupa todo el ancho disponible */
    border-radius: 15px; /* Bordes redondeados pero no tanto como la tarjeta */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background 0.3s;
}

.card-combo:hover .pill-precio {
    background: #000; /* Se vuelve negro al interactuar */
}

/* =========================================================
   NUEVO DISEÑO ARMA TU DECANT (DARK MODE)
   ========================================================= */

.pagina-pcperfumes .bloque-decant {
    padding: 60px 20px;
    text-align: center;
    color: #fff; /* Texto blanco general */
}

.pagina-pcperfumes .titulo-decant {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #fff;
    letter-spacing: 2px;
}
.pagina-pcperfumes .titulo-decant::after{
    content:""; display:block; width:80px; height:4px;
    background:#fff; margin:10px auto 0;
}

/* GRID PRINCIPAL DE 3 COLUMNAS */
.pagina-pcperfumes .grid-pasos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start; /* ESTO ES CLAVE: Alinea todo arriba */
}

/* AJUSTE DE COLUMNAS ESPECÍFICO */
.pagina-pcperfumes .columna-paso {
    display: flex;
    flex-direction: column;
    /* align-items: center; <-- BORRADO para no achicar el paso 1 */
}

/* Paso 1 (Izquierda): Que ocupe todo el ancho posible */
.pagina-pcperfumes .paso-izq .select-wrapper,
.pagina-pcperfumes .paso-izq .card-preview-decant {
    width: 100%;
}

/* Paso 2 (Centro): Este sí lo queremos centrado horizontalmente */
.pagina-pcperfumes .paso-centro {
    align-items: center;
}

/* Títulos de pasos (Paso 1, Paso 2...) */
.pagina-pcperfumes .paso-titulo {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

/* --- COLUMNA 1: SELECT + PREVIEW --- */
.select-wrapper {
    position: relative;
    margin-bottom: 20px;
}
.select-pill {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    background: #dcdcdc; /* Gris claro como la referencia */
    color: #000;
    font-weight: bold;
    font-size: 1rem;
    appearance: none; /* Quita flecha nativa */
    cursor: pointer;
    text-align: center;
}
.flecha-custom {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    pointer-events: none;
}

.card-preview-decant {
    background: #fff;
    border-radius: 20px; /* Bordes muy redondeados */
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-preview-decant img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Para que el perfume no se recorte */
    border-radius: 10px;
}

/* --- COLUMNA 2: VIALES (Verticales) --- */
.contenedor-viales {
    display: flex;
    justify-content: center;
    gap: 30px; /* Más espacio entre las dos píldoras */
    align-items: flex-end; /* Alinea al fondo para que crezcan hacia arriba */
}

.btn-vial {
    /* CRISTAL PREMIM */
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    
    border-radius: 100px; /* Píldora perfecta */
    padding: 15px 10px 25px 10px; /* Padding extra abajo para el precio */
    
    width: 110px; /* Más ancho */
    height: 400px; /* MUCHO MÁS ALTO (Antes era 280px) */
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Empuja todo hacia abajo */
    
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden; /* Brillo contenido */
}

/* Efecto Hover (Brillo sutil) */
.btn-vial:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Estado ACTIVO (Seleccionado) */
.btn-vial.activo {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid #fff;
    box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

/* CONTENEDOR DE LA IMAGEN (Para centrarla verticalmente en su espacio) */
.vial-img-container {
    flex-grow: 1; /* Ocupa todo el espacio sobrante arriba */
    display: flex;
    align-items: center; /* Centra la botella verticalmente */
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
    padding-top: 20px;
}

/* TAMAÑOS DE BOTELLAS AUMENTADOS */
.img-vial-peque { 
    height: 180px; /* Antes 100px -> AHORA GIGANTE */
    width: auto; 
    object-fit: contain;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5)); /* Sombra realista */
}
.img-vial-grande { 
    height: 240px; /* Antes 160px -> AHORA GIGANTE */
    width: auto; 
    object-fit: contain;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
}

/* TEXTOS (Labels y Precios) */
.label-ml {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.precio-vial {
    font-size: 1.2rem;   /* Un poco más discreto (antes 1.4rem) */
    color: #ffffff;
    font-weight: 600;    /* Semi-bold: se ve más nítido y "limpio" */
    margin-top: 10px;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', sans-serif; /* Fuente limpia */
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Sombra suave */
}

/* Quitamos la regla extra del estado activo ya que ahora siempre se verá remarcado */
.btn-vial.activo .precio-vial {
    text-decoration: none; /* Quitamos subrayado si lo tenía */
}

/* --- COLUMNA 3: CONTROLES --- */
.pagina-pcperfumes .paso-der {
    /* Quitamos el padding-top que bajaba el título */
    padding-top: 0; 
    
    /* Mantenemos el centrado horizontal */
    align-items: center;
    
    /* Aseguramos que ocupe altura para poder empujar botones */
    display: flex;
    flex-direction: column;
}

/* Empujamos SOLO los controles hacia abajo */
.pagina-pcperfumes .paso-der .contador-pill {
    /* Ajusta este valor (120px) si quieres que bajen más o menos */
    margin-top: 135px; 
}

/* Opcional: si quieres que los botones no sean tan anchos como la columna */
.pagina-pcperfumes .paso-der .contador-pill,
.pagina-pcperfumes .paso-der .btn-accion-gris {
    max-width: 320px; /* Ancho máximo para que se vean elegantes */
    width: 100%;
}

.contador-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #dcdcdc;
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 25px;
    width: 100%;
}
.contador-pill button {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}
.contador-pill span {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
}

.btn-accion-gris {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 50px;
    border: none;
    background: #dcdcdc; /* Gris claro */
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    text-transform: uppercase;
}
.btn-accion-gris:hover {
    background: #fff;
    transform: scale(1.03);
}

/* Mobile responsive */
@media (max-width: 900px) {
    .pagina-pcperfumes .grid-pasos {
        grid-template-columns: 1fr; /* Una columna en móvil */
        gap: 60px;
    }
    .btn-vial { min-height: 200px; width: 80px; }
}


/* ==========================================================================
   8) PÁGINA PULZZO (LANDING) — HTML ACTUAL
   ========================================================================== */

.landing-container{
  display:flex;
  flex-wrap:wrap;
  width:100%;
  max-width:1100px;
  background:#111;
  border:1px solid #333;
  box-shadow:0 0 50px rgba(255, 0, 0, 0.1);
}

.columna-visual{
  flex:1;
  padding:60px;
  background:url('https://images.unsplash.com/photo-1552374196-1ab2a1c593e8?q=80&w=800&auto=format&fit=crop') center/cover;
  position:relative;
  min-width:300px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.columna-visual::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.7);
}

.titulo-glitch,
.subtitulo-pulzzo,
.beneficios-lista{ position:relative; z-index:2; }

.titulo-glitch{
  font-size:4rem;
  line-height:.9;
  margin-bottom:20px;
  color:#fff;
  text-shadow:3px 3px 0px #ff0000;
}
.subtitulo-pulzzo{
  font-family:Arial, sans-serif;
  font-size:1.2rem;
  margin-bottom:30px;
  color:#ccc;
}
.beneficios-lista{
  list-style:none;
  font-family:Arial, sans-serif;
  padding:0;
}
.beneficios-lista li{ margin-bottom:10px; font-size:1rem; }

.columna-form{
  flex:1;
  padding:60px;
  background-color:#0a0a0a;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:300px;
  border-left:1px solid #333;
}
.caja-formulario{ width:100%; max-width:400px; }
.caja-formulario h2{
  color:#ff0000;
  font-size:2rem;
  margin-bottom:30px;
  text-transform:uppercase;
  letter-spacing:2px;
}

/* Nota: si Contact Form 7 no usa .campo-grupo, esto no aplica. */
.campo-grupo{ margin-bottom:20px; }
.campo-grupo label{
  display:block;
  font-family:Arial, sans-serif;
  font-size:.8rem;
  color:#666;
  margin-bottom:5px;
  font-weight:bold;
}
.campo-grupo input{
  width:100%;
  padding:15px;
  background-color:#1a1a1a;
  border:1px solid #333;
  color:#fff;
  font-size:1rem;
  outline:none;
  transition:all .3s;
}
.campo-grupo input:focus{ border-color:#ff0000; }

.btn-enviar-pulzzo{
  width:100%;
  padding:15px;
  background-color:#ff0000;
  color:#000;
  font-weight:bold;
  font-size:1.1rem;
  border:none;
  cursor:pointer;
  text-transform:uppercase;
  transition:background .3s, color .3s;
  margin-top:10px;
}
.btn-enviar-pulzzo:hover{ background-color:#cc0000; color:#fff; }

.legal-text{
  margin-top:15px;
  font-size:.7rem;
  color:#444;
  text-align:center;
  font-family:Arial, sans-serif;
}
@media (max-width:768px){
  .landing-container{ flex-direction:column; }
  .titulo-glitch{ font-size:3rem; }
  .columna-visual, .columna-form{ padding:40px 20px; }
}


/* ==========================================================================
   9) PÁGINA OZOLEY (ALINEADO A TU page-ozoley.php)
   ========================================================================== */
.pagina-ozoley{
  min-height:100vh;
  font-family:sans-serif;
  position:relative;

  /* header flotante */
  padding:100px 20px 60px;
  padding-top:60px;

  background-image:url("https://pulzzo.top/wp-content/uploads/2026/01/Fondo.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* ========== TITULOS OZ ========= */
.pagina-ozoley .titulo-seccion h2{
  font-size:3rem;
  font-weight:900;
  text-transform:uppercase;
  color:#000;
  margin-bottom:15px;
  letter-spacing:1px;
}
.pagina-ozoley .linea-decorativa{
  width:60px;
  height:4px;
  background-color:#000;
  margin:0 auto 50px auto;
  border-radius:2px;
}

/* ========== 9.1 TENDENCIAS ========= */
.pagina-ozoley .bloque-tendencias{
  padding:80px 20px;
  text-align:center;
}

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

/* Importante: en tu HTML el contenedor es .img-contenedor-oz */
.pagina-ozoley .img-contenedor-oz{
  width:100%;
  height:100%;
  border-radius:24px;
  overflow:hidden;
  background:#f8f8f8;
}
.pagina-ozoley .img-contenedor-oz img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;

}
.pagina-ozoley .card-ozoley:hover .img-contenedor-oz img{
  transform:scale(1.1);

}

/* Card tendencias (marco premium) */
.pagina-ozoley .card-ozoley {
    background: #ffffff;
    position: relative;
    
    /* 1. ELIMINAMOS RELLENO ANTIGUO */
    padding: 0 !important; 

    /* 2. BORDE NEGRO SUTIL (2px) */
    border: 2px solid #000000; 
    
    border-radius: 34px;
    overflow: hidden; /* Esto recorta la imagen en las esquinas */
    cursor: pointer;
    aspect-ratio: 1/1;

    /* Sombra suave */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto Hover */
.pagina-ozoley .card-ozoley:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: translateY(-5px);
    border-color: #333; /* Se oscurece un poco más al pasar el mouse */
}

/* Botón + tendencias */
.pagina-ozoley .btn-plus-ozoley{
  position:absolute;
  right:24px;
  bottom:24px;
  width:45px;
  height:45px;
  display:grid;
  place-items:center;

  border:none;
  border-radius:999px;
  background:rgba(0,0,0,0.90);
  color:#fff;

  font-size:28px;
  line-height:1;
  padding:0;

  box-shadow:0 10px 22px rgba(0,0,0,0.18);
  transition:background-color .2s ease, transform .2s ease;
  z-index:10;
}
.pagina-ozoley .btn-plus-ozoley:hover{
  background-color:#ff7a00;
  transform:scale(1.08);
}
.pagina-ozoley .btn-plus-ozoley:active{
  transform:scale(0.96);
}

/* ========== 9.2 CATÁLOGO ========= */
.pagina-ozoley .bloque-catalogo{
  padding:60px 20px;
  text-align:center;
}
.pagina-ozoley .barra-filtros{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:0 auto 40px;
  flex-wrap:wrap;
  gap:15px;
}

.pagina-ozoley .btn-filtro-principal,
.pagina-ozoley .btn-cat{
  padding:10px 30px;
  border-radius:50px;
  border:none;
  font-weight:bold;
  cursor:pointer;
  font-size:.9rem;
  transition:all .3s;
}
.pagina-ozoley .btn-filtro-principal{
  background-color:#000;
  color:#fff;
}
.pagina-ozoley .btn-cat{
  background-color:#fff;
  color:#333;
  margin-left:10px;
  border:1px solid #ddd;
}

/* Activo */
.pagina-ozoley .btn-cat.activo,
.pagina-ozoley .btn-filtro-principal.activo{
  background:#111;
  color:#fff;
  border-color:#111;
}
.pagina-ozoley .btn-cat:hover{
  border-color:#999;
}

/* Contenedor catalogo (existe en tu HTML) */
.pagina-ozoley .contenedor-catalogo{
  max-width:1200px;
  margin:0 auto;
}

/* Grid catalogo */
.pagina-ozoley .grid-catalogo{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:25px;
  margin:0 auto 34px;
}
@media (max-width:1100px){
  .pagina-ozoley .grid-catalogo{ grid-template-columns:repeat(3, minmax(0,1fr)); }
}
@media (max-width:800px){
  .pagina-ozoley .grid-catalogo{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

/* Card ropa premium */
.pagina-ozoley .card-ropa{
  background:#fff;
  border:none;
  padding:10px;
  border-radius:26px;
  overflow:hidden;
  position:relative;
  aspect-ratio:3/4;

  box-shadow:
    0 0 0 1px rgba(0,0,0,0.08),
    0 18px 40px rgba(0,0,0,0.10);

  transition:transform .25s ease, box-shadow .25s ease;
}
.pagina-ozoley .card-ropa:hover{
  transform:translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.12),
    0 26px 55px rgba(0,0,0,0.14);
}
.pagina-ozoley .card-ropa img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
  display:block;
}

/* Botón + ropa */
.pagina-ozoley .btn-plus-ropa{
  position:absolute;
  right:18px;
  bottom:18px;
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.18);
  background:rgba(255,255,255,0.88);
  color:#111;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;
  line-height:1;
  cursor:pointer;

  box-shadow:0 10px 20px rgba(0,0,0,0.12);
  transition:transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.pagina-ozoley .btn-plus-ropa:hover{
  background:#ff7a00;
  border-color:rgba(255,122,0,0.9);
  color:#fff;
  transform:translateY(-2px) scale(1.04);
}

/* Paginación (tu HTML usa .paginacion-ozoley + .paginacion-upgrade) */
.pagina-ozoley .paginacion-ozoley{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.pagina-ozoley .btn-pag{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.10);
  background:rgba(255,255,255,0.9);
  box-shadow:0 10px 20px rgba(0,0,0,0.10);
  transition:transform .15s ease, background .15s ease, color .15s ease;
  cursor:pointer;
  font-weight:900;
  font-size:1.1rem;
}
.pagina-ozoley .btn-pag:hover{
  background:#111;
  color:#fff;
  transform:translateY(-1px);
}

/* Indicador: tu HTML es #indicadorpag */
.pagina-ozoley #indicadorpag{
  font-weight:900;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.75);
  border:1px solid rgba(0,0,0,0.08);
}

/* =========================================================
   9.3 ARMA TU CONJUNTO (FINAL CORREGIDO)
   ========================================================= */

/* --- TÍTULO Y CONTENEDOR PRINCIPAL --- */
.pagina-ozoley .bloque-mixmatch {
    padding: 60px 20px;
    /* Fuente se define abajo en mixmatch-shell */
}

/* Forzamos al contenedor del título a centrar su contenido */
.pagina-ozoley .bloque-mixmatch .titulo-seccion {
    text-align: center;
    width: 100%;
    margin-bottom: 40px; 
}

/* Aseguramos que la línea decorativa también quede al medio */
.pagina-ozoley .bloque-mixmatch .linea-decorativa {
    margin-left: auto;
    margin-right: auto;
}

/* GRID PRINCIPAL (Alineación Izquierda - Derecha) */
.pagina-ozoley .mixmatch-shell {
    font-family: 'Segoe UI', sans-serif;
    display: grid;
    grid-template-columns: 320px 1fr; /* Preview fijo - Controles flexible */
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start; /* Alinea todo arriba */
}

/* --- COLUMNA IZQUIERDA: VISTA PREVIA --- */
.pagina-ozoley .mixmatch-preview {
    position: sticky;
    top: 100px; 
}

.pagina-ozoley .mixmatch-mini-title {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #666;
    text-align: center;
    font-weight: 700;
}

/* Tarjeta contenedora de las fotos */
.pagina-ozoley .outfit-card {
    background: #f2f2f2; 
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pagina-ozoley .outfit-slot {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 3/4; /* Formato vertical */
}

.pagina-ozoley .outfit-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pagina-ozoley .outfit-label {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(255,255,255,0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #333;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- COLUMNA DERECHA: CONTROLES --- */
.pagina-ozoley .mixmatch-controls {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Tarjeta de cada Paso */
.pagina-ozoley .step-card {
    background: #f2f2f2; 
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.pagina-ozoley .step-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.pagina-ozoley .step-head h3 { margin: 0; font-size: 1.2rem; font-weight: 900; }
.pagina-ozoley .step-head span { font-size: 0.9rem; color: #666; }

/* Pills (Botones de categoría) */
.pagina-ozoley .tabs-pastilla {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pagina-ozoley .btn-pill {
    background: #e0e0e0;
    color: #555;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.pagina-ozoley .btn-pill:hover { background: #d0d0d0; color: #000; }

.pagina-ozoley .btn-pill.activo {
    background: #fff; 
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: scale(1.05);
}

/* Select */
.pagina-ozoley .select-outfit {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    cursor: pointer;
}

/* Precio y Cantidad */
.pagina-ozoley .step-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pagina-ozoley .precio-outfit {
    font-size: 1.2rem;
    font-weight: 800;
    color: #333;
}

.pagina-ozoley .qty-control {
    background: #fff;
    padding: 5px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.pagina-ozoley .qty-control button {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    font-weight: bold;
    cursor: pointer;
}
.pagina-ozoley .qty-control button:hover { background: #e0e0e0; }
.pagina-ozoley .qty-control span { font-weight: 800; min-width: 20px; text-align: center; }

/* --- BOTONES DE ACCIÓN (GRISES POR DEFECTO) --- */
.pagina-ozoley .btn-primary, 
.pagina-ozoley .btn-link-ws,
.pagina-ozoley .summary-actions button {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: none;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 10px;
    
    /* POR DEFECTO: GRIS NEUTRO */
    background: #a0a0a0; 
    color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Botón "Agregar al carrito" un poco más oscuro por defecto */
.pagina-ozoley .btn-primary { background: #555; }
.pagina-ozoley .btn-primary:hover { background: #333; transform: translateY(-2px); }


/* ========================================================
   NUEVO: BOTONES LADO A LADO (ELIMINA ESPACIO VACÍO)
   ======================================================== */
.pagina-ozoley .botones-fila {
    display: flex;
    gap: 10px;        /* Espacio entre botones */
    margin-top: 15px;
    width: 100%;
}

.pagina-ozoley .botones-fila button {
    flex: 1;            /* Crecen al 50% cada uno */
    width: auto;        /* Anula el 100% global */
    margin-bottom: 0;   /* Sin margen abajo */
    padding: 12px 5px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* --- EFECTOS DE COLOR AL PASAR EL MOUSE --- */
.pagina-ozoley .hover-verde:hover {
    background: #00c853 !important; /* Verde vibrante */
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
    transform: translateY(-2px);
}

.pagina-ozoley .hover-naranja:hover {
    background: #ff6d00 !important; /* Naranja fuerte */
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(255, 109, 0, 0.4);
    transform: translateY(-2px);
}

.pagina-ozoley .hover-azul:hover {
    background: #00b0ff !important; /* Azul cielo vibrante */
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 176, 255, 0.4);
    transform: translateY(-2px);
}

/* --- BARRA TOTAL (Footer) --- */
.pagina-ozoley .summary-bar {
    background: #f2f2f2;
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pagina-ozoley .summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #333;
}
.pagina-ozoley .summary-total strong { font-size: 1.5rem; color: #000; }

.pagina-ozoley .summary-actions {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Añadir es más grande */
    gap: 15px;
}
.pagina-ozoley .summary-actions button { margin-bottom: 0; height: 100%; }

/* --- RESPONSIVE (Móvil) --- */
@media (max-width: 900px) {
    .pagina-ozoley .mixmatch-shell {
        grid-template-columns: 1fr; 
    }
    .pagina-ozoley .mixmatch-preview {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
    .pagina-ozoley .outfit-card {
        flex-direction: row; 
    }
}
/* ==========================================================================
   10) MODAL GLOBAL (VENTANA EMERGENTE)
   ========================================================================== */
.modal-overlay{
  display:none;
  position:fixed;
  inset:0;
  background-color:rgba(0,0,0,0.85);
  z-index:100001;
  justify-content:center;
  align-items:center;
  backdrop-filter:blur(5px);
  padding:20px;
}
.modal-contenido-nuevo{
  background-color:#ebebeb;
  width:95%;
  max-width:850px;
  border-radius:30px;
  padding:40px;
  padding-top:56px;
  position:relative;
  z-index:100002;
  box-shadow:0 30px 60px rgba(0,0,0,0.5);
  overflow:hidden;
  font-family:sans-serif;
}
.cerrar-modal{
  position:absolute;
  top:16px;
  right:16px;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,0.7);
  color:#222;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  z-index:5;
  box-shadow:0 6px 18px rgba(0,0,0,0.18);
  transition:transform .15s ease, background .15s ease;
}
.cerrar-modal:hover{ background:rgba(255,255,255,0.9); transform:scale(1.05); }
.cerrar-modal:active{ transform:scale(0.97); }

.modal-grid-nuevo{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:40px;
  align-items:flex-start;
}
.modal-img-container-nuevo img{
  width:100%;
  border-radius:20px;
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
}
.modal-info-nuevo h2{
  font-size:2.2rem;
  font-weight:900;
  margin-bottom:5px;
  line-height:1.1;
  text-transform:uppercase;
}
.modal-precio{
  font-size:1.5rem;
  color:#000;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:8px;
  margin-bottom:10px;
}

.tallas-container-visual{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:25px;
  margin-top:10px;
}
.talla-pill{
  appearance:none;
  user-select:none;
  padding:6px 20px;
  border:1px solid #333;
  border-radius:20px;
  font-weight:600;
  font-size:.95rem;
  cursor:pointer;
  background-color:transparent;
  color:#333;
  transition:all .2s ease;
}
.talla-pill:hover{ background-color:rgba(0,0,0,0.05); }
.talla-pill.selected{
  background-color:#444;
  color:#fff;
  border-color:#444;
}

.modal-acciones-compra{
  display:flex;
  gap:20px;
  margin-bottom:15px;
  align-items:center;
}
.contador-simple{
  display:flex;
  align-items:center;
  gap:18px;
  font-size:1.5rem;
  font-weight:bold;
  color:#000;
}
.contador-simple button{
  background:none;
  border:none;
  font-size:1.8rem;
  cursor:pointer;
  color:#000;
  padding:0;
}

.btn-modal-whatsapp-verde{
  width:100%;
  background-color:#3ddc97;
  color:#fff;
  padding:12px;
  border:none;
  border-radius:10px;
  font-size:1.1rem;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 4px 10px rgba(61, 220, 151, 0.4);
  transition:transform .2s, background .2s;
  margin-top:5px;
}
.btn-modal-whatsapp-verde:hover{
  background-color:#34c788;
  transform:translateY(-2px);
}

@media (max-width:800px){
  .modal-grid-nuevo{ grid-template-columns:1fr; text-align:center; }
  .modal-acciones-compra{ flex-direction:column; }
  .tallas-container-visual{ justify-content:center; }
  .modal-contenido-nuevo{ padding-top:64px; }
  .cerrar-modal{ top:12px; right:12px; width:38px; height:38px; }
}


/* ==========================================================================
   11) SIDE CART
   ========================================================================== */
.sidebar-carrito{
  position:fixed;
  top:0;
  right:-400px;
  width:350px;
  height:100vh;
  background:#ffffff;
  box-shadow:-5px 0 15px rgba(0,0,0,0.1);
  z-index:99999;
  transition:right .3s ease;
  display:flex;
  flex-direction:column;
  font-family:Arial, sans-serif;
}
.sidebar-carrito.activo{ right:0; }

.cart-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  z-index:99990;
  display:none;
  backdrop-filter:blur(2px);
}
.cart-overlay.activo{ display:block; }

.sidebar-header{
  background-color:#000;
  color:#fff;
  padding:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.sidebar-header h3{ margin:0; font-size:1.2rem; }
.cerrar-sidebar{ font-size:2rem; cursor:pointer; line-height:.8; }

.sidebar-items{ flex-grow:1; overflow-y:auto; padding:20px; }

.item-carrito-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid #eee;
  padding-bottom:15px;
  margin-bottom:15px;
}
.info-item h4{ font-size:.9rem; margin:0 0 5px; color:#333; }
.info-item .precio-item{ font-size:.85rem; color:#666; font-weight:bold; }

.controles-item{ display:flex; align-items:center; gap:8px; }
.btn-qty{
  background:#eee;
  border:none;
  width:25px;
  height:25px;
  border-radius:50%;
  cursor:pointer;
  font-weight:bold;
}
.btn-trash{ background:none; border:none; cursor:pointer; margin-left:5px; font-size:1.1rem; }

.sidebar-footer{
  padding:20px;
  background:#f9f9f9;
  border-top:1px solid #ddd;
}
.total-row{
  display:flex;
  justify-content:space-between;
  font-weight:bold;
  font-size:1.2rem;
  margin-bottom:15px;
  color:#000;
}
.btn-checkout-ws{
  width:100%;
  background:#25D366;
  color:white;
  padding:15px;
  border:none;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
  font-size:1rem;
  transition:background .3s;
}
.btn-checkout-ws:hover{ background:#128C7E; }

@media (max-width:500px){
  .sidebar-carrito{ width:85%; right:-100%; }
}


/* ==========================================================================
   12) TOAST (NOTIFICACIÓN)
   ========================================================================== */
#notificacion-toast{
  visibility:hidden;
  min-width:250px;
  background-color:#333;
  color:#fff;
  text-align:center;
  border-radius:50px;
  padding:16px;
  position:fixed;
  z-index:100003;
  left:50%;
  bottom:30px;
  transform:translateX(-50%);
  font-size:16px;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
  opacity:0;
  transition:opacity .3s, bottom .3s;
}
#notificacion-toast.mostrar{
  visibility:visible;
  opacity:1;
  bottom:50px;
}

.pagina-ozoley .card-ozoley.producto-card{
  padding:8px;        /* ya lo controla .card-ozoley */
  border:none;        /* evita borde global */
  box-shadow:none;    /* evita sombra global (ya hay sombra premium) */
  background:transparent;
}

/* Botón "Agregar al carrito" del modal (footer.php) */
.btn-gris-oscuro{
  flex: 1;
  padding: 12px 18px;
  border-radius: 14px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 900;
  letter-spacing: .5px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn-gris-oscuro:hover{
  background:#000;
  transform: translateY(-1px);
}
.btn-gris-oscuro:active{
  transform: scale(.98);
}

/* =========================================================
   MODAL GLOBAL – UPGRADE VISUAL (pisar inline sin romper)
   ========================================================= */

/* Overlay un poco más cinematográfico */
#modal-global.modal-overlay{
  background-color: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
}

/* Contenedor modal */
#modal-global .modal-contenido-nuevo{
  background: #f0f0f0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0,0,0,0.55);
  border: 1px solid rgba(0,0,0,0.08);
}

/* Grid */
#modal-global .modal-grid-nuevo{
  gap: 28px;
}

/* Imagen */
#modal-global .modal-img-container-nuevo img{
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Título / precio */
#modal-global .modal-info-nuevo h2{
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .6px;
}

/* Línea de precio: reemplaza el borde negro agresivo por algo más fino */
#modal-global .modal-info-nuevo > div[style*="border-bottom"]{
  border-bottom: 0 !important;
  display: inline-block;
  margin-bottom: 18px !important;
  padding-bottom: 0 !important;
}
#modal-global .modal-precio{
  display: block;
  margin-bottom: 5px;
}

/* Pills (opciones) más “pro” */
#modal-global .tallas-container-visual{
  gap: 10px;
  margin: 10px 0 18px;
}
#modal-global .talla-pill{
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.85);
  font-weight: 900;
  padding: 8px 16px;
}
#modal-global .talla-pill:hover{
  transform: translateY(-1px);
}
#modal-global .talla-pill.selected{
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Contador más compact */
#modal-global .contador-simple{
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.10);
  padding: 8px 10px;
  border-radius: 999px;
  gap: 14px;
}
#modal-global .contador-simple button{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 0;
  padding-bottom: 1px;
}

/* CTA WhatsApp del modal */
#modal-global .btn-modal-whatsapp-verde{
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .4px;
}

/* =========================================================
   SIDECART – UPGRADE VISUAL
   ========================================================= */
.sidebar-carrito{
  border-left: 1px solid rgba(0,0,0,0.08);
  box-shadow: -18px 0 45px rgba(0,0,0,0.12);
}

.sidebar-header{
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.item-carrito-row{
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.btn-qty{
  background: #f2f2f2;
  border: 1px solid rgba(0,0,0,0.10);
  transition: transform .12s ease, background .12s ease;
}
.btn-qty:hover{
  background:#e9e9e9;
  transform: translateY(-1px);
}

.btn-checkout-ws{
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .4px;
}

/* ======================================================================
   8. PÁGINA PULZZO (LANDING) – CENTRADO REAL + TEMA OSCURO/MISTERIOSO
   ====================================================================== */

.pagina-pulzzo{
  min-height: 100vh;
  background: #05050a;
  color: #fff;
}

/* Sección que centra el contenido */
.pagina-pulzzo .pulzzolanding{
  /* IMPORTANTE: centrado real */
  min-height: 100vh;

  display: grid;
  place-items: center;

  padding: 70px 18px;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(800px 500px at 50% 35%, rgba(120,60,255,0.18), rgba(0,0,0,0) 60%),
    radial-gradient(700px 450px at 20% 70%, rgba(0,180,255,0.12), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #05050a 0%, #070712 50%, #05050a 100%);
}

/* Contenedor principal (2 columnas) */
.pagina-pulzzo .pulzzo-shell{
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 28px;
  align-items: center;
}

/* Columna visual secundaria */
.pagina-pulzzo .pulzzo-visual{
  padding: 18px 8px;
  color: rgba(255,255,255,0.75);
}

.pagina-pulzzo .pulzzo-title{
  margin: 0 0 50px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: rgba(255,255,255,0.92);
  text-shadow:
    0 0 18px rgba(120,60,255,0.35),
    0 0 40px rgba(0,180,255,0.18);
}

/* 2. ENLACE (Únete a la lista de espera) */
.pagina-pulzzo .pulzzo-link-espera {
  /* AUMENTAMOS EL MARGEN INFERIOR DE 15px A 30px */
  margin-bottom: 30px;
  
  display: inline-block;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 1rem;
}

/* 3. SUBTÍTULO (Sé de los primeros...) */
.pagina-pulzzo .pulzzo-subtitle {
  /* AUMENTAMOS EL MARGEN INFERIOR DE 25px A 50px */
  margin: 0 0 50px;
  
  font-weight: 600;
  color: #fff;
  font-size: 1.1rem;
  max-width: 45ch;
}

/* 4. LISTA DE BENEFICIOS (Items separados) */
.pagina-pulzzo .pulzzo-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  
  /* AUMENTAMOS EL ESPACIO ENTRE CADA PUNTO DE 12px A 25px */
  gap: 25px; 
}

/* ======================================================================
   REFINAMIENTO COLUMNA DERECHA (FORMULARIO)
   ====================================================================== */

.pagina-pulzzo .pulzzo-card {
  /* CAMBIO: Color gris sólido similar a tu maqueta */
  background: #9e9e9e; 
  
  /* Quitamos bordes y transparencias antiguas */
  border: none;
  backdrop-filter: none;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5); /* Sombra fuerte para que flote */
  
  /* ... mantén el resto de propiedades de tamaño y padding ... */
  width: 100%;
  max-width: 480px;
  padding: 40px 35px;
  border-radius: 24px;
  position: relative;
  text-align: left;
}

/* Título de la tarjeta */
.pagina-pulzzo .pulzzo-card-title {
  margin: 0 0 30px 0; /* Más separación con el primer input */
  font-family: 'Segoe UI', sans-serif; /* Asegurar fuente limpia */
  letter-spacing: 3px;
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
  text-transform: uppercase;
  /* Alineado a la izquierda para coincidir con los inputs */
  text-align: left; 
}

/* 2. LIMPIEZA DE CONTACT FORM 7 (Reset de márgenes) */
.pagina-pulzzo .pulzzo-formwrap p {
  margin: 0;
  padding: 0;
}
.pagina-pulzzo .pulzzo-formwrap br {
  display: none; /* Ocultamos saltos de línea automáticos */
}

/* 3. ESTILO DE ETIQUETAS (LABELS) - El toque Premium */
/* Asumimos que tu CF7 tiene estructura: <label> Nombre <input...> </label> */
.pagina-pulzzo .pulzzo-formwrap label {
  display: block;
  font-size: 0.75rem;      /* Texto pequeño */
  text-transform: uppercase;
  letter-spacing: 1.5px;   /* Espaciado elegante */
  font-weight: 700;
  color: rgba(255,255,255,0.5); /* Gris suave */
  margin-bottom: 8px;      /* Espacio entre etiqueta e input */
  margin-top: 20px;        /* Espacio entre el input anterior y la nueva etiqueta */
}

/* Corrección para el primer label (que no tenga margen arriba) */
.pagina-pulzzo .pulzzo-formwrap p:first-child label {
  margin-top: 0;
}

.pagina-pulzzo .pulzzo-formwrap input[type="text"],
.pagina-pulzzo .pulzzo-formwrap input[type="email"],
.pagina-pulzzo .pulzzo-formwrap input[type="tel"] {
  
  /* CAMBIO: Fondo gris claro y texto oscuro */
  background: #cfcfcf; 
  color: #333; /* Texto oscuro para que se lea sobre gris claro */
  
  border: none; /* Sin bordes */
  border-radius: 8px; /* Bordes un poco menos redondeados */
  padding: 14px 18px;
  width: 100%;
  outline: none;
  font-weight: 600;
}

/* Color del texto de ayuda (placeholder) */
.pagina-pulzzo .pulzzo-formwrap input::placeholder {
  color: #777; /* Gris medio */
}

/* Color de las etiquetas (NOMBRE, CORREO...) */
.pagina-pulzzo .pulzzo-formwrap label {
  color: #333; /* Texto negro/gris oscuro */
  font-weight: 800;
}

/* Estado Focus (Al escribir) */
.pagina-pulzzo .pulzzo-formwrap input:focus {
  border-color: #783cff; /* Morado Pulzzo */
  background: rgba(0,0,0,0.6);
  box-shadow: 0 0 0 4px rgba(120, 60, 255, 0.15); /* Resplandor suave */
}

/* Placeholder (Texto de ayuda) */
.pagina-pulzzo .pulzzo-formwrap input::placeholder {
  color: rgba(255,255,255,0.25); /* Muy sutil */
  font-weight: 400;
}

/* 5. BOTÓN DE ACCIÓN (Más ancho y fuerte) */
.pagina-pulzzo .pulzzo-formwrap input[type="submit"] {
  background: #ffffff;
  color: #000;
  font-weight: 900;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  
  background: #fff; /* Blanco puro para máximo contraste */
  color: #000;
  
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pagina-pulzzo .pulzzo-formwrap input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

/* Microcopy (Texto pequeño abajo) */
.pagina-pulzzo .pulzzo-microcopy {
  margin-top: 20px;
  text-align: center; /* Este sí puede ir centrado o izquierda, probemos centrado para balancear */
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

/* Halo detrás */
.pagina-pulzzo .pulzzo-card::before{
  content:"";
  position:absolute;
  inset: -30px;
  background: radial-gradient(450px 220px at 50% 20%, rgba(120,60,255,0.22), rgba(0,0,0,0) 60%);
  filter: blur(18px);
  opacity: 0.9;
  z-index: -1;
}

.pagina-pulzzo .pulzzo-card-title{
  margin: 0 0 14px;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}

.pagina-pulzzo .pulzzo-formwrap{
  color: rgba(255,255,255,0.88);
}

/* CF7: inputs */
.pagina-pulzzo .pulzzo-formwrap input[type="text"],
.pagina-pulzzo .pulzzo-formwrap input[type="email"],
.pagina-pulzzo .pulzzo-formwrap input[type="tel"],
.pagina-pulzzo .pulzzo-formwrap select,
.pagina-pulzzo .pulzzo-formwrap textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.92);
  outline: none;
}

.pagina-pulzzo .pulzzo-formwrap input::placeholder,
.pagina-pulzzo .pulzzo-formwrap textarea::placeholder{
  color: rgba(255,255,255,0.45);
}

.pagina-pulzzo .pulzzo-formwrap input:focus,
.pagina-pulzzo .pulzzo-formwrap select:focus,
.pagina-pulzzo .pulzzo-formwrap textarea:focus{
  border-color: rgba(120,60,255,0.55);
  box-shadow: 0 0 0 3px rgba(120,60,255,0.18);
}

/* CF7: botón submit */
.pagina-pulzzo .pulzzo-formwrap input[type="submit"],
.pagina-pulzzo .pulzzo-formwrap button{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);

  background: rgba(255,255,255,0.92);
  color:#05050a;

  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.pagina-pulzzo .pulzzo-formwrap input[type="submit"]:hover,
.pagina-pulzzo .pulzzo-formwrap button:hover{
  transform: translateY(-1px);
  background: #fff;
}

.pagina-pulzzo .pulzzo-microcopy{
  margin: 12px 0 0;
  text-align: center;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
}

/* =========================================================
   PERSONALIZACIÓN MENSAJE DE ÉXITO (Contact Form 7)
   ========================================================= */
.pagina-pulzzo div.wpcf7-response-output {
    background-color: #66bb6a !important; /* Verde sólido suave */
    border: none !important;              /* Quitamos el borde lineal */
    color: #ffffff !important;            /* Texto blanco */
    
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0 0 0 !important;        /* Separación arriba */
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(102, 187, 106, 0.3); /* Resplandor verde suave */
}

/* Ocultar borde rojo de error si aparece, para mantener estilo limpio */
.pagina-pulzzo div.wpcf7-response-output.wpcf7-validation-errors {
    background-color: #ef5350 !important; /* Rojo si hay error */
    box-shadow: 0 5px 15px rgba(239, 83, 80, 0.3);
}

/* Mobile: foco total al form */
@media (max-width: 980px){
  .pagina-pulzzo .pulzzo-shell{
    grid-template-columns: 1fr;
  }
  .pagina-pulzzo .pulzzo-visual{
    display: none;
  }
}

/* =========================================================
   HEADER – quitar focus/outline de iconos (lupa / carrito)
   ========================================================= */

.header-flotante .nav-icon {
    outline: none;
    border: none;
    background: transparent;
}

.header-flotante .nav-icon:focus,
.header-flotante .nav-icon:focus-visible,
.header-flotante .nav-icon:active {
    outline: none;
    box-shadow: none;
    background: transparent;
}

        /* Contenedor del select (añadido para posicionar la flecha custom) */
        .pagina-pcperfumes .select-personalizado {
             position: relative;
             width: 100%;
             max-width: 300px;
             margin: 0 auto;
        }

/* Imagen Preview */
        .pagina-pcperfumes .img-paso1{
          width:100%;
          max-width:250px;
          aspect-ratio:1/1;
          object-fit:cover;
          border-radius:20px;
          box-shadow:0 10px 20px rgba(0,0,0,0.15);
          margin: 0 auto;
          transition: transform 0.3s ease;
        }
        .pagina-pcperfumes .img-paso1:hover {
            transform: scale(1.05);
        }

        .pagina-pcperfumes .titulo-destacado::after{
  content:"";
  display:block;
  width:60px;
  height:4px;
  background-color:#fff;
  margin:15px auto 0 auto;
  border-radius:2px;
}

.pagina-pcperfumes .card-carousel {
  background: #ffffff;
  /* Usamos border en lugar de padding para que actúe como muro sólido */
  border: 8px solid #ffffff; 
  padding: 0; /* Sin relleno, para que la imagen toque el borde */
  
  border-radius: 30px; /* Redondeo externo */
  overflow: hidden;    /* OBLIGATORIO: Esto recorta la imagen dentro del borde */
  
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  position: relative;
  
  /* Aseguramos que la tarjeta NO se mueva */
  transform: none !important; 
  transition: box-shadow 0.3s ease;
}

/* 1. Al pasar el mouse, la tarjeta SOLO cambia su sombra (se queda quieta) */
.pagina-pcperfumes .card-carousel:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  transform: none !important; /* Refuerzo para que no se mueva */
}

/* 2. Al pasar el mouse, la IMAGEN interna hace zoom */
.pagina-pcperfumes .card-carousel:hover img {
  transform: scale(1.15); /* La imagen crece, pero el borde la recorta */
}

/* =========================================
   ESTILOS DEL CARRITO Y NOTIFICACIONES
   ========================================= */

/* 1. El Contenedor del Icono */
.carrito-contenedor {
  position: relative;  /* CLAVE: Crea un punto de referencia para que el badge sepa dónde posicionarse */
  cursor: pointer;     /* Cambia el cursor a manita para indicar que es clicable */
  display: flex;       /* Asegura que el icono SVG/FontAwesome se comporte bien */
  align-items: center; /* Centra verticalmente si hay diferencias de altura */
}

/* 2. El Icono en sí (si usas FontAwesome o imagen) */
.carrito-contenedor i {
    font-size: 1.2rem; /* Tamaño del icono */
    color: #000;       /* Color del icono */
    transition: color 0.3s ease;
}

/* Efecto Hover opcional */
.carrito-contenedor:hover i {
    color: #555;
}

/* 3. La Notificación (Badge Rojo) */
.badge-contador {
  position: absolute;  /* Se sale del flujo normal y flota respecto a su padre (.carrito-contenedor) */
  
  /* Posicionamiento exacto */
  top: -8px;           /* Sube 8px hacia arriba desde el borde superior del contenedor */
  right: -8px;         /* Se mueve 8px a la derecha desde el borde derecho */
  
  /* Apariencia de círculo perfecto */
  width: 18px;         /* Ancho fijo */
  height: 18px;        /* Alto fijo (igual al ancho) */
  border-radius: 50%;  /* Convierte el cuadrado en un círculo */
  
  /* Estilo visual */
  background-color: #ff0000; /* Fondo rojo llamativo */
  color: #fff;               /* Número en blanco */
  border: 2px solid #fff;    /* Borde blanco grueso para separarlo visualmente del icono */
  
  /* Centrado del número dentro del círculo */
  display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center;     /* Centrado vertical */
  
  /* Tipografía del número */
  font-size: 10px;
  font-weight: bold;
  
  /* Asegura que no interfiera con clics si es necesario */
  pointer-events: none; 
}

/* =========================================================
   CARRITO DE COMPRAS (DISEÑO MAQUETA & ANIMACIÓN SUAVE)
   ========================================================= */

/* 1. EL OVERLAY (Fondo negro transparente) */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease; /* Suavidad pura */
}
.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar oculto por defecto */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px; /* Fuera de pantalla */
    width: 350px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease; /* Suavidad */
    /* ... otros estilos visuales ... */
}

/* Sidebar activo */
.cart-sidebar.active {
    right: 0; /* Entra a pantalla */
}

/* Overlay oscuro */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- A. HEADER (Gris Oscuro) --- */
.cart-header {
    background: #999999; /* Gris oscuro maqueta */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #888;
}

.cart-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Segoe UI', sans-serif;
}

.cart-close-btn {
    background: #ff6b6b; /* Rojo suave */
    color: #fff;
    border: none;
    width: 35px; height: 35px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s;
}
.cart-close-btn:hover { transform: scale(1.1); }

/* --- B. BODY (Contenido) --- */
.cart-body {
    flex: 1; /* Ocupa el espacio sobrante */
    padding: 20px;
    overflow-y: auto; /* Scroll si hay muchos items */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centra el mensaje de vacío */
    position: relative;
}

/* Mensaje Vacío (La pastilla gris) */
.cart-empty-pill {
    background: #a0a0a0;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    display: none; /* Se activa con JS si está vacío */
}
/* Clase auxiliar para mostrarlo */
.cart-empty-pill.visible { display: block; }

/* Lista de Items (si hay productos) */
#cart-items-list {
    width: 100%;
    align-self: flex-start; /* Los items van arriba */
}

/* --- C. FOOTER (Total y Botón) --- */
.cart-footer {
    background: #e6e6e6; /* Mismo gris del cuerpo */
    padding: 25px;
    border-top: 2px solid #333; /* La línea negra de la maqueta */
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.label-total { font-weight: 800; font-size: 1rem; color: #000; text-transform: uppercase; }
.amount-total { font-weight: 900; font-size: 1.2rem; color: #000; }

.cart-whatsapp-btn {
    width: 100%;
    background: #8edea8; /* Verde menta pastel (Maqueta) */
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    line-height: 1.4;
    transition: background 0.3s;
}
.cart-whatsapp-btn:hover {
    background: #7bdcb5;
}

/* =========================================================
   FORZADO DE ESTILOS MODAL
   ========================================================= */

/* 1. ELIMINAR SUBRAYADO DEL PRECIO (Mata bordes y decoraciones) */
#modal-global .modal-precio,
#modal-global .modal-info-nuevo > div { 
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
}

/* 2. CENTRAR SIGNOS - Y + (Usa Flexbox para centrado perfecto) */
#modal-global .contador-simple button {
    display: inline-flex !important; /* Obliga a comportarse como caja flexible */
    justify-content: center !important; /* Centrado horizontal */
    align-items: center !important; /* Centrado vertical */
    padding: 0 !important; /* Quita rellenos extraños */
    line-height: 1 !important; /* Evita saltos de línea */
    padding-bottom: 2px !important; /* Pequeño ajuste óptico */
}

/* AJUSTES FINALES DEL MODAL */

/* 1. Descripción: Texto limpio y legible */
#mg-descripcion {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: 5px;
}

/* 2. Precio: Sin subrayado y en negrita */
#modal-global .modal-precio {
    text-decoration: none !important;
    border-bottom: none !important;
    font-weight: 800;
}

/* 3. Botones - y +: Centrados perfectos */
#modal-global .contador-simple button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 35px;
    height: 35px;
    padding: 0 !important;
    padding-bottom: 3px !important; /* Pequeño ajuste para alinear el símbolo */
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
}
#modal-global .contador-simple button:hover {
    background: #f0f0f0;
    border-color: #bbb;
}

/* =========================================================
   FORZADO DE ESTILOS OZOLEY (Borde Negro Sutil)
   ========================================================= */

/* 1. LA TARJETA (El Marco Negro) */
.pagina-ozoley .card-ozoley {
    position: relative;
    background: #fff;
    
    /* ELIMINAR CUALQUIER ESPACIO INTERNO */
    padding: 0 !important; 
    
    /* BORDE NEGRO SUTIL */
    border: 5px solid #fff !important; 
    
    /* DARLE FORMA */
    border-radius: 30px !important;
    overflow: hidden !important; /* Recorta lo que sobra */
    aspect-ratio: 1/1;
    
    /* SOMBRA SUAVE */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

/* Hover */
.pagina-ozoley .card-ozoley:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #333 !important;
}

/* 2. EL CONTENEDOR DE LA IMAGEN (Debe llenar todo el hueco) */
.pagina-ozoley .img-contenedor-oz {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    
    /* IMPORTANTE: Quitar redondeo interno para que pegue con el borde negro */
    border-radius: 0 !important; 
}

/* 3. LA IMAGEN EN SÍ */
.pagina-ozoley .img-contenedor-oz img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Cubre todo el espacio sin deformarse */
    display: block !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Zoom suave al pasar el mouse */
.pagina-ozoley .card-ozoley:hover .img-contenedor-oz img {
    transform: scale(1.1);
}

/* =========================================
   ESTILOS DEL CARRITO LATERAL (FIX FINAL)
   ========================================= */

/* 1. Contenedor Principal */
#cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;      /* OBLIGATORIO: Ocupa toda la altura de pantalla */
    max-height: 100vh;
    background: #fff;
    z-index: 999999;    /* Muy alto para tapar todo lo demás */
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    
    /* LA CLAVE FLEXBOX: */
    display: flex;
    flex-direction: column; /* Columna vertical estricta */
}

/* Estado activo */
#cart-sidebar.active {
    right: 0;
}

/* 2. Cabecera (Header) */
.cart-header {
    background: #333;
    color: #fff;
    /* Ajustamos padding para que el texto baje y respire */
    padding: 25px 20px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0; /* Evita que se aplaste */
}

.cart-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

.cart-close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem; /* Un poco más grande la X */
    cursor: pointer;
    line-height: 1;
}

/* 3. Cuerpo (Productos) */
.cart-body {
    padding: 20px;
    overflow-y: auto; /* Habilita scroll interno */
    
    /* ESTO EMPUJA EL FOOTER AL FONDO: */
    flex: 1; 
    
    /* Alineación de productos */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Todo pegado arriba */
    gap: 15px;
}

/* 4. Pie (Total y Botón) */
.cart-footer {
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
    padding: 20px;
    padding-bottom: 30px; /* Un poco más de espacio abajo */
    
    flex-shrink: 0; /* IMPORTANTE: No deja que se oculte */
    margin-top: auto; /* Candado extra para fijarlo al fondo */
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}

/* Botón WhatsApp */
.cart-whatsapp-btn {
    display: block;
    width: 100%;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cart-whatsapp-btn:hover {
    background: #1ebc57;
}

/* Elementos internos (Empty state, items) */
.cart-empty-pill {
    background: #eee;
    color: #777;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    margin: auto; /* Centrado automático si está vacío */
    width: fit-content;
}

/* Overlay */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Móvil */
@media (max-width: 480px) {
    #cart-sidebar { width: 85%; }
}