.at-woo-category-tabs-wrapper {
    font-family: 'Outfit', 'Inter', sans-serif;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.at-woo-tabs-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #fff;
    letter-spacing: -0.5px;
}

.at-woo-tabs-nav {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.at-woo-tab-pill {
    background: #F2F4F7;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #475467;
}

.at-woo-tab-pill.active {
    background: #E4E7EC;
    color: #101828;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.at-woo-tab-pane {
    display: none;
}

.at-woo-tab-pane.active {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.at-woo-products-slider {
    padding: 20px 0 50px;
    width: 100%;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.at-woo-product-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 249, 230, 0.5);
    width: 100%;
    height: 100%;
    margin-bottom: 0;
}

.at-woo-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

/* Swiper Navigation Styles */
.at-woo-products-slider .swiper-button-next,
.at-woo-products-slider .swiper-button-prev {
    color: #ED0000;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.at-woo-products-slider .swiper-button-next:after,
.at-woo-products-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.at-woo-products-slider .swiper-pagination-bullet-active {
    background: #ED0000;
}

.at-woo-product-header {
    width: 100%;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.at-woo-product-title {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    color: #101828;
    line-height: 22px;
}

.at-woo-product-badge {
    display: inline-block;
    background: #00B67A;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-left: 8px;
    vertical-align: middle;
}

.at-woo-product-badge.new {
    background: #00B67A;
}

.at-woo-product-badge.12%-off,
.at-woo-product-badge.off {
    background: #00B67A;
}

.at-woo-product-short-desc {
    font-size: 16px;
    color: #475467;
    margin-bottom: 6px;
    font-weight: 500;
    z-index: 2;
}

span.woocommerce-Price-amount.amount {
    font-size: 16px;

}

.at-woo-product-specs {
    font-size: 14px;
    color: #667085;
    margin-bottom: 10px;
    font-weight: 400;
    z-index: 2;
}

.at-woo-product-image {
    margin-bottom: 0px;
    position: relative;
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.at-woo-product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}

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

.at-woo-product-image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.at-woo-product-footer {
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    padding-top: 20px;
}

.at-woo-product-price {
    font-size: 24px;
    font-weight: 800;
    color: #101828;
}

.at-woo-product-price ins {
    text-decoration: none;
}

.at-woo-product-price del {
    font-size: 16px;
    color: #98A2B3;
    font-weight: 500;
    margin-left: 8px;
}

.at-woo-product-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.at-woo-mobile-products-grid {
    display: none;
}

.at-woo-learn-more {
    font-size: 12px;
    color: #101828;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.at-woo-learn-more:hover {
    color: #475467;
}

.at-woo-buy-btn {
    background: #ED0000;
    color: #fff;
    border: 1.5px solid #ED0000;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.at-woo-buy-btn:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

@media screen and (max-width: 767px) {
    .at-woo-category-tabs-wrapper {
        padding: 20px;
    }

    .at-woo-tabs-nav,
    .at-woo-tabs-content {
        display: none !important;
    }

    .at-woo-mobile-products-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .at-woo-product-card {
        padding: 15px;
        border-radius: 16px;
    }

    .at-woo-product-title {
        font-size: 14px;
        line-height: 1.2;
    }

    .at-woo-product-specs {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .at-woo-product-image {
        height: 120px;
        margin-bottom: 10px;
    }

    .at-woo-product-footer {
        flex-direction: column;
        gap: 10px;
        padding-top: 10px;
    }

    .at-woo-product-price {
        font-size: 16px;
    }

    .at-woo-product-actions {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .at-woo-learn-more {
        font-size: 12px;
    }

    .at-woo-buy-btn {
        width: 100%;
        padding: 6px 12px;
        font-size: 12px;
        text-align: center;
    }

    .at-woo-product-badge {
        font-size: 10px;
        padding: 2px 8px;
    }
}