* {
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #bbb;
    overflow-x: hidden;
}

a {
    cursor: pointer;
}

/*
.content {
    position: relative;
    z-index: 2;
    color: white;
} */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}


.image-container {
    position: relative;
    display: block;
    /* Cambiar a block para ocupar todo el ancho del contenedor */
    width: 100%;
    /* Asegúrate de que el contenedor ocupe todo el ancho disponible */
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
}

.image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container:hover .overlay {
    opacity: 1;
}

.image-container .overlay a {
    color: white;
    font-size: 24px;
}

.zoom {
    transition: transform 0.2s ease;
}

.zoom:hover {
    transform: scale(1.1);
}

.toggle-icon {
    cursor: pointer;
    float: right;
}

.ul-menu {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

ul.show {
    height: auto;
}

ul li a {
    text-decoration: none;
    color: #555;
    cursor: default;
    font-size: 12px;
}

.text-min {
    text-transform: lowercase;
}




/*************************************************/


.boton {
    display: inline-block;
    padding: 2px 15px;
    margin-bottom: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    background-color: #33b7eb;
    /* Celeste por defecto */
    border: none;
    border-radius: 6px;
    color: white;
    /* Texto blanco para mejor contraste */
    transition: background-color 0.3s, transform 0.1s;
}

.boton:hover {
    background-color: #666;
    /* Azul cuando se pone el mouse encima */
}

.boton:active {
    background-color: #33b7eb;
    /* Celeste cuando se hace clic */
    box-shadow: 0 5px #666;
    transform: translateY(2px);
}


.sombra {
    box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.3);
}

/* Transiciones */
#derecha {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

#derecha.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Contenedor del elemento */
.contenedor {
    overflow: hidden;
}

#izquierda {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#izquierda.visible {
    opacity: 1;
    transform: translateX(0);
}

#fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

#fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}



.product-card {
    display: flex;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 80%;
    max-width: 800px;
}

.product-images {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image {
    width: 100%;
    cursor: pointer;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.thumbnail-carousel {
    display: flex;
    align-items: center;
    margin-top: 10px;
    width: 100%;
    position: relative;
}

.thumbnail-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.thumbnail-image:hover {
    border-color: #000;
}

.product-info {
    padding: 20px;
    flex: 1;
}

.product-title {
    font-size: 1.5em;
    margin: 0 0 10px 0;
}

.product-description {
    margin: 10px 0;
}

.product-brand,
.product-category {
    color: #888;
    font-size: 0.9em;
}

.modal-style {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content-style {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    text-decoration: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}




.owl-carousel .item:hover {
    transform: scale(1.05); /* Escalar al pasar el mouse */
}






@keyframes oscillate {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-10px); /* Oscila a la izquierda */
    }
    100% {
        transform: translateY(-50%) translateX(0);
    }
}

.owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Asegúrate de que estén por encima del contenido */
}

.nav-btn {
    /*background: #969696;*/ /* Color de fondo de los botones de navegación */
    color: #fff; /* Color del texto */
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s; /* Transición suave para el hover */
    margin: 0 10px; /* Agregar un margen para separarlos del contenido */
    animation: oscillate 2s ease-in-out infinite; /* Agregar la animación */
}
/*
.nav-btn:hover {
    background: #9378ff; 
}
    */

/* Ajusta la posición de los botones fuera del contenido */
.owl-nav .nav-btn.prev {
    left: -40px; /* Ajusta el valor según sea necesario */
}

.owl-nav .nav-btn.next {
    right: -40px; /* Ajusta el valor según sea necesario */
}






.owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
    background: #ccc; /* Color de los puntos */
    width: 12px; /* Ancho de los puntos */
    height: 12px; /* Alto de los puntos */
    border-radius: 50%; /* Puntos redondos */
    transition: background 0.3s; /* Transición suave para el hover */
}

.owl-dots .owl-dot.active {
    background: #4a90e2; /* Color del punto activo */
}






.zoom-container {
    overflow: hidden;
    position: relative;
}

.zoom-image {
    display: block;
    width: 100%;
    transition: transform .3s ease;
}

.zoom-image:hover {
    transform: scale(1.7);
    cursor: zoom-in;
}










.btn-outline-success {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.btn-outline-success a {
    text-decoration: none;
    color: inherit;
}

.btn-outline-success .text-green {
    display: inline-flex;
    align-items: center;
}

.btn-outline-success .fa-whatsapp {
    margin-right: 8px;
    /* Espacio entre el icono y el texto */
}

.btn-outline-success::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.3));
    transform: rotate(0deg);
    transition: transform 0.5s ease-out;
}

.btn-outline-success:hover::before {
    transform: rotate(360deg);
}






.selected {
    font-weight: bold;
    color: rgb(138, 138, 138);
    /* Color rojo para la subcategoría seleccionada */
}

.toggle-icon {
    cursor: pointer;
}

.ul-menu {
    transition: height 0.3s ease;
    overflow: hidden;
    height: 0;
}

.ul-menu.expanded {
    height: auto;
}

/* Estilo base para los enlaces con la clase .hover-text */
.hover-text {
    color: black;
    /* Color base del texto */
    transition: color 0.3s ease;
    /* Transición suave para el cambio de color */
    text-decoration: none !important;
    /* Quitar el subrayado de enlace */
}

/* Estilo al hacer hover sobre los enlaces .hover-text */
.hover-text:hover {
    color: rgb(138, 138, 138);
    /* Color del texto al hacer hover */
    text-decoration: none !important;
    /* Asegurar que no haya subrayado al hacer hover */
}

/* Estilo para la subcategoría seleccionada */
.selected.hover-text-2 {
    color: rgb(138, 138, 138);
    /* Color rojo para la subcategoría seleccionada */
}

/* Estilo base para los enlaces con la clase .hover-text-2 */
.hover-text-2 {
    color: grey;
    /* Color base del texto */
    transition: color 0.3s ease;
    /* Transición suave para el cambio de color */
    text-decoration: none !important;
    /* Quitar el subrayado de enlace */
}

/* Estilo al hacer hover sobre los enlaces .hover-text-2 */
.hover-text-2:hover {
    color: rgb(138, 138, 138);
    /* Color del texto al hacer hover */
    text-decoration: none !important;
    /* Asegurar que no haya subrayado al hacer hover */
}







.oferta-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #00ff57;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.precio-tachado {
    color: grey;
    text-decoration: line-through;
    margin-right: 10px;
    font-size: 13px;
}

.precio-oferta {
    color: #00ff57;
    font-weight: bold;
    font-size: 16px;
}






.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    /* Asegúrate de que esté encima de otros elementos */
    cursor: pointer;
}

.whatsapp-button i {
    line-height: 60px;
    /* Centra el ícono verticalmente */
}



.i-inside {
    position: absolute;
    right: 10px;
    top: 30%;
    color: #000000;
}





.dropdown-menu {
    right: 0; /* Alinear a la derecha */
    left: auto; /* Desactivar la alineación a la izquierda */
}

.logo {
    max-width: 250px;
    min-width: 150px;
    margin-right: 50px;
    margin-left: 50px;
}

.navbar-nav {
    margin-left: auto; /* Empujar el menú hacia la derecha */
}

/* Login Link Styles */

.nav-login {
    margin-left: 20px;
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-login a {
    text-decoration: none;
    color: #fff;
    padding: 8px 15px;
    font-size: 80%;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-login a:hover {
    color: gray;
}




.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}