*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{

    font-family:'Poppins',sans-serif;

    background:#080808;

    color:#f5f5f5;

    overflow-x:hidden;

    transition:.4s;

}


body.dark{

    background:#080808;

    color:#ffffff;

}



body.dark nav,
body.dark .card,
body.dark .city,
body.dark footer{

    background:rgba(18,18,18,.88);

    border:1px solid rgba(176,141,87,.15);

}



body.dark p{

    color:#b8b8b8;

}




body::before{

    content:"";

    position:fixed;

    inset:0;

    background:url("../images/background.jpg") center/cover;

    opacity:.10;

    z-index:-5;

}




.background-blur{

    position:fixed;

    border-radius:50%;

    filter:blur(130px);

    z-index:-4;

    animation:move 15s infinite alternate;

}



.blur1{

    width:350px;

    height:350px;

    background:#123d26;

    top:-100px;

    left:-100px;

}



.blur2{

    width:300px;

    height:300px;

    background:#d4af37;

    right:-100px;

    top:250px;

}



.blur3{

    width:250px;

    height:250px;

    background:#151515;

    bottom:-100px;

    left:40%;

}



@keyframes move{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(50px);

    }

}




#loader{

    position:fixed;

    inset:0;

    background:#080808;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

}



.spinner{

    width:65px;

    height:65px;

    border:6px solid #333;

    border-top-color:#d4af37;

    border-radius:50%;

    animation:spin .8s linear infinite;

}



@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

header{

    position:sticky;

    top:0;

    z-index:1000;

}



nav{

    width:84%;

    max-width:1550px;

    margin:20px auto;

    padding:18px 35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(15,15,15,.88);

    backdrop-filter:blur(20px);

    border-radius:20px;

    border:1px solid rgba(176,141,87,.18);

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}



.logo{

    display:flex;

    align-items:center;

    gap:25px;

    font-size:28px;

    font-weight:700;

}



.logo img{

    width:75px;

    height:75px;

    object-fit:contain;

    border-radius:15px;

    transition:.35s;

}



.logo .brand,
.logo .brand span{

    color:#d4af37;

}


.logo:hover img{

    transform:scale(1.12) rotate(8deg);

}


.logo:hover .brand{

    animation:logoGlow .8s ease;

}



@keyframes logoGlow{

    0%{

        transform:translateY(0);

        text-shadow:0 0 0 transparent;

    }


    50%{

        transform:translateY(-5px);

        text-shadow:0 0 20px #d4af37;

    }


    100%{

        transform:translateY(0);

        text-shadow:0 0 0 transparent;

    }

}




nav ul{

    display:flex;

    list-style:none;

    gap:70px;

}




nav ul a{

    text-decoration:none;

    color:white;

    font-weight:500;

    padding:12px 35px;

    border-radius:14px;

    background:rgba(255,255,255,.05);

    transition:.3s;

}



nav ul a:hover{

    color:#080808;

    background:#d4af37;

    transform:translateY(-3px);

}




#theme{

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#d4af37;

    color:#080808;

    cursor:pointer;

    transition:.3s;

}



#theme:hover{

    transform:rotate(180deg);

}






.hero{

    width:84%;

    max-width:1550px;

    min-height:80vh;

    margin:60px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}



.hero-left h1{

    font-size:58px;

    line-height:1.15;

    color:white;

    text-shadow:0 5px 30px rgba(176,141,87,.25);

}



.hero-left p{

    margin:30px 0 40px;

    max-width:600px;

    color:#b8b8b8;

    font-size:18px;

    line-height:1.8;

}



.btn{

    display:inline-block;

    padding:18px 40px;

    border-radius:50px;

    background:#d4af37;

    color:#080808;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}



.btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 40px rgba(176,141,87,.5);

    letter-spacing:1px;

}




.hero-right img{

    width:85%;

    max-width:500px;

    display:block;

    margin:auto;

    border-radius:30px;

    box-shadow:0 30px 80px rgba(0,0,0,.7);

    transition:.4s;

}



.hero-right img:hover{

    transform:scale(1.04);

}

.search{

    width:70%;

    max-width:850px;

    margin:0 auto 70px;

}



.search input{

    width:100%;

    padding:20px 25px;

    border:none;

    outline:none;

    border-radius:20px;

    font-size:17px;

    background:#111;

    color:white;

    border:1px solid rgba(176,141,87,.2);

    box-shadow:0 10px 35px rgba(0,0,0,.5);

}



.search input::placeholder{

    color:#777;

}





.products{

    width:84%;

    max-width:1550px;

    margin:auto;

}



.products h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

    color:#d4af37;

}




.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}





.card{

    background:rgba(18,18,18,.9);

    border-radius:25px;

    overflow:hidden;

    border:1px solid rgba(176,141,87,.15);

    box-shadow:0 20px 50px rgba(0,0,0,.45);

    transition:.35s;

}



.card{

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border .35s ease;

}


.card:hover{

    transform:
    translateY(-15px)
    scale(1.03);


    border-color:#d4af37;


    box-shadow:
    0 30px 70px rgba(176,141,87,.35);


}



.card:hover img{

    transform:scale(1.08);

}



.card img{

    transition:.45s ease;

}



.card img{

    width:100%;

    height:260px;

    object-fit:cover;

}




.card h3{

    padding:25px 25px 10px;

    font-size:23px;

    color:white;

}





.card p{

    padding:0 25px;

    color:#aaa;

    line-height:1.7;

    min-height:75px;

}




.card button{

    margin:25px;

    width:calc(100% - 50px);

    padding:15px;

    border:none;

    border-radius:15px;

    background:#25D366;

    color:white;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}




.card button:hover{

    background:#1faa52;

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(37,211,102,.25);

}







/* WHATSAPP */

.telegram{

    width:84%;

    max-width:1550px;

    margin:120px auto 80px;

}



.telegram h2{

    text-align:center;

    font-size:42px;

    margin-bottom:50px;

    color:#d4af37;

}




.city-grid{

    display:flex;

    justify-content:center;

}



.city{

    width:100%;

    max-width:500px;

    padding:40px 20px;

    text-decoration:none;

    color:white;

    text-align:center;

    background:rgba(18,18,18,.9);

    border-radius:25px;

    border:1px solid rgba(176,141,87,.2);

    box-shadow:0 20px 45px rgba(0,0,0,.45);

    transition:.35s;

}




.city i{

    display:block;

    font-size:50px;

    margin-bottom:20px;

    color:#25D366;

}




.city:hover{

    transform:translateY(-10px);

    border-color:#25D366;

    box-shadow:0 20px 45px rgba(37,211,102,.2);

}

footer{

    margin-top:80px;

    padding:70px 20px;

    text-align:center;

    background:#0d0d0d;

    border-top:1px solid rgba(176,141,87,.15);

}



footer h2{

    font-size:36px;

    margin-bottom:10px;

    color:#d4af37;

}



footer p{

    color:#999;

}







#topBtn{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#d4af37;

    color:#080808;

    font-size:20px;

    cursor:pointer;

    display:none;

    align-items:center;

    justify-content:center;

    z-index:999;

}



#topBtn:hover{

    transform:translateY(-5px);

}







/* PRODUCT POPUP */


.modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(10px);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

    padding:20px;

}




.modal-box{

    width:100%;

    max-width:500px;

    background:#111;

    border-radius:30px;

    padding:30px;

    text-align:center;

    position:relative;

    border:1px solid rgba(176,141,87,.25);

    box-shadow:0 30px 80px rgba(0,0,0,.8);

    animation:popupShow .35s ease;

}



@keyframes popupShow{

    from{

        opacity:0;

        transform:scale(.8) translateY(30px);

    }


    to{

        opacity:1;

        transform:scale(1) translateY(0);

    }

}





.modal-box img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:22px;

}




.modal-box h2{

    margin:20px 0 10px;

    font-size:28px;

    color:#d4af37;

}





.modal-box p{

    color:#aaa;

    line-height:1.7;

    margin-bottom:15px;

}




.modal-box h3{

    font-size:26px;

    color:#25D366;

    margin:20px 0;

}





.close{

    position:absolute;

    right:20px;

    top:20px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#d4af37;

    color:#080808;

    cursor:pointer;

}




.close:hover{

    transform:rotate(90deg);

}





#modalWhatsapp{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    width:100%;

    padding:16px;

    background:#25D366;

    border-radius:16px;

    color:white;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}





#modalWhatsapp:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(37,211,102,.35);

}







button{

    position:relative;

    overflow:hidden;

}



.ripple{

    position:absolute;

    background:rgba(255,255,255,.35);

    border-radius:50%;

    transform:scale(0);

    animation:ripple .6s linear;

    pointer-events:none;

}



@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}








@media(max-width:1200px){


.product-grid{

    grid-template-columns:repeat(2,1fr);

}


.hero-left h1{

    font-size:52px;

}


}







@media(max-width:900px){


.hero{

    grid-template-columns:1fr;

    text-align:center;

}



.hero-left p{

    margin-left:auto;

    margin-right:auto;

}



nav ul{

    display:none;

}



}








@media(max-width:600px){


nav{

    width:92%;

    padding:12px 15px;

}



.logo img{

    width:50px;

    height:50px;

}



.logo{

    font-size:20px;

    gap:10px;

}



.hero{

    width:90%;

    margin:30px auto;

}



.hero-left h1{

    font-size:34px;

}



.products,
.telegram{

    width:90%;

}



.product-grid{

    grid-template-columns:1fr;

}



.products h2,
.telegram h2{

    font-size:32px;

}



.card img{

    height:230px;

}



.modal-box{

    padding:20px;

}



.modal-box img{

    height:220px;

}



}

/* ==========================
   LIGHT THEME
========================== */

body:not(.dark){

    background:#f5f5f5;

    color:#111;

}


body:not(.dark) nav{

    background:rgba(255,255,255,.85);

}


body:not(.dark) nav ul a{

    color:#111;

    background:rgba(0,0,0,.05);

}


body:not(.dark) .hero-left h1{

    color:#111;

}


body:not(.dark) .hero-left p{

    color:#555;

}


body:not(.dark) .card{

    background:white;

    color:#111;

}


body:not(.dark) .card h3{

    color:#111;

}


body:not(.dark) .card p{

    color:#666;

}


body:not(.dark) .city{

    background:white;

    color:#111;

}


body:not(.dark) footer{

    background:white;

}