:root {
            --primary-color: #272727;
            --secondary-color: #007BFF;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --blanco: #f9f9f9;
            --dark-color: #333;
        }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--blanco);
}

/* Productos */
.product-slider h2 {
    text-transform: uppercase;
    text-align: center;
    padding-top: 2.5%;
    margin-bottom: 2.5%;
    position: relative;
    font-size: 36px;
    color: var(--primary-color);
}

.product-slider h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--secondary-color);
}

.product-slider {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 200px;
}

.product-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.swiper-container {
    width: 100%;
    height: 100%;
    padding: 20px 0;             
}

.swiper-slide {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
}

.swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.swiper-slide img {
    width: 50%;
    height: 150px;
    /* object-fit: cover; */
    border-bottom: 1px solid #eee;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
    font-size: 0.9rem;
}

/* .swiper-button-next,
.swiper-button-prev {
    background-color: var(--blanco);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;              
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--secondary-color);
    color: white;
} */

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .swiper-slide img {
        height: 160px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h2 {
        font-size: 1.2rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        margin: 0 10px;
    }
    
    .product-slider {
    max-width: 480px;
    margin: 0.5rem auto;
    padding: 0 0px;
}

    .product-slider h2 {
        font-size: 26px; /* Reduce el tamaño del título */
        margin-right: 20px;
    }

    .product-slider {
    position: relative;
    overflow: hidden;
    padding: 0px 0;
}

.swiper-container {
    width: 80%;
    height: 100%;
    padding: 30px 0;             
}
}