@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root{

    --black:#000000;

    --dark:#4A4A4A;

    --gray:#8A8A8A;

    --light-gray:#B8B8B8;

    --soft-gray:#D9D9D9;

    --white:#F4F4F4;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat',sans-serif;
}

body{

    background:#F4F4F4;

    color:#000;

}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}

.header{

    height:80px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 40px;



    background:#F4F4F4;

    border-bottom:1px solid #D9D9D9;

    backdrop-filter:blur(20px);

}

.header-left{

    width:220px;

}

.logo img{

    height:24px;

}

.header-center{

    flex:1;

    padding:0 40px;

}

.search-box{

    width:100%;

    height:50px;

    border:none;

    background:#f5f5f5;

    border-radius:8px;

    padding:0 20px;

    font-size:15px;

    outline:none;

}

.header-right{

    display:flex;

    gap:30px;

    align-items:center;

}

.header-right a{

    text-align:center;

    font-size:13px;

    font-weight:600;

}

.header-right span{

    font-size:12px;

}

.nav{
    display:flex;
    gap:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.hero{

    height:92vh;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

    overflow:hidden;

    background:

    url('/assets/images/hero-bg.png');

    background-size:cover;

    background-position:center;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(255,255,255,.35);

    backdrop-filter:blur(0px);

    -webkit-backdrop-filter:blur(12px);

    z-index:1;

}

.hero-inner{

    position:relative;

    z-index:2;

    text-align:center;

}

#hero-title{

    font-size:clamp(80px,14vw,140px);

    font-weight:900;

    letter-spacing:0.01em;

    line-height:1;

    opacity:0;

    transform:translateY(80px);

}

#hero-title span{

    display:inline-block;

    transition:transform .25s ease;

    will-change:transform;

}

#hero-subtitle{

    margin-top:20px;

    color:#111;

    font-size:20px;

    letter-spacing:8px;

    font-weight:500;
    
    opacity:1;

}

#particleCanvas{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    z-index:1;

}

.btn{

    display:inline-block;

    margin-top:30px;

    background:#fff;

    color:#000;

    padding:16px 40px;

    border-radius:50px;

    font-weight:700;

    letter-spacing:1px;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

    margin-top:55px;

}

.category-card{

    position:relative;

    overflow:hidden;

    display:block;

    border-radius:26px;

    height:470px;

    background:#ddd;

    box-shadow:

        0 15px 45px rgba(0,0,0,.08);

    transition:.45s ease;

}

.category-card img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    object-position:center;

    transition:transform .8s ease;

}

.category-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    height:45%;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:28px;

    background:linear-gradient(

        transparent,

        rgba(0,0,0,.75)

    );

}

.category-overlay h3{

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:12px;

    transform:translateY(20px);

    transition:.45s;

}

.category-overlay span{

    color:#fff;

    font-size:14px;

    letter-spacing:3px;

    text-transform:uppercase;

    opacity:0;

    transform:translateY(20px);

    transition:.45s;

}

.category-card:hover{

    transform:translateY(-12px);

    box-shadow:

        0 35px 70px rgba(0,0,0,.18);

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-card:hover h3{

    transform:translateY(0);

}

.category-card:hover span{

    opacity:1;

    transform:translateY(0);

}


.section-title{

    text-align:center;

    font-size:58px;

    font-weight:800;

    letter-spacing:-1px;

    margin-bottom:70px;

}

.categories{

    padding:120px 0;

}


.category-hero{

    padding:90px 0 70px;

    text-align:center;

}

.category-hero h1{

    font-size:58px;

    font-weight:800;

    margin-bottom:15px;

}

.category-hero p{

    color:#777;

    letter-spacing:3px;

}

.category-banner{

    padding:90px 0 70px;

    text-align:center;

}

.category-banner h1{

    font-size:56px;

    font-weight:800;

    letter-spacing:2px;

}

.category-banner p{

    margin-top:12px;

    color:#777;

    letter-spacing:4px;

    text-transform:uppercase;

}


/* ---------- PRODUCTS ---------- */

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin:60px 0;
}

.product-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    transition:.35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    position:relative;
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(0,0,0,.15);
}

.product-image{
    position:relative;
    display:block;
    overflow:hidden;
    aspect-ratio:4/5;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

.product-badge{
    position:absolute;
    top:18px;
    left:18px;
    background:#000;
    color:#fff;
    padding:7px 15px;
    border-radius:30px;
    font-size:11px;
    letter-spacing:2px;
    font-weight:700;
    z-index:5;
}

.wishlist-icon{
    position:absolute;
    top:18px;
    right:18px;
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:#fff;
    font-size:22px;
    cursor:pointer;
    opacity:0;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.product-card:hover .wishlist-icon{
    opacity:1;
    transform:translateY(0);
}

.quick-action{
    position:absolute;
    bottom:-70px;
    left:0;
    width:100%;
    padding:18px;
    text-align:center;
    background:#000;
    color:#fff;
    font-weight:700;
    letter-spacing:2px;
    transition:.35s;
}

.product-card:hover .quick-action{
    bottom:0;
}

.product-info{
    padding:22px;
}

.product-info h3{
    font-size:22px;
    margin-bottom:10px;
    font-weight:700;
}

.rating{
    color:#f4b400;
    margin-bottom:12px;
    letter-spacing:2px;
}

.product-price{
    font-size:30px;
    font-weight:800;
}

.product-price span{
    color:#999;
    text-decoration:line-through;
    font-size:18px;
    margin-left:10px;
}

.discount{
    margin-top:12px;
    display:inline-block;
    background:#efefef;
    border-radius:30px;
    padding:7px 14px;
    font-size:13px;
    font-weight:700;
}

.card-btn{
    display:block;
    margin-top:22px;
    text-align:center;
    background:#000;
    color:#fff;
    padding:16px;
    border-radius:12px;
    font-weight:700;
    transition:.35s;
}

.card-btn:hover{
    background:#444;
}



.product-page{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:

    1.2fr .8fr;

    gap:60px;

    padding:60px;

}

.product-gallery{

    display:grid;

    grid-template-columns:

    100px 1fr;

    gap:20px;

}

.thumbs{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.thumb{

    width:100%;

    border-radius:12px;

    cursor:pointer;

}

.main-image{

    overflow:hidden;

    border-radius:16px;

}

.product-detail-image{

    transition:.4s;

}

.main-image:hover

.product-detail-image{

    transform:scale(1.08);

}

.product-details{

    position:sticky;

    top:120px;

    align-self:start;

}

.product-details h1{

    font-size:42px;

    margin-bottom:20px;

}

.detail-price{

    font-size:32px;

    font-weight:700;

}

.detail-price span{

    margin-left:15px;

    color:#999;

    text-decoration:line-through;

    font-size:22px;

}

.size-section{

    margin-top:40px;

}

.size-grid{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-top:15px;

}

.size-btn{

    width:60px;

    height:60px;

    border:1px solid #ddd;

    background:#fff;

    border-radius:50%;

    cursor:pointer;

    font-weight:700;

    transition:.2s;

}

.size-btn:hover{

    border-color:#000;

    transform:

    translateY(-3px)

    scale(1.05);

    box-shadow:

    0 10px 25px rgba(0,0,0,.10);

}

.size-btn.active{

    background:#000;

    color:#fff;

    border-color:#000;

}

.add-cart-btn{

    margin-top:40px;

    width:100%;

    height:60px;

    border:none;

    background:#000;

    color:#fff;

    font-size:15px;

    font-weight:700;

    border-radius:12px;

    cursor:pointer;

}

.active-size{

    background:#000;

    color:#fff;

    border-color:#000;

}

.cart-total{

    margin-top:40px;

    font-size:28px;

    font-weight:700;

}


/* PREMIUM CHECKOUT */

.checkout-page{

max-width:1300px;

margin:80px auto;

display:grid;

grid-template-columns:1.4fr .8fr;

gap:60px;

padding:20px;

}

.checkout-form,

.checkout-summary{

background:#fff;

border-radius:28px;

padding:45px;

box-shadow:

0 30px 80px rgba(0,0,0,.08);

}

.checkout-form h1{

font-size:42px;

margin-bottom:30px;

}

.coupon-box{

background:#111;

color:white;

padding:20px;

border-radius:14px;

margin-bottom:30px;

font-weight:600;

}

.coupon-box span{

color:#bbb;

margin-left:10px;

}

.form-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

}

.checkout-form input,

.checkout-form textarea{

width:100%;

height:58px;

padding:18px;

margin-bottom:18px;

border-radius:12px;

border:1px solid #ddd;

font-size:15px;

outline:none;

transition:.3s;

}

.checkout-form textarea{

height:140px;

resize:none;

}

.checkout-form input:focus,

.checkout-form textarea:focus{

border-color:#000;

box-shadow:

0 0 0 3px rgba(0,0,0,.08);

}


/* =========================
   PAYMENT OPTIONS
========================= */


.payment-option{

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px 28px;

    border:1px solid #ddd;

    border-radius:14px;

    margin-bottom:18px;

    cursor:pointer;

    transition:.3s;

}


/* hide default radio */

.payment-option input[type="radio"]{

    appearance:none;

    -webkit-appearance:none;

    width:20px;

    height:20px;

    flex:0 0 20px;

    border:1.5px solid #777;

    border-radius:50%;

    position:relative;

    margin:0;

}


/* black dot */

.payment-option input[type="radio"]::after{

    content:"";

    position:absolute;

    width:10px;

    height:10px;

    background:#000;

    border-radius:50%;

    top:50%;

    left:50%;

    transform:

    translate(-50%,-50%)

    scale(0);

    transition:.2s;

}


.payment-option input[type="radio"]:checked::after{

    transform:

    translate(-50%,-50%)

    scale(1);

}


.payment-option input[type="radio"]:checked{

    border-color:#000;

}


/* selected payment box */

.payment-option:has(input:checked){

    border-color:#000;

    background:#f8f8f8;

}


/* text spacing */

.payment-option div{

    line-height:1.3;

}


.payment-option strong{

    display:block;

    font-size:15px;

    font-weight:800;

}


.payment-option small{

    display:block;

    margin-top:4px;

    font-size:13px;

    color:#777;

}


/* animation */

.payment-option:hover{

    transform:translateY(-3px);

    box-shadow:

    0 15px 35px rgba(0,0,0,.08);

}


.checkout-summary h2{

font-size:28px;

margin-bottom:30px;

}

.summary-row{

display:flex;

justify-content:space-between;

padding:15px 0;

border-bottom:1px solid #eee;

}

.summary-total{

font-size:32px;

font-weight:800;

margin-top:30px;

}

.checkout-btn{

height:65px;

border:none;

width:100%;

margin-top:30px;

background:#000;

color:#fff;

border-radius:14px;

font-weight:800;

cursor:pointer;

transition:.3s;

}

.checkout-btn:hover{

transform:translateY(-3px);

box-shadow:

0 20px 40px rgba(0,0,0,.25);

}


/* =========================
   ZYROOO FOOTER
========================= */


.footer{

    background:#000;

    color:#fff;

    margin-top:120px;

}


.footer-inner{

    width:95%;

    max-width:1400px;

    margin:auto;

    padding:80px 20px;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

}


/* BRAND */


.footer h3{

    font-size:42px;

    font-weight:800;

    letter-spacing:4px;

    margin-bottom:18px;

}


.footer p{

    color:#aaa;

    line-height:1.7;

    max-width:320px;

    font-size:14px;

}


/* HEADINGS */


.footer h4{

    font-size:16px;

    font-weight:700;

    margin-bottom:25px;

    letter-spacing:1px;

}


/* LINKS */


.footer a{

    display:block;

    color:#aaa;

    margin-bottom:14px;

    font-size:14px;

    transition:.3s;

}


.footer a:hover{

    color:#fff;

    transform:translateX(5px);

}


/* COPYRIGHT */


.footer-bottom{

    border-top:1px solid #222;

    text-align:center;

    padding:25px;

    color:#777;

    font-size:13px;

    letter-spacing:1px;

}


/* =========================
   RESPONSIVE
========================= */


@media(max-width:900px){


    .footer-inner{

        grid-template-columns:1fr 1fr;

        gap:40px;

    }


}


@media(max-width:600px){


    .footer{

        margin-top:70px;

    }


    .footer-inner{

        grid-template-columns:1fr;

        padding:50px 25px;

    }


    .footer h3{

        font-size:34px;

    }


}
