.carousel-products-section {}

.carousel-container {
    margin: 0 auto;
    position: relative;

}

.carousel-inner {
    overflow: hidden;
}

.carousel-slide {
    display: none;
}

.carousel-slide.carousel-active {
    display: block;
}

.carousel-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.carousel-product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
}

.carousel-product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.w-carousel-indicators {
    text-align: center;
    margin-top: 10px;
}

.carousel-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 10px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.carousel-active {
    background: var(--primary-color);
    width: 45px;
}

/* Banner Ad */
.banner {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            transparent 0%,
            transparent 40%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 51%,
            transparent 60%,
            transparent 100%);
    background-size: 200% 200%;
    background-position: 100% 100%;
    opacity: 0;
    transition: opacity 0s ease, background-position 0.6s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.banner:hover::before {
    opacity: 1;
    background-position: 0% 0%;
}

.collection-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sale-text {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin: 20px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.shop-button {
    display: inline-block;
    background: white;
    color: #ff6b6b;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.shop-button:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.shop-button:active {
    transform: scale(.9)
}

.decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.decoration-1 {
    top: -70px;
    left: -70px;
}

.decoration-2 {
    bottom: -70px;
    right: -70px;
}

.tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffd700;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transform: rotate(5deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Product Item Grids */
.grid-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.span-2 {
    grid-column: span 2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .grid-col-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .span-2 {
        grid-column: span 3;
    }
}

@media (max-width: 576px) {
    .grid-col-container {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: span 2;
    }

    h1 {
        font-size: 2rem;
    }
}


@media (max-width: 768px) {

    .s-i-wraper,
    .carousel-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 1rem;

    }
}

@media (max-width: 480px) {

    .s-i-wraper,
    .carousel-products-grid {
        padding: 0 .5rem;
        gap: 10px;
        grid-template-columns: 1fr;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 319px) {

    .s-i-wraper,
    .carousel-products-grid {
        padding: 0 .5rem;
        gap: 10px;
        grid-template-columns: 1fr;
    }
}