/*======================================
        GOOGLE FONT
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:'Poppins',sans-serif;
}
html,
body{
    width:100%;
    overflow-x:hidden;
    scroll-behavior:smooth;
    background:#050505;
    color:#fff;
    font-family:'Poppins',sans-serif;
}

body{
    min-height:100vh;
    background:
    radial-gradient(circle at top,#5c4300 0%,transparent 35%),
    radial-gradient(circle at bottom,#2d2200 0%,transparent 30%),
    linear-gradient(180deg,#0a0a0a 0%,#111111 40%,#000000 100%);
    position:relative;
}
body::before{
    content:"";
    position:fixed;
    inset:0;
    background-image:
    radial-gradient(#FFD700 1.2px,transparent 1.2px);
    background-size:40px 40px;
    opacity:.08;
    animation:particles 20s linear infinite;
    pointer-events:none;
}

@keyframes particles{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(-40px);
    }
}
body::after{
    content:"";
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at 50% 20%,rgba(255,215,0,.12),transparent 40%);
    pointer-events:none;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

img{
    max-width:100%;
    display:block;
}

section{
    width:100%;
    padding:100px 8%;
}

@media(max-width:992px){
    section{
        padding:80px 6%;
    }
}

@media(max-width:768px){
    section{
        padding:70px 5%;
    }
}

@media(max-width:480px){
    section{
        padding:60px 20px;
    }
}
.gold-line{
    width:120px;
    height:3px;
    background:linear-gradient(90deg,#8d6400,#FFD700,#8d6400);
    margin:20px auto;
    border-radius:20px;
    box-shadow:0 0 15px #FFD700;
}

body{
    background:#090909;
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*======================================
        HEADER
======================================*/

.header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    padding:20px 8%;
    transition:.4s;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:32px;
    font-weight:700;
    color:#fff;
}

.logo span{
    color:gold;
}

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    color:#fff;
    font-size:16px;
    transition:.3s;
}

.nav-links a:hover{
    color:#d4af37;
}

.menu-btn{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/*======================================
        HERO
======================================*/

.hero{
    min-height:calc(100vh - 80px);
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
    padding:90px 8% 40px;
    position:relative;
    overflow:hidden;
}

.hero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0,0,0,.35));

}

.hero-content{
    position:relative;
    z-index:2;
    max-width:620px;
    margin-top:0;
}

.subtitle{

    display:inline-block;

    color:#d4af37;

    font-size:17px;

    letter-spacing:2px;

    margin-bottom:20px;

}

.hero h1{

    font-size:68px;

    line-height:1.1;

    margin-bottom:20px;

}

.hero h1 span{

    color:#d4af37;

}

.hero p{

    color:#d7d7d7;

    line-height:1.8;

    font-size:18px;

    margin-bottom:35px;

}

/*======================================
        BUTTONS
======================================*/

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn{

    padding:15px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}

.btn-gold{

    background:#d4af37;

    color:#111;

}

.btn-gold:hover{

    transform:translateY(-5px);

    box-shadow:0 0 30px #d4af37;

}

.btn-outline{

    border:2px solid #d4af37;

    color:#fff;

}

.btn-outline:hover{

    background:#d4af37;

    color:#111;

}

/*======================================
        INFO
======================================*/

.hero-info{

    display:flex;

    gap:50px;

    margin-top:70px;

}

.info-box h2{

    color:#d4af37;

    font-size:36px;

}

.info-box span{

    color:#bbb;

}

/*======================================
        IMAGE
======================================*/

.hero-image{
    position:relative;
    z-index:2;
    margin:0;
}
.hero-image img{

    width:470px;

    border-radius:50%;

    animation:float 5s ease-in-out infinite;

}

.circle{

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:#d4af37;

    filter:blur(130px);

    opacity:.18;

    z-index:-1;

}

/*======================================
        ANIMATION
======================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

.hero{

flex-direction:column-reverse;

text-align:center;

padding-top:170px;

}

.hero-image img{

width:320px;

margin-bottom:50px;

}

.hero h1{

font-size:48px;

}

.hero-info{

justify-content:center;

flex-wrap:wrap;

}

.nav-links{

display:none;

}

.menu-btn{

display:block;

}

}
/*==========================
        CATEGORIES
==========================*/

.categories{

    padding:120px 8%;

    background:#0d0d0d;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#d4af37;

    font-size:18px;

    letter-spacing:2px;

}

.section-title h2{

    font-size:48px;

    margin:15px 0;

}

.section-title p{

    color:#bdbdbd;

    max-width:650px;

    margin:auto;

    line-height:1.8;

}

.category-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.category-card{

    background:#151515;

    border:1px solid rgba(212,175,55,.2);

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

    transition:.4s;

}

.category-card i{

    font-size:55px;

    color:#d4af37;

    margin-bottom:25px;

}

.category-card h3{

    font-size:28px;

    margin-bottom:15px;

}

.category-card p{

    color:#c8c8c8;

    line-height:1.8;

}

.category-card:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

    box-shadow:0 0 35px rgba(212,175,55,.35);

}
/*==========================
        PRODUCTS
==========================*/

.products{

    padding:120px 8%;

    background:#111;

}

.products-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.product-card{

    position:relative;

    background:#181818;

    border-radius:22px;

    padding:30px;

    text-align:center;

    border:1px solid rgba(212,175,55,.15);

    transition:.4s;

    overflow:hidden;

}

.product-card:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

    box-shadow:0 0 35px rgba(212,175,55,.35);

}

.product-card img{

    width:220px;

    height:220px;

    object-fit:contain;

    margin-bottom:20px;

    transition:.4s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-card h3{

    font-size:24px;

    margin-bottom:12px;

}

.stars{

    color:#d4af37;

    font-size:18px;

    margin-bottom:15px;

}

.product-card h4{

    color:#fff;

    font-size:26px;

    margin-bottom:25px;

}

.buy-btn{

    display:inline-block;

    padding:14px 34px;

    border-radius:40px;

    background:#d4af37;

    color:#111;

    font-weight:600;

    transition:.35s;

}

.buy-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 0 25px #d4af37;

}

.badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#d4af37;

    color:#111;

    font-size:13px;

    font-weight:700;

    padding:7px 14px;

    border-radius:30px;

}
/*==========================
        ABOUT
==========================*/

.about{

    padding:120px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

    background:#0d0d0d;

    flex-wrap:wrap;

}

.about-image img{

    width:420px;

    border-radius:50%;

    box-shadow:0 0 40px rgba(212,175,55,.35);

}

.about-content{

    flex:1;

}

.about-content span{

    color:#d4af37;

    letter-spacing:2px;

}

.about-content h2{

    font-size:48px;

    margin:20px 0;

}

.about-content p{

    color:#cfcfcf;

    line-height:1.9;

}

.about-stats{

    display:flex;

    gap:40px;

    margin-top:40px;

    flex-wrap:wrap;

}

.stat h3{

    font-size:36px;

    color:#d4af37;

}

.stat p{

    color:#aaa;

}

/*==========================
      WHY US
==========================*/

.why-us{

    padding:120px 8%;

    background:#111;

}

.why-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.why-card{

    background:#181818;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    border:1px solid rgba(212,175,55,.15);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 0 30px rgba(212,175,55,.30);

    border-color:#d4af37;

}

.why-card i{

    font-size:55px;

    color:#d4af37;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#cfcfcf;

    line-height:1.8;

}
/*==========================
    TESTIMONIALS
==========================*/

.testimonials{

    padding:120px 8%;

    background:#0d0d0d;

}

.testimonial-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.testimonial-card{

    background:#181818;

    padding:35px;

    border-radius:20px;

    border:1px solid rgba(212,175,55,.15);

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 0 30px rgba(212,175,55,.30);

}

.testimonial-card i{

    color:#d4af37;

    font-size:40px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#ddd;

    line-height:1.8;

}

.testimonial-card h3{

    margin-top:20px;

    color:#d4af37;

}

/*==========================
      CONTACT
==========================*/

.contact{

    padding:120px 8%;

    background:#111;

}

.contact-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.contact-box{

    background:#181818;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.4s;

}

.contact-box:hover{

    transform:translateY(-10px);

    box-shadow:0 0 30px rgba(212,175,55,.30);

}

.contact-box i{

    font-size:50px;

    color:#d4af37;

    margin-bottom:20px;

}

.contact-box h3{

    margin-bottom:15px;

}

.contact-box a{

    color:#fff;

}

/*==========================
      FOOTER
==========================*/

footer{

    padding:60px 8%;

    background:#090909;

    text-align:center;

}

footer h2{

    font-size:40px;

}

footer span{

    color:#d4af37;

}

footer p{

    color:#aaa;

    margin:20px 0;

}

.footer-icons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin:25px 0;

}

.footer-icons a{

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#181818;

    color:#d4af37;

    transition:.35s;

}

.footer-icons a:hover{

    background:#d4af37;

    color:#111;

    transform:translateY(-6px);

}

.copyright{

    margin-top:30px;

    font-size:15px;

}
/*==========================
      MOBILE MENU
==========================*/

@media(max-width:991px){

.nav-links{

position:fixed;

top:90px;

right:-100%;

width:280px;

height:calc(100vh - 90px);

background:#111;

display:flex;

flex-direction:column;

justify-content:flex-start;

align-items:center;

padding-top:50px;

gap:35px;

transition:.4s;

}

.nav-links.active{

right:0;

}

.nav-links a.active{

color:#d4af37;

}

}
/*==========================
        LOADER
==========================*/

#loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

background:#090909;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

transition:.6s;

}

.loader-logo{

font-size:42px;

font-weight:700;

color:white;

}

.loader-logo span{

color:#d4af37;

}

/*==========================
      BACK TO TOP
==========================*/

#topBtn{

position:fixed;

right:30px;

bottom:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#d4af37;

color:#111;

font-size:20px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:999;

}

#topBtn.show{

opacity:1;

visibility:visible;

}

#topBtn:hover{

transform:translateY(-6px);

box-shadow:0 0 25px #d4af37;

}

/*==========================
      SCROLL ANIMATION
==========================*/

.hidden-element{

opacity:0;

transform:translateY(80px);

transition:1s;

}

.show-element{

opacity:1;

transform:translateY(0);

}
/*==========================
      FLOATING GLOW
==========================*/

.circle{

animation:glowMove 8s ease-in-out infinite;

}

@keyframes glowMove{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-30px);

}

100%{

transform:translateY(0);

}

}

/*==========================
      HERO IMAGE
==========================*/

.hero-image img{

transition:.25s;

will-change:transform;

}

/*==========================
      PRODUCT TILT
==========================*/

.product-card{

transform-style:preserve-3d;

transition:.25s;

cursor:pointer;

}

/*==========================
      GOLD GLOW
==========================*/

.product-card::before{

content:"";

position:absolute;

width:180px;

height:180px;

background:rgba(212,175,55,.08);

border-radius:50%;

top:-60px;

left:-60px;

filter:blur(35px);

transition:.4s;

}

.product-card:hover::before{

transform:scale(1.5);

}

/*==========================
      BUTTON EFFECT
==========================*/

.buy-btn{

position:relative;

overflow:hidden;

}

.buy-btn::after{

content:"";

position:absolute;

top:0;

left:-120%;

width:100%;

height:100%;

background:rgba(255,255,255,.25);

transform:skewX(-30deg);

transition:.6s;

}

.buy-btn:hover::after{

left:130%;

}
/*==========================
    SCROLL BAR
==========================*/

#progress-bar{

position:fixed;

top:0;

left:0;

width:0;

height:4px;

background:#d4af37;

z-index:99999;

}

/*==========================
    CURSOR
==========================*/

.cursor{

position:fixed;

width:18px;

height:18px;

border:2px solid white;

border-radius:50%;

pointer-events:none;

transform:translate(-50%,-50%);

transition:.15s;

z-index:99999;

}

.cursor2{

position:fixed;

width:8px;

height:8px;

background:#d4af37;

border-radius:50%;

pointer-events:none;

transform:translate(-50%,-50%);

z-index:99999;

}

/*==========================
    SCROLLBAR
==========================*/

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-track{

background:#111;

}

::-webkit-scrollbar-thumb{

background:#d4af37;

border-radius:20px;

}

/*==========================
    SELECTION
==========================*/

::selection{

background:#d4af37;

color:#111;

}
/*======================================
        BODY
======================================*/

html{
    scroll-behavior:smooth;
}



/* Glow 2 */

.bg-glow{

    position:fixed;

    width:600px;

    height:600px;

    border-radius:50%;

    background:#d4af37;

    filter:blur(180px);

    opacity:.05;

    right:-200px;

    bottom:-200px;

    z-index:-2;

    animation:moveGlow2 20s ease-in-out infinite;

    pointer-events:none;

}

@keyframes moveGlow1{

0%,100%{

transform:translate(0,0);

}

50%{

transform:translate(180px,120px);

}

}

@keyframes moveGlow2{

0%,100%{

transform:translate(0,0);

}

50%{

transform:translate(-150px,-120px);

}

}
/*======================================
        RESPONSIVE
======================================*/

/* Laptop */
@media (max-width:1200px){

.hero{

padding:120px 6%;

gap:50px;

}

.hero-content h1{

font-size:65px;

}

.hero-image img{

width:380px;

height:380px;

}

}

/* Tablet */
@media (max-width:992px){

.header{

padding:20px 5%;

}

.hero{

flex-direction:column-reverse;

justify-content:center;

text-align:center;

padding:120px 5% 80px;

}

.hero-content{

width:100%;

}

.hero-content h1{

font-size:55px;

line-height:1.1;

}

.hero-content p{

margin:auto;

max-width:650px;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

margin-bottom:40px;

}

.hero-image img{

width:320px;

height:320px;

}

.about{

flex-direction:column;

text-align:center;

}

.about-stats{

justify-content:center;

}

.products-container,
.category-container,
.why-container,
.contact-container,
.testimonial-container{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */
@media (max-width:768px){

.hero{

padding-top:100px;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:16px;

}

.hero-image img{

width:260px;

height:260px;

}

.products-container,
.category-container,
.why-container,
.contact-container,
.testimonial-container{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

.about-image img{

width:280px;

}

.about-stats{

flex-direction:column;

gap:25px;

}

footer h2{

font-size:30px;

}

}

/* Small Phones */
@media (max-width:480px){

.hero-content h1{

font-size:34px;

}

.hero-content p{

font-size:15px;

}

.hero-image img{

width:220px;

height:220px;

}

.btn{

width:100%;

text-align:center;

}

.hero-buttons{

flex-direction:column;

gap:15px;

}

.logo{

font-size:26px;

}

.section-title h2{

font-size:28px;

}

.product-card{

padding:20px;

}

.product-card img{

width:180px;

height:180px;

}

}
.yh-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    margin-top:15px;
    border-radius:50%;
    background:linear-gradient(135deg,#d4af37,#f5d76e);
    color:#111;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    transition:.35s ease;
    box-shadow:0 0 15px rgba(212,175,55,.35);
}

.yh-btn:hover{
    transform:translateY(-5px) scale(1.08);
    box-shadow:0 0 25px rgba(212,175,55,.8);
}