.wc-swiper-container {
    width: 100%;
    padding: 20px 0;
}

.wc-product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 12px;
    box-sizing: border-box;
    height: 100%;
}

.wc-product-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Contenedor de imagen con altura fija */
.wc-product-card .product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.wc-product-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

/* Título alineado para todos los productos */
.wc-product-card h3 {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 10px;
    min-height: 40px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wc-product-card .price {
    margin-top: auto;
    font-weight: 600;
    font-size: 16px;
}

.swiper-pagination {
    margin-top: 15px;
    position: relative !important;
}

.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

@media (min-width: 768px) {
    .wc-product-card {
        padding: 15px;
    }

    .wc-product-card .product-image {
        height: 280px;
    }

    .wc-product-card h3 {
        font-size: 15px;
        min-height: 44px;
    }
}

@media (min-width: 1024px) {
    .wc-product-card .product-image {
        height: 300px;
    }

    .wc-product-card h3 {
        min-height: 48px;
    }
}