/*=========================================
      SHRI GURUDEV MART PREMIUM V1
=========================================*/

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --black:#050505;
    --white:#ffffff;
    --gold:#D4AF37;
    --gray:#bfbfbf;

    --glass:rgba(255,255,255,.06);
    --border:rgba(255,255,255,.08);

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--black);

    color:var(--white);

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

section{

    padding:120px 8%;

}

/*=========================
        Loader
=========================*/

#loader{

    position:fixed;

    inset:0;

    background:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:1s;

}

.loader-inner{

    display:flex;

    gap:8px;

    font-size:48px;

    font-weight:800;

    letter-spacing:3px;

}

.loader-inner span{

    animation:fadeUp .8s forwards;

    opacity:0;

}

.loader-inner span:nth-child(2){animation-delay:.08s;}
.loader-inner span:nth-child(3){animation-delay:.16s;}
.loader-inner span:nth-child(4){animation-delay:.24s;}
.loader-inner span:nth-child(6){animation-delay:.32s;}
.loader-inner span:nth-child(7){animation-delay:.40s;}
.loader-inner span:nth-child(8){animation-delay:.48s;}
.loader-inner span:nth-child(9){animation-delay:.56s;}
.loader-inner span:nth-child(10){animation-delay:.64s;}
.loader-inner span:nth-child(11){animation-delay:.72s;}
.loader-inner span:nth-child(12){animation-delay:.80s;}

.space{

    width:25px;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================
        Cursor
=========================*/

.cursor{

    width:18px;

    height:18px;

    border:2px solid var(--gold);

    border-radius:50%;

    position:fixed;

    left:0;

    top:0;

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:999999;

    transition:.08s;

}

/*=========================
        Header
=========================*/

.header{

    position:fixed;

    width:92%;

    left:50%;

    top:20px;

    transform:translateX(-50%);

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 35px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:80px;

    z-index:999;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:55px;

}

.logo h2{

    font-size:20px;

    font-weight:800;

}

.logo p{

    font-size:12px;

    color:var(--gold);

    letter-spacing:3px;

}

nav{

    display:flex;

    gap:40px;

}

nav a{

    position:relative;

    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}

nav a:hover{

    color:var(--gold);

}

nav a:hover::after{

    width:100%;

}
/*=========================================
            HERO SECTION
=========================================*/

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.08);
    animation:heroZoom 18s linear infinite alternate;
}

@keyframes heroZoom{
    from{
        transform:scale(1.08);
    }
    to{
        transform:scale(1.18);
    }
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(to bottom,
        rgba(0,0,0,.35),
        rgba(0,0,0,.72)),
        radial-gradient(circle at center,
        rgba(212,175,55,.08),
        transparent 70%);
}

.hero-content{

    position:relative;

    z-index:5;

    width:90%;

    max-width:1100px;

    text-align:center;

}

.hero-tag{

    display:inline-block;

    color:var(--gold);

    letter-spacing:6px;

    font-size:14px;

    text-transform:uppercase;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:78px;

    line-height:1;

    font-weight:900;

    margin-bottom:25px;

    text-transform:uppercase;

}

.hero-content p{

    color:#d5d5d5;

    font-size:20px;

    max-width:760px;

    margin:auto;

    line-height:1.8;

}

.hero-buttons{

    margin-top:55px;

    display:flex;

    justify-content:center;

    gap:20px;

}

/*==============================
        BUTTONS
==============================*/

.btn{

    padding:18px 46px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:var(--gold);

    color:#000;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(212,175,55,.35);

}

.btn-outline{

    border:1px solid rgba(255,255,255,.2);

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(15px);

}

.btn-outline:hover{

    border-color:var(--gold);

    color:var(--gold);

}

/*==============================
    SCROLL INDICATOR
==============================*/

.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

}

.scroll-indicator span{

    display:block;

    width:2px;

    height:70px;

    background:linear-gradient(

        transparent,

        var(--gold),

        transparent

    );

    animation:scrollMove 2s infinite;

}

@keyframes scrollMove{

    0%{

        opacity:0;

        transform:translateY(-15px);

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translateY(15px);

    }

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:1100px){

.hero-content h1{

font-size:58px;

}

}

@media(max-width:768px){

.header{

padding:15px 20px;

}

nav{

display:none;

}

.logo h2{

font-size:16px;

}

.logo img{

width:42px;

}

.hero-content h1{

font-size:40px;

}

.hero-content p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.btn{

width:240px;

text-align:center;

}

.scroll-indicator{

display:none;

}

}
/*==================================================
                ABOUT SECTION
==================================================*/

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

.about{

    background:#070707;

}

.about .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    overflow:hidden;

    border-radius:30px;

}

.about-image img{

    height:700px;

    object-fit:cover;

    transition:.6s;

}

.about-image:hover img{

    transform:scale(1.08);

}

.about-content span{

    color:var(--gold);

    letter-spacing:5px;

    text-transform:uppercase;

    font-size:14px;

}

.about-content h2{

    margin:25px 0;

    font-size:58px;

    line-height:1.15;

    font-weight:800;

}

.about-content p{

    color:#cfcfcf;

    font-size:18px;

    line-height:1.9;

}

.about-stats{

    display:flex;

    gap:50px;

    margin-top:60px;

}

.about-stats div h3{

    font-size:48px;

    color:var(--gold);

}

.about-stats div p{

    margin-top:10px;

    color:#999;

}



/*==================================================
            SECTION TITLE
==================================================*/

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    color:var(--gold);

    letter-spacing:5px;

    font-size:14px;

}

.section-heading h2{

    margin-top:15px;

    font-size:58px;

}



/*==================================================
            PRODUCTS
==================================================*/

.products{

    background:#050505;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.product-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:45px;

    backdrop-filter:blur(15px);

    transition:.45s;

    position:relative;

    overflow:hidden;

}

.product-card::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:rgba(212,175,55,.18);

    border-radius:50%;

    filter:blur(90px);

    top:-120px;

    right:-120px;

    opacity:0;

    transition:.5s;

}

.product-card:hover::before{

    opacity:1;

}

.product-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

}

.product-card h3{

    font-size:30px;

    margin-bottom:20px;

}

.product-card p{

    color:#cfcfcf;

    line-height:1.8;

}



/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:1000px){

.about .container{

grid-template-columns:1fr;

}

.about-image img{

height:500px;

}

.products-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.section-heading h2{

font-size:36px;

}

.about-content h2{

font-size:38px;

}

.about-stats{

flex-direction:column;

gap:25px;

}

.products-grid{

grid-template-columns:1fr;

}

}
/*====================================================
                PERFUMEKART
====================================================*/

.perfume{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:100px;

    background:#000;

}

.perfume-left{

    display:flex;

    justify-content:center;

}

.perfume-left img{

    width:100%;

    max-width:520px;

    transition:.7s;

    filter:drop-shadow(0 40px 70px rgba(212,175,55,.18));

}

.perfume:hover .perfume-left img{

    transform:translateY(-12px) rotate(-3deg) scale(1.05);

}

.perfume-right span{

    color:var(--gold);

    letter-spacing:6px;

    text-transform:uppercase;

    font-size:14px;

}

.perfume-right h2{

    font-size:62px;

    line-height:1.1;

    margin:25px 0;

}

.perfume-right p{

    color:#cfcfcf;

    font-size:18px;

    line-height:1.9;

    margin-bottom:45px;

}



/*====================================================
                BRANDS
====================================================*/

.brands{

    background:#050505;

    overflow:hidden;

}

.brands-slider{

    overflow:hidden;

    margin-top:60px;

}

.brand-track{

    display:flex;

    gap:90px;

    width:max-content;

    animation:brandMove 25s linear infinite;

}

.brand-track span{

    font-size:34px;

    font-weight:800;

    color:#666;

    transition:.35s;

    white-space:nowrap;

}

.brand-track span:hover{

    color:var(--gold);

    transform:scale(1.08);

}

@keyframes brandMove{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}



/*====================================================
                GALLERY
====================================================*/

.gallery{

    background:#000;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.gallery-grid img{

    width:100%;

    height:360px;

    object-fit:cover;

    border-radius:24px;

    transition:.5s;

    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 25px 60px rgba(212,175,55,.20);

}



/*====================================================
                RESPONSIVE
====================================================*/

@media(max-width:1000px){

.perfume{

grid-template-columns:1fr;

text-align:center;

}

.perfume-left{

order:1;

}

.perfume-right{

order:2;

}

.perfume-right h2{

font-size:44px;

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-grid img{

height:260px;

}

.brand-track{

gap:45px;

}

.brand-track span{

font-size:22px;

}

}
/*==================================================
                REVIEWS
==================================================*/

.reviews{

    background:#050505;

}

.review-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.review-card{

    padding:40px;

    border-radius:25px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    transition:.4s;

}

.review-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

}

.review-card p{

    margin:25px 0;

    color:#cfcfcf;

    line-height:1.8;

}

.review-card h4{

    color:var(--gold);

}



/*==================================================
                CONTACT
==================================================*/

.contact{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    background:#000;

}

.contact span{

    color:var(--gold);

    letter-spacing:5px;

}

.contact h2{

    margin:20px 0;

    font-size:55px;

}

.contact p{

    color:#d5d5d5;

    line-height:2;

    margin-bottom:20px;

}

.contact-buttons{

    display:flex;

    gap:20px;

    margin-top:35px;

}

.contact iframe{

    width:100%;

    height:500px;

    border:none;

    border-radius:25px;

}



/*==================================================
                FOOTER
==================================================*/

footer{

    padding:70px 20px;

    text-align:center;

    background:#050505;

    border-top:1px solid rgba(255,255,255,.08);

}

footer h2{

    font-size:32px;

    margin-bottom:15px;

}

footer p{

    color:#bdbdbd;

    margin:10px 0;

}

footer small{

    display:block;

    margin-top:35px;

    color:#777;

}



/*==================================================
            SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#000;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:20px;

}



/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:1000px){

.review-container{

grid-template-columns:1fr;

}

.contact{

grid-template-columns:1fr;

}

.contact h2{

font-size:40px;

}

.contact iframe{

height:350px;

}

}

@media(max-width:768px){

section{

padding:90px 6%;

}

.logo{

gap:10px;

}

.logo img{

width:40px;

}

.loader-inner{

font-size:28px;

letter-spacing:2px;

}

}
/*==================================
      FLOATING BUTTONS
==================================*/

.floating-buttons{

position:fixed;

right:25px;

bottom:25px;

display:flex;

flex-direction:column;

gap:15px;

z-index:9999;

}

.float-btn{

width:62px;

height:62px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:26px;

color:#fff;

transition:.35s;

box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.call{

background:#D4AF37;

}

.whatsapp{

background:#25D366;

}

.float-btn:hover{

transform:translateY(-8px) scale(1.08);

}
/*==============================
    LOADER PROGRESS
==============================*/

.loader-bar{

    width:280px;

    height:4px;

    background:rgba(255,255,255,.1);

    margin:35px auto 0;

    border-radius:50px;

    overflow:hidden;

}

.loader-progress{

    width:0%;

    height:100%;

    background:linear-gradient(90deg,#D4AF37,#FFD95A);

}