
/* Fondo con imagen difuminada y opaca */
.background-blur {
    position: absolute;
    inset: 0; /* top: 0; left: 0; right: 0; bottom: 0; */
    z-index: 0;
    pointer-events: none; /* Para no interferir con clics */
}

    .background-blur img {
        width: 100%!important;
        height: 100%!important;
        object-fit: cover!important;
        filter: blur(12px)!important;
        opacity: 0.2!important;
        transform: scale(1.3); /* Un poco más grande para cubrir el blur */
    }


.swiper-slide {
    position: relative;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

    .bg-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4; /* Ajusta la opacidad aquí */
    }

.slide-inner {
    position: relative;
    z-index: 1;
    padding: 1rem;
}

.swiper {
    width: 100%;
    height: auto;
}

/* Contenedor del contenido del slide */
.slide-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
    gap: 30px;
}

/* Slide completo */

.swiper-slide {
    padding: 40px 0;
    background: white;
    border-radius: 12px;
    border: 1px solid #ddd; /* Borde sutil */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Sombra suave */
    min-height: 400px;
}

.badge_btn_3 {
    font-size: 11px;
    font-weight: 700;
    background: #E6F8FF;
    display: inline-block;
    border-radius: 2px;
    padding: 5px 17px;
    color: #0893C8;
}


/* Info del producto */
.product-info {
    flex: 1;
    animation: fadeInLeft 0.8s ease-in-out;
}

    .product-info h2 {
        font-size: clamp(24px, 5vw, 36px);
        margin-bottom: 15px;
        color: #333;
    }

    .product-info p {
        font-size: clamp(14px, 2.5vw, 18px);
        margin: 6px 0;
        color: #666;
    }

    .product-info .price{
        font-size: clamp(18px, 3vw, 24px);
        color: #e91e63!important;
        font-weight: bold;
    }

.reciente {
    align-items: center !important;
    border-radius: 12px;
    margin-right: 10px;
    border: 1px solid #d5cccc;
    padding-bottom: 10px;
    background-color: white !important;
}

.card-destacado {
    background-color: white !important;
}


    .destacado .price, .reciente .price {
        font-size: 16px;
        color: #e91e63 !important;
        font-weight: bold;
    }

/* Imagen del producto */
.product-image {
    flex: 1;
    text-align: right;
    animation: fadeInRight 0.8s ease-in-out;
}

    .product-image img {
        max-width: 90%;
        max-height: 400px;
        object-fit: contain;
        border-radius: 10px;
        border: 1px solid #b7abab;
    }


.brand-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.75rem;
}

    .brand-item:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        background-color: #f8f9fa;
    }

.brand-img {
    border-radius: 0.75rem;
    max-height: 100px;
    object-fit: contain;
}

/* Animaciones */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive: apilar contenido en móvil */
@media (max-width: 768px) {
    .slide-inner {
        flex-direction: column;
        text-align: center;
        gap:0px;
    }

    .product-info {
        padding-bottom: 10px;
    }

        .product-info h2 {
            margin-bottom: 7px;
        }

    .product-image {
        text-align: center;
    }

        .product-image img {
            max-width: 95%;
            height: auto;
        }

    .swiper-slide {
        min-height: 200px;
    }

}
