.woo-productos-swiper {
    width: 100%;
    padding: 1rem 1rem;
}

.woo-producto-item {
    background: #550000;
    border-radius: 5px;
    overflow: hidden;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s ease;
    text-align: center;
    padding: 5px;
    width: 100%;
    border: 2px solid #000; /* Borde negro */

}

.woo-producto-item a p{
    padding: 0px !important;
}

.woo-producto-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
      aspect-ratio: 2 / 3;

}

.woo-producto-titulo {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 8px 0px;
    min-height: 1 rem;
}

.woo-producto-precio {
    display: inline-block;
    color: #fff;
    font-size: 1 rem;
    font-weight: bold;
    margin: 0px;
}

/* Swiper nav buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #550000;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #b38d39;
}

/* Responsive ajustes adicionales */
@media (max-width: 768px) {
    .woo-producto-item {
        padding: 5px;
    }

    .woo-producto-titulo {
        font-size: 1.3rem;
    }

    .woo-producto-precio {
        font-size: 1rem;
    }
}
