/* ==========================
   GOOGLE FONT
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

/* ==========================
   ROOT COLORS
========================== */

:root{
    --primary:#b7ff00;
    --dark:#0b0b0b;
    --dark-card:#151515;
    --text:#ffffff;
    --gray:#9a9a9a;
    --shadow:0 0 25px rgba(183,255,0,.3);
}

/* ==========================
   BODY
========================== */

body{
    background:var(--dark);
    color:var(--text);
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:white;
}

ul{
    list-style:none;
}

/* ==========================
   HEADER
========================== */

.header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:65px;
    width:auto;
    object-fit:contain;
    transition:.3s ease;
}

.logo img:hover{
    transform:scale(1.05);
}

.navbar{
    display:flex;
    gap:35px;
}

.navbar a{
    font-weight:500;
    transition:.3s;
}

.navbar a:hover{
    color:var(--primary);
}

.nav-icons{
    display:flex;
    align-items:center;
    gap:25px;
    font-size:1.2rem;
}

.nav-icons i{
    cursor:pointer;
    transition:.3s;
}

.nav-icons i:hover{
    color:var(--primary);
}

.cart-icon{
    position:relative;
}

#cart-count{
    position:absolute;
    top:-8px;
    right:-12px;
    background:var(--primary);
    color:black;
    width:18px;
    height:18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.7rem;
    font-weight:700;
}

.menu-toggle{
    display:none;
}

/* ==========================
   HERO
========================== */

.hero{
    position:relative;
    min-height:92vh;
    display:flex;
    align-items:flex-end;
    justify-content:flex-start;
    padding:140px 8% 60px;
    overflow:hidden;
    border-radius:0 0 32px 32px;
    background-color:#060606;
    isolation:isolate;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    z-index:-1;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.72) 35%,
            rgba(0,0,0,.32) 70%,
            rgba(0,0,0,.15) 100%
        ),
        url("ChatGPT Image Jun 24, 2026, 09_55_57 PM.png");
    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;
    background-color:#060606;
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:420px;
    padding:28px 30px;
    border:1px solid rgba(183,255,0,.28);
    border-radius:24px;
    background:rgba(8,8,8,.72);
    backdrop-filter:blur(12px);
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.hero-tag{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    background:rgba(183,255,0,.15);
    color:#b7ff00;
    font-weight:600;
    margin-bottom:25px;
}

.hero h1{
    font-size:5rem;
    line-height:1.05;
    color:#fff;
    margin-bottom:25px;
}

.hero p{
    font-size:1.2rem;
    color:#d0d0d0;
    max-width:550px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 24px;
    border-radius:999px;
    font-weight:600;
    letter-spacing:.02em;
    transition:all .3s ease;
    border:1px solid transparent;
}

.btn-primary{
    background:var(--primary);
    color:#050505;
    box-shadow:0 8px 20px rgba(183,255,0,.16);
}

.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(183,255,0,.24);
}

.btn-secondary{
    background:transparent;
    color:#fff;
    border-color:rgba(183,255,0,.45);
}

.btn-secondary:hover{
    background:rgba(183,255,0,.1);
    border-color:var(--primary);
    color:var(--primary);
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:650px;
    background:none;
    mix-blend-mode:screen;
    filter:
        drop-shadow(0 0 30px rgba(183,255,0,.3))
        drop-shadow(0 0 60px rgba(183,255,0,.15));
    animation:heroFloat 5s ease-in-out infinite;
}

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

@keyframes heroFloat{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-20px)}
}

.hero-image::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:radial-gradient(
        circle,
        rgba(183,255,0,.35),
        transparent 70%
    );
    border-radius:50%;
    filter:blur(60px);
    z-index:-1;
    animation:pulse 4s infinite;
}

@keyframes pulse{

    0%{
        transform:scale(1);
        opacity:.6;
    }

    50%{
        transform:scale(1.15);
        opacity:1;
    }

    100%{
        transform:scale(1);
        opacity:.6;
    }
}

/* ==========================
   STATS
========================== */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:50px 8%;
}

.stat-box{
    background:var(--dark-card);
    padding:35px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(255,255,255,.05);
}

.stat-box h2{
    color:var(--primary);
    font-size:2rem;
}

.stat-box p{
    color:var(--gray);
}

/* ==========================
   SECTION TITLE
========================== */

.section-title{
    text-align:center;
    font-size:2.8rem;
    margin-bottom:50px;
}

/* ==========================
   CATEGORIES
========================== */

.categories{
    padding:100px 8%;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.category-card{
    background:var(--dark-card);
    padding:40px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.06);
}

.category-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.category-card i{
    font-size:3rem;
    color:var(--primary);
    margin-bottom:20px;
}

/* ==========================
   PRODUCTS
========================== */

.products{
    padding:100px 8%;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:stretch;
}

.product-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    background:linear-gradient(180deg, #181818 0%, #121212 100%);
    border-radius:18px;
    overflow:hidden;
    height:100%;
    min-height:520px;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.18);
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:var(--shadow);
}

.product-img{
    width:100%;
    height:320px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:16px;
}

.product-img img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
}

.product-slider{
    width:100%;
    height:300px;
    background:linear-gradient(135deg, #ffffff 0%, #f4f7f0 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    position:relative;
    margin-bottom:10px;
}

.slide{
    display:none;
    width:100%;
    height:100%;
}

.slide.active{
    display:flex;
    align-items:center;
    justify-content:center;
}

.slide img{
    max-width:90%;
    max-height:90%;
    width:auto;
    height:auto;
    object-fit:contain;
}

.prev-btn,
.next-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border:none;
    background:rgba(0,0,0,.55);
    color:#fff;
    border-radius:50%;
    cursor:pointer;
    font-size:18px;
    z-index:2;
}

.prev-btn{ left:10px; }
.next-btn{ right:10px; }

.dots{
    position:absolute;
    bottom:10px;
    width:100%;
    text-align:center;
}

.dot{
    width:9px;
    height:9px;
    border-radius:50%;
    display:inline-block;
    background:#ccc;
    margin:0 3px;
    cursor:pointer;
}

.dot.active{ background:#fff; }

.prev-btn,
.next-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border:none;
    background:rgba(0,0,0,.55);
    color:#fff;
    border-radius:50%;
    cursor:pointer;
    font-size:18px;
    z-index:2;
}

.prev-btn{
    left:10px;
}

.next-btn{
    right:10px;
}

.dots{
    position:absolute;
    bottom:10px;
    width:100%;
    text-align:center;
}

.dot{
    width:9px;
    height:9px;
    border-radius:50%;
    display:inline-block;
    background:#ccc;
    margin:0 3px;
    cursor:pointer;
}

.dot.active{
    background:#fff;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-card h3{
    margin:12px 20px 8px;
    font-size:1.15rem;
}

.product-card p{
    margin:0 20px 10px;
    min-height:48px;
    color:var(--gray);
    line-height:1.5;
}

.price{
    margin:6px 20px 14px;
    font-size:1.45rem;
    font-weight:700;
    color:var(--primary);
}

.product-buttons{
    margin-top:auto;
    padding:16px 20px 20px;
    display:flex;
    justify-content:space-between;
    gap:12px;
}

.add-cart{
    width:100%;
    padding:14px;
    border:none;
    border-radius:50px;
    background:var(--primary);
    color:black;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.add-cart:hover{
    transform:scale(1.03);
}

/* ==========================
   REVIEWS
========================== */

.reviews{
    padding:100px 8%;
}

.review-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:var(--dark-card);
    padding:35px;
    border-radius:20px;
}

.review-card p{
    color:var(--gray);
    margin-bottom:20px;
}

.review-card h4{
    color:var(--primary);
}

/* ==========================
   NEWSLETTER
========================== */

.newsletter{
    padding:100px 8%;
    text-align:center;
}

.newsletter h2{
    font-size:3rem;
    margin-bottom:15px;
}

.newsletter p{
    color:var(--gray);
    margin-bottom:30px;
}

.newsletter form{
    max-width:700px;
    margin:auto;
    display:flex;
    gap:15px;
}

.newsletter input{
    flex:1;
    padding:18px;
    border:none;
    border-radius:50px;
    background:#1a1a1a;
    color:white;
}

.newsletter button{
    padding:18px 35px;
    border:none;
    border-radius:50px;
    background:var(--primary);
    font-weight:700;
    cursor:pointer;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#050505;
    padding:70px 8% 20px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer-content h3,
.footer-content h4{
    color:var(--primary);
    margin-bottom:15px;
}

.footer-content p,
.footer-content li{
    color:var(--gray);
    margin-bottom:10px;
}

.socials{
    display:flex;
    gap:20px;
    font-size:1.4rem;
}

.socials i:hover{
    color:var(--primary);
    cursor:pointer;
}

.copyright{
    text-align:center;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
    color:var(--gray);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1200px){
    .product-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:992px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-content h1{
        font-size:3rem;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .review-container{
        grid-template-columns:1fr;
    }

    .footer-content{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .navbar{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .category-grid{
        grid-template-columns:1fr;
    }

    .newsletter form{
        flex-direction:column;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:2.3rem;
    }

    .section-title{
        font-size:2rem;
    }
}

/* MOBILE NAVBAR */

.navbar.active{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#111;
    display:flex;
    flex-direction:column;
    padding:25px;
    gap:20px;
}

/* NOTIFICATION */

.notification{
    position:fixed;
    top:100px;
    right:-400px;
    background:#b7ff00;
    color:#000;
    padding:15px 25px;
    border-radius:50px;
    font-weight:600;
    z-index:9999;
    transition:.4s;
    box-shadow:0 10px 30px rgba(183,255,0,.3);
}

.notification.show{
    right:30px;
}

/* SCROLL REVEAL */

.product-card,
.category-card,
.review-card,
.stat-box{
    opacity:0;
    transform:translateY(40px);
    transition:.8s;
}

.product-card.reveal,
.category-card.reveal,
.review-card.reveal,
.stat-box.reveal{
    opacity:1;
    transform:translateY(0);
}

/* CUSTOM SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#b7ff00;
    border-radius:20px;
}

/* SELECTION COLOR */

::selection{
    background:#b7ff00;
    color:#000;
}
.product-buttons{
    display:flex;
    gap:12px;
    padding:0 20px 20px;
}

.product-buttons button{
    flex:1;
    padding:14px;
    border:none;
    border-radius:50px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.product-buttons .add-cart{
    background:var(--primary);
    color:#000;
}

.product-buttons .view-btn{
    background:transparent;
    color:#fff;
    border:1px solid var(--primary);
}

.product-buttons .view-btn:hover{
    background:var(--primary);
    color:#000;
}

.product-buttons .add-cart:hover,
.product-buttons .view-btn:hover{
    transform:translateY(-2px);
}