.woo-carousel-swiper-31d7ed15 {
    padding: 20px 0 50px;
}

.woo-carousel-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.woo-carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.woo-carousel-image {
    position: relative;
    overflow: hidden;
}

.woo-carousel-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.woo-carousel-card:hover .woo-carousel-image img {
    transform: scale(1.05);
}

.woo-carousel-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff5a5f;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.woo-carousel-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.woo-carousel-title {
    font-size: 16px;
    margin: 0 0 10px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.woo-carousel-price {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.woo-carousel-add-to-cart {
    margin-top: auto;
}

.woo-carousel-add-to-cart .button {
    display: block;
    text-align: center;
    background: #333;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.woo-carousel-card:hover .woo-carousel-add-to-cart .button {
    background: #000;
}

/* Hide View Cart link */
.woo-carousel-add-to-cart .added_to_cart {
    display: none !important;
}
