
.inf-woo-carousel-wrapper {
    position: relative;
    padding-bottom: 40px; /* Space for pagination */
}

/* Swiper Override */
.inf-woo-carousel .swiper-slide {
    height: auto;
    display: flex;
}

.inf-woo-carousel-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid var(--inf-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.inf-woo-carousel-card:hover {
    box-shadow: var(--inf-shadow-md);
    transform: translateY(-4px);
    border-color: var(--inf-accent);
}

.inf-woo-carousel-img-wrap {
    position: relative;
    padding-top: 125%; /* 4:5 Aspect Ratio */
    background: var(--inf-bg-alt);
    overflow: hidden;
}

.inf-woo-carousel-img-wrap img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.inf-woo-carousel-card:hover .inf-woo-carousel-img-wrap img {
    transform: scale(1.08);
}

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

.inf-woo-carousel-cat {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--inf-text-light);
    font-weight: 700;
    margin-bottom: 4px;
}

.inf-woo-carousel-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--inf-text-main);
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inf-woo-carousel-price {
    margin-top: auto;
    font-weight: 700;
    color: var(--inf-primary);
}

.inf-woo-carousel-price del {
    color: var(--inf-text-light);
    font-size: 0.9em;
    font-weight: 400;
    margin-right: 6px;
}
.inf-woo-carousel-price ins {
    text-decoration: none;
    color: var(--inf-sale);
}

/* Nav Buttons */
.inf-woo-swiper-button {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--inf-shadow-md);
    color: var(--inf-primary);
    transition: all 0.2s;
}
.inf-woo-swiper-button:after { font-size: 16px; font-weight: bold; }
.inf-woo-swiper-button:hover { background: var(--inf-primary); color: #fff; }

.inf-woo-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--inf-accent);
}
