
/* =========================================
PRODUCTS PAGE
========================================= */

.products-hero-section{
    position:relative;
    overflow:hidden;
    padding:180px 0 140px;
    background:
    radial-gradient(circle at top left,
    rgba(255,0,0,0.15),
    transparent 40%),
    radial-gradient(circle at bottom right,
    rgba(255,80,0,0.12),
    transparent 40%),
    #050505;
}

.products-hero-glow{
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(255,0,0,0.22);
    filter:blur(140px);
    top:-120px;
    right:-120px;
}

.products-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    text-align:center;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border-radius:60px;
    background:rgba(255,0,0,0.08);
    border:1px solid rgba(255,0,0,0.2);
    color:#ff3b1d;
    font-size:13px;
    font-weight:700;
    margin-bottom:28px;
}

.products-hero-title{
    font-size:72px;
    line-height:1.05;
    font-weight:900;
    color:#ffffff;
    letter-spacing:-2px;
    margin-bottom:30px;
}

.products-hero-desc{
    max-width:760px;
    margin:auto;
    font-size:18px;
    line-height:2;
    color:#b5b5b5;
}

/* =========================================
GLOBAL SECTION
========================================= */

.section-title{
    font-size:54px;
    line-height:1.1;
    font-weight:900;
    color:#ffffff;
    letter-spacing:-2px;
}

.section-center{
    max-width:850px;
    margin:auto auto 80px;
    text-align:center;
}

/* =========================================
PRODUCT SHOWCASE
========================================= */

.products-showcase-section{
    padding:140px 0;
    background:#070707;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.product-card{
    position:relative;
    overflow:hidden;
    border-radius:35px;
    padding:35px;
    background:
    linear-gradient(
    180deg,
    rgba(45,0,0,0.75),
    rgba(0,0,0,0.98)
    );
    border:1px solid rgba(255,0,0,0.12);
    transition:0.4s ease;
}

.product-card:hover{
    transform:translateY(-12px);
    border-color:rgba(255,0,0,0.35);
}

.product-tag{
    display:inline-flex;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#ff3b1d;
    font-size:12px;
    font-weight:700;
    margin-bottom:28px;
}

.product-image{
    position:relative;
    height:280px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:35px;
}

.product-glow{
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,0,0,0.18);
    filter:blur(80px);
}

.product-image img{
    position:relative;
    z-index:2;
    max-width:180px;
    width:100%;
    filter:drop-shadow(0 25px 50px rgba(255,0,0,0.3));
    transition:0.4s ease;
}

.product-card:hover .product-image img{
    transform:translateY(-10px);
}

.product-content h3{
    font-size:32px;
    color:#ffffff;
    margin-bottom:20px;
    font-weight:800;
}

.product-content p{
    color:#b5b5b5;
    line-height:1.9;
    font-size:15px;
    margin-bottom:28px;
}

.product-sizes{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
}

.product-sizes span{
    padding:12px 18px;
    border-radius:50px;
    background:#111111;
    border:1px solid rgba(255,0,0,0.12);
    color:#ffffff;
    font-size:13px;
    font-weight:700;
}

.product-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 28px;
    border-radius:60px;
    background:linear-gradient(135deg,#ff3300,#ff0033);
    color:#ffffff;
    font-size:14px;
    font-weight:700;
    transition:0.4s ease;
}

.product-btn:hover{
    transform:translateY(-5px);
}

/* =========================================
CATEGORIES
========================================= */

.product-categories-section{
    padding:140px 0;
    background:#050505;
}

.categories-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.category-card{
    position:relative;
    overflow:hidden;
    padding:55px 45px;
    border-radius:35px;
    background:#0b0b0b;
    border:1px solid rgba(255,0,0,0.12);
    transition:0.4s ease;
}

.category-card::before{
    content:'';
    position:absolute;
    width:240px;
    height:240px;
    background:rgba(255,0,0,0.08);
    filter:blur(90px);
    top:-80px;
    right:-80px;
}

.category-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,0,0,0.35);
}

.category-card i{
    position:relative;
    z-index:2;
    width:85px;
    height:85px;
    border-radius:50%;
    background:linear-gradient(135deg,#ff3300,#ff0033);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:32px;
    margin-bottom:28px;
}

.category-card h3{
    position:relative;
    z-index:2;
    font-size:32px;
    color:#ffffff;
    margin-bottom:18px;
    font-weight:800;
}

.category-card p{
    position:relative;
    z-index:2;
    font-size:15px;
    line-height:1.9;
    color:#b5b5b5;
}

/* =========================================
WHY PRODUCTS
========================================= */

.why-products-section{
    padding:140px 0;
    background:#070707;
}

.why-products-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

.why-products-content p{
    font-size:17px;
    line-height:2;
    color:#b5b5b5;
    margin-bottom:35px;
}

.why-products-list{
    display:grid;
    gap:18px;
}

.why-item{
    display:flex;
    align-items:center;
    gap:14px;
    color:#ffffff;
    font-size:16px;
}

.why-item i{
    color:#ff3b1d;
}

.why-products-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.why-image-glow{
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,0,0,0.18);
    filter:blur(120px);
}

.why-products-image img{
    position:relative;
    z-index:2;
    width:100%;
    max-width:480px;
}

/* =========================================
STATS
========================================= */

.products-stats-section{
    padding:140px 0;
    background:#050505;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stats-card{
    padding:60px 35px;
    border-radius:35px;
    text-align:center;
    background:
    linear-gradient(
    180deg,
    rgba(45,0,0,0.75),
    rgba(0,0,0,0.98)
    );
    border:1px solid rgba(255,0,0,0.12);
    transition:0.4s ease;
}

.stats-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,0,0,0.35);
}

.stats-card h3{
    font-size:54px;
    color:#ff3b1d;
    margin-bottom:18px;
    font-weight:900;
}

.stats-card p{
    color:#ffffff;
    font-size:16px;
}

/* =========================================
CTA
========================================= */

.products-cta-section{
    padding:140px 0;
    background:#070707;
}

.products-cta-box{
    position:relative;
    overflow:hidden;
    padding:100px 70px;
    border-radius:45px;
    text-align:center;
    background:
    linear-gradient(
    135deg,
    rgba(45,0,0,0.95),
    rgba(0,0,0,1)
    );
    border:1px solid rgba(255,0,0,0.15);
}

.products-cta-box::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(255,0,0,0.16);
    filter:blur(130px);
    top:-120px;
    right:-120px;
    border-radius:50%;
}

.products-cta-box h2{
    position:relative;
    z-index:2;
    font-size:56px;
    line-height:1.1;
    font-weight:900;
    color:#ffffff;
    margin-bottom:28px;
    letter-spacing:-2px;
}

.products-cta-box p{
    position:relative;
    z-index:2;
    max-width:720px;
    margin:auto;
    color:#b5b5b5;
    font-size:17px;
    line-height:2;
}

.products-cta-buttons{
    position:relative;
    z-index:2;
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .categories-grid{
        grid-template-columns:1fr;
    }

    .why-products-wrapper{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .products-hero-title{
        font-size:42px;
    }

    .section-title{
        font-size:38px;
    }

    .products-grid{
        grid-template-columns:1fr;
    }

    .products-cta-box{
        padding:70px 30px;
    }

    .products-cta-box h2{
        font-size:38px;
    }

}

@media(max-width:576px){

    .products-hero-section{
        padding:150px 0 90px;
    }

    .products-hero-title{
        font-size:34px;
    }

    .section-title{
        font-size:32px;
    }

    .product-card{
        padding:30px;
    }

    .category-card{
        padding:40px 30px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .products-cta-box h2{
        font-size:30px;
    }

}

