/* General container & layout styling */
.woo-carousel-wrapper-e5992ba0 {
    position: relative;
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
}

.wc-carousel-track-wrapper-e5992ba0 {
    width: 100%;
    overflow: visible; /* Allows beautiful partial peeking on mobile */
}

.wc-carousel-track-e5992ba0 {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    gap: 16px;
}

/* Card layout matching reference exactly */
.wc-carousel-card-e5992ba0 {
    flex: 0 0 calc((100% - (16px * 3)) / 4);
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    min-height: 440px; /* Slimmer elegant height without any boxes */
}

.wc-carousel-card-e5992ba0:hover {
    box-shadow: 0 12px 32px rgba(9, 17, 117, 0.08);
}

/* Zoom Image link wrapper */
.wc-card-image-link-e5992ba0 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

/* Image Hover Zoom Animation */
.wc-card-img-e5992ba0 {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.wc-carousel-card-e5992ba0:hover .wc-card-img-e5992ba0 {
    transform: scale(1.08); /* Sophisticated premium image zoom animation */
}

/* Featured top-left badge and Wishlist top-right badge */
.wc-card-image-wrapper-e5992ba0 {
    position: relative;
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}

.wc-card-featured-badge-e5992ba0 {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #e6f7f6;
    color: #0d9488;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.wc-card-wishlist-btn-e5992ba0 {
    position: absolute;
    top: 0px;
    right: 0px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 4px;
    transition: color 0.2s;
    z-index: 2;
}

.wc-card-wishlist-btn-e5992ba0:hover {
    color: #ef4444;
}

/* Metadata row */
.wc-card-meta-row-e5992ba0 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.wc-green-dot-badge-e5992ba0 {
    color: #10b981;
    font-size: 12px;
}

/* Premium styled teal rating badge */
.wc-card-rating-badge-e5992ba0 {
    display: inline-flex;
    align-items: center;
    background-color: #0d9488;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    gap: 2px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.25);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.wc-carousel-card-e5992ba0:hover .wc-card-rating-badge-e5992ba0 {
    transform: translateY(-2px); /* Premium subtle animation */
}

.wc-card-title-e5992ba0 {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    margin: 8px 0;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wc-card-title-e5992ba0 a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
}

.wc-carousel-card-e5992ba0:hover .wc-card-title-e5992ba0 a {
    color: #091175;
}

/* Pricing Section */
.wc-card-price-row-e5992ba0 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    flex-wrap: wrap;
}

.wc-current-price-e5992ba0 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.wc-regular-price-e5992ba0 {
    font-size: 14px;
    text-decoration: line-through;
    color: #9ca3af;
}

.wc-discount-tag-e5992ba0 {
    background-color: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Additional static content tags matching references */
.wc-card-checkout-info-e5992ba0 {
    font-size: 12px;
    color: #16a34a;
    font-weight: 500;
    margin-bottom: 12px;
}

/* Buttons matching layouts and colors */
.wc-card-buttons-e5992ba0 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wc-add-to-cart-btn-e5992ba0, .wc-buy-now-btn-e5992ba0 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
}

.wc-add-to-cart-btn-e5992ba0 {
    background: #f3f4f6;
    border: 1px solid #091175;
    color: #091175;
    gap: 6px;
}

.wc-buy-now-btn-e5992ba0 {
    background: #091175;
    border: 1px solid #091175;
    color: #ffffff;
}

/* Category Tabs design */
.wc-tabs-container-e5992ba0 {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.wc-tabs-container-e5992ba0::-webkit-scrollbar {
    display: none;
}

.wc-tab-item-e5992ba0 {
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.wc-tab-item-e5992ba0.active-tab-e5992ba0 {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

/* Navigation Arrow styles */
.wc-carousel-arrow-e5992ba0 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0d9488;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.wc-arrow-prev-e5992ba0 {
    left: 8px;
}

.wc-arrow-next-e5992ba0 {
    right: 8px;
}

/* Centered View All footer buttons */
.wc-view-all-wrapper-e5992ba0 {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.wc-view-all-btn-e5992ba0 {
    border: 1.5px solid #0d9488;
    color: #0d9488;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.2s;
}

.wc-view-all-btn-e5992ba0:hover {
    background: #0d9488;
    color: #ffffff;
}

/* Loading filter state indicator */
.loading-filter-e5992ba0 {
    opacity: 0.6;
    pointer-events: none;
}

/* Tablet responsiveness: 2 columns */
@media screen and (max-width: 1024px) {
    .wc-carousel-card-e5992ba0 {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}

/* Mobile responsiveness: 1 card + partial next card peek */
@media screen and (max-width: 767px) {
    .wc-carousel-track-wrapper-e5992ba0 {
        overflow: visible;
    }
    .wc-carousel-card-e5992ba0 {
        flex: 0 0 85%; /* Essential for partial peeking on mobile layout */
    }
    .wc-carousel-arrow-e5992ba0 {
        display: none !important; /* Hide arrows on touch-swipe layouts */
    }
}
