/* =========================================
FEATURED PRODUCTS SECTION
========================================= */

.featured-products-section{
    position:relative;
    overflow:hidden;
    background:#000;
    padding:15px 0;
}

/* =========================================
TOP GLOW
========================================= */

.featured-products-glow{
    position:absolute;
    top:100px;
    right:-100px;

    width:500px;
    height:500px;

    background:
    radial-gradient(
        circle,
        rgba(255,0,0,0.15),
        transparent 70%
    );

    filter:blur(100px);
}

/* =========================================
SECTION TOP
========================================= */

.section-top{
    text-align:center;
    margin-bottom:70px;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(255,0,0,0.08);

    border:1px solid rgba(255,0,0,0.2);

    color:#ff2b2b;

    font-size:14px;
    font-weight:600;

    margin-bottom:20px;
}

.section-title{
    font-size:52px;
    line-height:1.2;
    font-weight:800;

    color:#fff;

    margin-bottom:20px;
}

.section-desc{
    max-width:750px;
    margin:auto;

    font-size:16px;
    line-height:1.8;

    color:#9a9a9a;
}

/* =========================================
SLIDER WRAPPER
========================================= */

.products-slider-wrapper{
    position:relative;
}

/* =========================================
NAVIGATION
========================================= */

.products-nav{
    position:absolute;
    top:50%;

    transform:translateY(-50%);

    width:60px;
    height:60px;

    border:none;
    outline:none;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #ff5a00,
        #ff1e1e
    );

    color:#fff;

    font-size:18px;

    cursor:pointer;

    z-index:50;

    transition:0.4s ease;
}

.products-nav:hover{
    transform:translateY(-50%) scale(1.08);
}

.prev-product{
    left:-30px;
}

.next-product{
    right:-30px;
}

/* =========================================
SLIDER
========================================= */

.products-slider{
    display:flex;
    gap:30px;

    overflow:hidden;

    scroll-behavior:smooth;
}

/* =========================================
CARD
========================================= */

.product-card{
    min-width:340px;
    max-width:340px;

    background:
    linear-gradient(
        180deg,
        rgba(255,0,0,0.08),
        rgba(0,0,0,0.95)
    );

    border:1px solid rgba(255,255,255,0.06);

    border-radius:30px;

    overflow:hidden;

    padding:30px;

    position:relative;

    flex-shrink:0;

    transition:0.4s ease;
}

.product-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,0,0,0.25);
}

/* =========================================
CARD GLOW
========================================= */

.product-card::before{
    content:'';

    position:absolute;

    top:-100px;
    left:50%;

    transform:translateX(-50%);

    width:240px;
    height:180px;

    background:
    radial-gradient(
        circle,
        rgba(255,0,0,0.18),
        transparent 70%
    );

    filter:blur(50px);
}

/* =========================================
IMAGE
========================================= */

.product-image-wrapper{
    height:260px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    position:relative;
    z-index:2;
}

.product-image{
    height:240px;
    object-fit:contain;

    transition:0.4s ease;
}

.product-card:hover .product-image{
    transform:translateY(-10px);
}

/* =========================================
CATEGORY
========================================= */

.product-category{
    display:inline-flex;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    color:#ff2b2b;

    font-size:13px;
    font-weight:600;

    margin-bottom:20px;
}

/* =========================================
TITLE
========================================= */

.product-title{
    font-size:22px;
    line-height:1.3;
    font-weight:700;

    color:#fff;

    margin-bottom:18px;
}

/* =========================================
DESCRIPTION
========================================= */

.product-desc{
    font-size:14px;
    line-height:2;

    color:#9f9f9f;

    margin-bottom:30px;
}

/* =========================================
BOTTOM
========================================= */

.product-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* =========================================
SIZES
========================================= */

.product-sizes{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.product-sizes span{
    display:flex;
    align-items:center;
    justify-content:center;

    height:36px;
    padding:0 14px;

    border-radius:50px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    color:#fff;

    font-size:12px;
    font-weight:600;
}

/* =========================================
BUTTON
========================================= */

.product-btn{
    width:54px;
    height:54px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #ff5a00,
        #ff1e1e
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:18px;

    transition:0.4s ease;
}

.product-btn:hover{
    transform:rotate(-45deg);
}

.products-slider{
    display:flex;
    gap:30px;

    overflow-x:auto;
    scroll-behavior:smooth;

    scrollbar-width:none;
}

.products-slider::-webkit-scrollbar{
    display:none;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:768px){

    .featured-products-section{
        padding:80px 0;
    }

    .section-title{
        font-size:34px;
    }

    .section-desc{
        font-size:14px;
    }

    .products-nav{
        width:50px;
        height:50px;
        font-size:16px;
    }

    .prev-product{
        left:-10px;
    }

    .next-product{
        right:-10px;
    }

    .product-card{
        min-width:280px;
        max-width:280px;
    }

    .product-image-wrapper{
        height:220px;
    }

    .product-image{
        height:190px;
    }

}

@media(max-width:576px){

    .section-title{
        font-size:28px;
    }

    .product-card{
        min-width:260px;
        max-width:260px;

        padding:24px;
    }

    .product-title{
        font-size:20px;
    }

}