* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bebas Neue', sans-serif;
    font-size: x-large;
}


.navbar {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #dbff47;

}

nav {
    flex: 1;
    text-align: center;
    word-spacing: 30px;


}


nav ul {
    display: inline-block;
    list-style-type: none;

}

nav ul li {
    display: inline-block;

    margin-right: 20px;

}

a {
    text-decoration: none;

    transition: font-size 0.5s;
    color: #000002;
}

a:hover {
    font-size: xx-large;
}

a img {
    transition: width 0.5s;
}

a img:hover:not(#categoriasDestacadas a img, #contenedorProductos a img, #rowRecomendados a img, #productosDestacados a img) {
    width: 150px;
}

#tituloTexto {

    text-decoration: none;
    font-weight: left;
    color: #000002;
    text-align: justify;
}

.container {
    max-width: 1500px;
    margin: auto;
    padding-left: 30px;
    padding-right: 30px;
}

#titulo {

    text-align: left;
    color: #000002;
    text-decoration: none;
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.col-2 {
    padding-left: 50px;
    padding-right: 50px;
    flex-basis: 50%;
    min-width: 300px;
}



.col-2 h1 {
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
}

#botonTitulo {
    display: inline-block;

    align-items: center;
    flex-wrap: wrap;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    justify-content: space-around;
    transition: transform 0.5s;
    animation: bounce infinite 3s;
    background: #dbff47;

}

#botonTitulo:hover {
    transform: translateX(5px);
    background: greenyellow;
}

.header {
    background: radial-gradient(#dbff40, #dbff46, #dbff47);
}

.contador {
    position: flex;
    font-size: 12px;
    border-radius: 50px;
    background: white;
    padding: 2px 4px;


}

#carrito {

    transition: font-size 0.5s;
}

#carrito:hover {
    font-size: 50px;
}

.categorias {
    margin: 70px 0;
}

.col-3 {
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}

.col-3 img {
    width: 100%;
}

.small-container {
    max-width: 1500px;
    margin: auto;
    padding-left: 30px;
    padding-right: 30px;

}

.col-4 {
    flex-basis: 25%;
    padding: 20px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}

.col-4 img {
    width: 100%;
    height: 100%;
}

.title {
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
}

.title::after {
    content: '';
    background: white;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}

#productosDestacados .small-container {
    background-color: #dbff47;
}

#productosDestacados .col-4 {
    box-shadow: 0 0 20px 0px #000002;
    padding: 40px 20px;
    cursor: pointer;
    transition: transform 0.5s;
}

#productosDestacados .col-4 img {
    box-shadow: 0 0 10px 0px white;

}

#productosDestacados .col-4:hover {
    transform: translateY(-10px);
}

#categoriasDestacadas .col-3 {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    cursor: pointer;
    transition: transform 0.5s;
}

#categoriasDestacadas .col-3:hover {
    transform: translateY(-10px);
}

#categoriasDestacadas .small-container {

    background: linear-gradient(to right, #ffffff, #f0f0f0, #ffffff);
}

#categoriasDestacadas .title::after {
    background: #dbff47;
}

#servicios .title::after{
    background: #dbff47;
}

#servicios img{
    border-radius: 30px;
}

#navBarContainer .row {
    max-width: 1200px;
    padding-right: 25px;
    padding-left: 25px;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #ffffff, #f0f0f0, #ffffff);

}

#navBarContainer .col-2 {
    padding-left: 50px;
    padding-right: 20px;
    align-content: center;
    text-align: justify;

}

#navBarContainer .col-2 img {
    padding: 0;
    width: 100%;
}

/* Fondo oscuro */


/* Contenedor del modal */
.modal-contenido {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 400px;
    border-radius: 8px;
}



.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Contenido del modal */
.modal-contenido {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow-heavy);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease-out;
    border: 1px solid var(--border-color);
}

/* Botón cerrar */
.cerrar {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-light);
}

.cerrar:hover {
    color: var(--danger-color);
    background: rgba(239, 68, 68, 0.1);
    transform: scale(1.1);
}

/* Título del modal */
.modal-contenido h2 {
    margin: 0 0 2rem 0;
    padding: 2rem 2rem 0 2rem;
    color: var(--text-color);
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, black, black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h4 {
    color: black;
    font-weight: normal;

}

.col-4 p {
    font-size: 14px;
}

.rating .fa-solid {
    color: #FFD43B;
}

.col-4:hover {
    transform: translateY(-5px);
}

/*--testimonios--*/

#testimonios {
    padding-top: 100px;
}

#testimonios .small-container {}

#testimonios .col-3 {
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.5s;
}

#testimonios .col-3:hover {
    transform: translateY(-10px);
}

#testimonios .col-3 img {
    width: 50px;
    margin-top: 20px;
    border-radius: 50%;
}

.fa.fa-quote-left {
    font-size: 34px;
    color: #dbff47;
}

.col-3 p {
    font-size: 12px;
    margin: 12px 0;
    color: #777;
}

#testimonios .col-3 h3 {
    font-weight: 600;
    color: #555;
    font-size: 16px;
}


/*--marcas--*/

#marcas {
    margin: 100px auto;
}

#marcas .col-5 {
    width: 160px;
}

#marcas .col-5 img {
    width: 100%;
    cursor: pointer;
    filter: grayscale(100%);
}

#marcas .col-5 img:hover {
    filter: grayscale(0%);
}

#productosPromocions .col-4 {
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.5s;
}

#productosPromocions .col-4:hover {
    transform: translateY(-10px);
}

#productosPromocions .small-container {
    background: linear-gradient(to right, #ffffff, #f0f0f0, #ffffff);
}


#productosPromocions .title::after {
    background: #dbff47;
}

/*--footer--*/
#footer .small-container {
    background: #dbff47;
    color: black;
    font-size: 14px;
    padding: 60px 0 20px;
}


#footer p {
    color: black;
}

#footer h3 {
    color: black;
}

.footer-col-1,
.footer-col-2,
.footer-col-3 {
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-col-1 {
    margin-left: 50px;
    flex-basis: 30px;
}

.footer-col-2 {
    flex: 1;
    text-align: center;
}

.footer-col-2 img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-col-3,
.footer-col-4 {
    flex-basis: 12%;
    text-align: center;
}

ul {
    list-style: none;
}

.app-logo {
    margin-top: 20px;
}

.app-logo img {
    transition: transform 0.5s;
    width: 50px;
}

.app-logo img:hover {
    transform: translateY(-5px);
}

.copyright {

    border: none;
    height: 1px;
    margin: 20px 0;
    background: #dbff47;
}

#footer hr {
    border: none;
    background-color: #000002;
    height: 1px;
    margin: 20px 0;
}

.copyright {
    text-align: center;
}

#menuBar {
    width: 28px;
    margin-left: 20px;
    display: none;

}



/*Todos los productos*/

.row-2 {
    justify-content: space-between;
    margin: 100px auto 50px;
}

select {
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #dbff47;
    margin: 5px;
    min-width: 200px;
    background-color: #fff;
    cursor: pointer;
}

select:focus {
    outline: none;
}

.pag-btn {
    margin: 0 auto 80px;
}

.pag-btn span {
    display: inline-block;
    border: 1px solid #dbff47;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.pag-btn span:hover {
    background: #dbff47;
    color: white;
}

#todosLosProductos .small-container {
    background: linear-gradient(to right, #ffffff, #f0f0f0, #ffffff);
}

#todosLosProductos .col-4 {
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.5s;
}

#todosLosProductos .col-4:hover {
    transform: translateY(-10px);
}



/*Producto individual*/

.producto-individual {
    margin-top: 80px;

}



.producto-individual .col-2 {
    padding: 20px;

}

.producto-individual h4 {
    margin: 20px 0;
    font-size: 22px;
    font-weight: bold;
}

.producto-individual select {
    display: block;
    padding: 10px;
    margin-top: 20px;
}

.producto-individual input {
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #dbff47;

}

input:focus {
    outline: none;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: gainsboro;
    box-shadow: var(--shadow-light);
    font-family: inherit;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(219, 255, 71, 0.2);
    transform: translateY(-1px);
}

input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover {
    border-color: var(--primary-dark);
}


.producto-individual .fa {
    color: #dbff47;
    margin-left: 10px;
}


.imagen-principal {
    width: 100%;
    height: 40rem;
    position: relative;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
}
.imagen-principal img{
    width: 55rem;
    height: 37rem;
    object-fit: contain;
    position: absolute;
    border-radius: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
}
@media(max-width:630px){
    .imagen-principal{
        height: 30rem;

    }
    .imagen-principal img{
        width: 90%;
        height: 100%;
        padding: 1rem;
    }
}
@media(max-width:375px){
    .imagen-principal{
        height: 25rem;
    }
}



.small-image-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 0.7rem;
}



.small-img-col {
    background: white;
    border: 0.3rem solid white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.small-img-col.active{
    border: 0.3rem solid #dbff47;
}

.small-img-col img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;

}

.product-down-animation{
    animation: down 0.5s ease;

}

@keyframes down {
    0%{
        top: -100%;
    }100%{
        top: 0%;
    }
}

#botonTituloContraentrega {
    display: inline-block;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    justify-content: space-around;
    transition: transform 0.5s;
    animation: bounce infinite 1s;
    background: #dbff47;
}

#botonTituloTarjeta {
    display: inline-block;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    justify-content: space-around;
    transition: transform 0.5s;
    animation: bounce infinite 1s;
    background: red;
}

#botonTituloTarjeta:hover,
#botonTituloContraentrega:hover {
    transform: translateX(10px);
}

#botonAñadirAlCarrito {
    display: inline-block;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    justify-content: space-around;
    transition: transform 0.5s;

    background: #dbff47;
}

#botonCarrito {
    display: inline-block;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    justify-content: space-around;
    transition: transform 0.5s;

    background: #dbff47;
}

#botonCarrito:hover {
    transform: translateX(10px);
}

#botonAñadirAlCarrito:hover {
    transform: translateX(10px);
}

#productosDestacados .row {
    overflow: hidden;


    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    margin: 0 auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100%;
}

input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.autorizacion-text {
    color: var(--text-color);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.autorizacion-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background-color: rgba(219, 255, 71, 0.1);
    border-radius: var(--radius);
    border: 1px solid rgba(219, 255, 71, 0.3);
    margin: 0.5rem 0;
}

.slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 120px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: fit-content;
}

.slide {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.col-5 {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.col-5 img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.slider:hover .col-5 img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}


#marcas .title::after {
    background: #dbff47;
}

#productosDestacados .slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 15px;
    padding: 30px 0;
}

#productosDestacados .slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

#productosDestacados .slide {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

#productosDestacados .slider .col-4 {
    flex: 0 0 280px;
    margin: 0 10px;
}



/* Pause animation on hover */
#productosDestacados .slider:hover .slider-track {
    animation-play-state: paused;
}
/* Product Detail Section Specific Styles */
#detalleProducto {
    margin-top: 80px;
    padding: 20px 0;
}

#detalleProducto .row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
}

#detalleProducto .col-2 {
    flex-basis: 48%;
    min-width: 300px;
    padding: 20px;
    box-sizing: border-box;
}

/* Images section (left column) */
#detalleProducto .col-2:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Product details section (right column) */
#detalleProducto .col-2:last-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#detalleProducto .col-2 h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 1rem 0;
    color: #000002;
}

#detalleProducto .col-2 h4 {
    margin: 15px 0;
    font-size: 1.75rem;
    font-weight: bold;
}

#detalleProducto .col-2 p {
    margin: 10px 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Product options styling */
#detalleProducto .product-options {
    margin: 20px 0;
}

#detalleProducto .product-options p {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 8px;
}

#detalleProducto .product-options select {
    display: block;
    width: 100%;
    max-width: 200px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding: 12px;
}

#detalleProducto .quantity-section {
    margin: 15px 0;
}

#detalleProducto .quantity-section label {
    display: inline-block;
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

#detalleProducto .quantity-section input {
    width: 80px;
    display: inline-block;
    vertical-align: middle;
    font-size: 1.1rem;
    padding: 8px;
}

/* Action buttons styling */
#detalleProducto .action-buttons {
    margin: 25px 0;
}

#detalleProducto .action-buttons a {
    display: block;
    margin-bottom: 15px;
    text-align: center;
}

/* Product details section */
#detalleProducto .product-details-section {
    margin-top: 30px;
}

#detalleProducto .product-details-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000002;
}

#detalleProducto .size-guide {
    margin-top: 20px;
}

#detalleProducto .size-guide img {
    max-width: 300%;
    height: auto;
    border-radius: 8px;
}

/* Responsive adjustments for product detail */
@media only screen and (max-width: 800px) {
    #detalleProducto .row {
        flex-direction: column;
        gap: 20px;
    }
    
    #detalleProducto .col-2 {
        flex-basis: 100%;
        min-width: auto;
        padding: 15px;
    }
    
    #detalleProducto .col-2 h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    #detalleProducto .product-options select {
        max-width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    #detalleProducto {
        margin-top: 60px;
    }
    
    #detalleProducto .col-2 {
        padding: 10px;
    }
    
    #detalleProducto .col-2 h1 {
        font-size: 1.75rem;
    }
    
    #detalleProducto .col-2 h4 {
        font-size: 1.25rem;
    }
    
    #detalleProducto .action-buttons a {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
}


.fixedButton {
    position: fixed;
    bottom: 0px;
    right: 0px;
    padding: 20px;
}

.roundedFixedBtn {
    height: 60px;
    line-height: 80px;
    width: 60px;
    font-size: 2em;
    font-weight: bold;
    border-radius: 50%;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    cursor: pointer;
}

#formularioPedido {
    padding: 0 2rem 2rem 2rem;
}

/* Estilos del formulario */
#formularioPedidoWhatsApp {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#formularioPedido {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

#formularioPedidoWhatsApp {
    gap: 1.25rem;
}

#formularioPedido {
    padding: 0 1.25rem 1.25rem 1.25rem;
}

/* Botón principal */
#botonFormulario {
    background: linear-gradient(135deg, #dbff47 0%, #dbff47 100%);
    color: var(--text-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#botonFormulario:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

#botonFormulario:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(219, 255, 71, 0.6);
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
}

#botonFormulario:hover:before {
    left: 100%;
}

#botonFormulario:active {
    transform: translateY(0);
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .modal {
        padding: 0.5rem;
    }

    .modal-contenido {
        max-width: 100%;
        margin: 0;
        border-radius: var(--radius);
        max-height: 95vh;
    }

    .modal-contenido h2 {
        font-size: 1.5rem;
        padding: 1.5rem 1.5rem 0 1.5rem;
    }

    #formularioPedido {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    #formularioPedidoWhatsApp {
        gap: 1.25rem;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .cerrar {
        right: 0.75rem;
        top: 0.75rem;
        font-size: 1.5rem;
        width: 32px;
        height: 32px;
    }

    .autorizacion-container {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    input[type="radio"] {
        margin-top: 0;
    }

    #botonFormulario {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-contenido {
        border-radius: 0;
        max-height: 100vh;
    }

    .modal-contenido h2 {
        font-size: 1.25rem;
        padding: 1.25rem 1.25rem 0 1.25rem;
    }

    #formularioPedido {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        padding: 0.625rem;
    }
}

/* Estados de validación */
input:invalid {
    border-color: var(--danger-color);
}

input:valid {
    border-color: var(--success-color);
}

/* Efectos de hover para mejor UX */
.modal-contenido {
    transition: var(--transition);
}

/* Scroll personalizado para el modal */
.modal-contenido::-webkit-scrollbar {
    width: 6px;
}

.modal-contenido::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 3px;
}

.modal-contenido::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.modal-contenido::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}






/* Responsive design */
@media (max-width: 768px) {
    #productosDestacados .slider .col-4 {
        flex: 0 0 250px;
    }



    #productosDestacados .slider-track {
        animation-duration: 25s;
    }
}

#guiaTallas{
    width: 500px;
}









/*Media*/

@media only screen and (max-width: 800px) {
    nav ul {
        position: absolute;
        top: 172px;
        left: 0;
        background: linear-gradient(to right, #ffffff, #f0f0f0, #ffffff);
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
        z-index: 1;

    }

    nav ul li {
        display: block;
        margin-right: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    nav ul li a {
        color: black;
    }

    #menuBar {
        display: block;
        cursor: pointer;


    }

    #guiaTallas{
        width: 350px;
    }

}

@media only screen and (max-width: 600px) {
    .row {
        text-align: center;
    }
    

    .col-2,
    .col-3,
    .col-4,
    .col-5 {
        flex-basis: 100%;
    }
    
    #guiaTallas{
        width: 250px;
    }
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 5));
    }
}

/* Pause animation on hover */
.slider:hover .slider-track {
    animation-play-state: paused;
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 1.8rem;
    }

    .col-5 {
        flex: 0 0 150px;
    }

    .col-5 img {
        max-width: 100px;
        max-height: 50px;
    }

    .slider-track {
        animation-duration: 15s;
    }
    #guiaTallas{
        width: 300px;
    }
}


@keyframes scrollProductos {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-40%);
    }

}


@keyframes bounce {

    from,
    to {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.9, 1.1);
    }

    50% {
        transform: scale(1.1, 0.9);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}