/*==================================================
            JANANI LUXURY WEBSITE
            STYLE.CSS
            PART 1
==================================================*/

/*==============================
        GOOGLE FONTS
==============================*/

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

/*==============================
        CSS VARIABLES
==============================*/

:root{

    --primary:#C8A96A;
    --primary-light:#DFC08A;
    --dark:#090909;
    --dark-2:#111111;
    --dark-3:#1B1B1B;
    --white:#ffffff;
    --text:#d8d8d8;
    --border:rgba(255,255,255,.08);

    --heading:'Cormorant Garamond',serif;
    --body:'Poppins',sans-serif;

    --transition:.4s ease;

    --radius:12px;

    --shadow:0 15px 45px rgba(0,0,0,.35);

}


/*==============================
            RESET
==============================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--dark);
    color:var(--text);
    font-family:var(--body);
    overflow-x:hidden;
    line-height:1.8;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

section{

    position:relative;

}

.container{

    width:90%;
    max-width:1320px;
    margin:auto;

}

.section-padding{

    padding:120px 0;

}


/*==============================
        CUSTOM SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}


/*==============================
        TYPOGRAPHY
==============================*/

.section-subtitle{

    color:var(--primary);

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:13px;

    font-weight:600;

}

.section-title{

    font-family:var(--heading);

    font-size:56px;

    color:#fff;

    font-weight:600;

    margin:15px 0;

    line-height:1.15;

}

.section-description{

    max-width:700px;

    margin:auto;

    color:#bdbdbd;

}

.gold-divider{

    width:90px;

    height:2px;

    background:var(--primary);

    margin:25px auto;

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}


/*==============================
            BUTTONS
==============================*/

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 42px;

    background:var(--primary);

    color:#111;

    font-weight:600;

    border-radius:50px;

    transition:var(--transition);

}

.primary-btn:hover{

    transform:translateY(-5px);

    background:#fff;

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 42px;

    border:1px solid var(--primary);

    color:#fff;

    border-radius:50px;

    transition:var(--transition);

}

.secondary-btn:hover{

    background:var(--primary);

    color:#111;

}


/*==============================
            PRELOADER
==============================*/

#preloader{

    position:fixed;

    inset:0;

    background:#000;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

    transition:.6s;

}

.loader-wrapper{

    text-align:center;

}

.loader-wrapper img{

    width:85px;

    margin:auto;

}

.loader-wrapper h2{

    margin-top:20px;

    color:#fff;

    font-size:42px;

    font-family:var(--heading);

    letter-spacing:3px;

}

.loader-wrapper p{

    color:var(--primary);

    margin-top:12px;

}


/*==============================
            HEADER
==============================*/

#header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

}

#header.scrolled{

    background:rgba(10,10,10,.94);

    backdrop-filter:blur(18px);

    box-shadow:0 10px 40px rgba(0,0,0,.4);

}

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:transparent;
    transition:all .4s ease;
}

#header.scrolled{
    background:rgba(10,10,10,.92);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 10px 40px rgba(0,0,0,.35);
}
/*==============================
            NAVBAR
==============================*/

.navbar{

    width:90%;

    max-width:1400px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:22px 0;

}

.logo img{

    width:72px;

}

.nav-menu{

    display:flex;

    gap:40px;

}

.nav-menu a{

    color:#fff;

    font-size:15px;

    letter-spacing:1px;

    position:relative;

    transition:.35s;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.nav-menu a:hover{

    color:var(--primary);

}

.nav-menu a:hover::after{

    width:100%;

}

.nav-right{

    display:flex;

    align-items:center;

    gap:18px;

}

.insta-btn,
.whatsapp-btn{

    width:44px;

    height:44px;

    border:1px solid rgba(255,255,255,.12);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.35s;

}

.insta-btn:hover,
.whatsapp-btn:hover{

    background:var(--primary);

    color:#111;

    border-color:var(--primary);

}

.menu-toggle{

    display:none;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:28px;

    height:2px;

    background:#fff;

    margin:6px 0;

    transition:.35s;

}

.mobile-menu{

    display:none;

}
/*==================================================
                HERO SECTION
==================================================*/

.hero{

    position:relative;
    height:100vh;
    overflow:hidden;

}

/*==============================
        HERO SLIDER
==============================*/

.hero-slider{

    position:absolute;
    inset:0;
    z-index:1;

}

.slide{

    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity 1.5s ease;

}

.slide.active{

    opacity:10;
    visibility:visible;

}

.slide img{

    width:100%;
    height:100%;
    object-fit:cover;

    animation:kenburns 12s linear infinite;

}


/*==============================
        HERO OVERLAY
==============================*/

.hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(rgba(0,0,0,.1),
    rgba(0,0,0,.75)),
    linear-gradient(to right,
    rgba(0,0,0,.65),
    rgba(0,0,0,.25));

    z-index:2;

}


/*==============================
      DECORATIVE LINES
==============================*/
/*
.hero-lines{

    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:3;

}

.hero-lines span{

    position:absolute;

    width:1px;
    height:100%;

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

}

.hero-lines span:first-child{

    left:12%;

}

.hero-lines span:last-child{

    right:12%;

}
*/

/*==============================
        HERO CONTENT
==============================*/

.hero-content{

    position:relative;
    z-index:5;

    width:90%;
    max-width:1320px;

    height:100%;

    margin:auto;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:flex-start;

}

.hero-subtitle{

    color:var(--primary);

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:18px;

    font-size:14px;

    animation:fadeUp 1s ease;

}

.hero-content h1{

    font-family:var(--heading);

    color:#fff;

    font-size:82px;

    font-weight:600;

    line-height:1.08;

    margin-bottom:30px;

    animation:fadeUp 1.2s ease;

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-description{

    width:650px;

    max-width:100%;

    color:#ddd;

    font-size:18px;

    line-height:1.9;

    margin-bottom:45px;

    animation:fadeUp 1.4s ease;

}


/*==============================
        HERO BUTTONS
==============================*/

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    animation:fadeUp 1.6s ease;

}

.hero-buttons .primary-btn{

    box-shadow:
    0 15px 35px rgba(200,169,106,.35);

}

.hero-buttons .primary-btn:hover{

    transform:translateY(-6px);

}

.hero-buttons .secondary-btn:hover{

    transform:translateY(-6px);

}


/*==============================
        HERO SOCIAL
==============================*/

.hero-social{

    position:absolute;

    left:50px;

    bottom:55px;

    z-index:5;

}

.hero-social a{

    color:#fff;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:13px;

    transition:.35s;

}

.hero-social a:hover{

    color:var(--primary);

}


/*==============================
      SCROLL INDICATOR
==============================*/

.scroll-indicator{

    position:absolute;

    right:50px;

    bottom:40px;

    z-index:5;

    display:flex;

    flex-direction:column;

    align-items:center;

    color:#fff;

}

.scroll-indicator span{

    width:2px;

    height:65px;

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

    margin-bottom:12px;

    position:relative;

    overflow:hidden;

}

.scroll-indicator span::before{

    content:"";

    position:absolute;

    top:-100%;

    left:0;

    width:100%;

    height:100%;

    background:var(--primary);

    animation:scrollLine 2s infinite;

}

.scroll-indicator p{

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

}


/*==============================
        HERO ANIMATIONS
==============================*/

@keyframes kenburns{

    0%{

        transform:scale(1);

    }

    100%{

        transform:scale(1.12);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes scrollLine{

    0%{

        top:-100%;

    }

    100%{

        top:100%;

    }

}
/*==================================================
                OUR STORY SECTION
==================================================*/

.story{

    background:#0d0d0d;
    position:relative;
    overflow:hidden;

}

/* Decorative Background */

.story::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border:1px solid rgba(200,169,106,.08);

    border-radius:50%;

    top:-180px;
    left:-180px;

}

.story::after{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    border:1px solid rgba(200,169,106,.08);

    border-radius:50%;

    right:-120px;
    bottom:-120px;

}


/*==============================
        STORY LAYOUT
==============================*/

.story-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    position:relative;

    z-index:2;

}


/*==============================
        STORY IMAGE
==============================*/

.story-image{

    position:relative;

}

.image-frame{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.image-frame img{

    width:100%;

    display:block;

    transition:.6s;

}

.story-image:hover img{

    transform:scale(1.08);

}


/* Gold Border */

.image-frame::before{

    content:"";

    position:absolute;

    top:18px;
    left:18px;
    right:18px;
    bottom:18px;

    border:1px solid rgba(200,169,106,.45);

    z-index:2;

    pointer-events:none;

}


/*==============================
      FLOATING INFO BOX
==============================*/

.experience-box{

    position:absolute;

    bottom:35px;
    right:-35px;

    background:#111;

    border-left:4px solid var(--primary);

    padding:25px 30px;

    box-shadow:0 20px 45px rgba(0,0,0,.45);

    max-width:240px;

}

.experience-box span{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:12px;

}

.experience-box h3{

    color:#fff;

    margin-top:10px;

    font-size:26px;

    line-height:1.3;

    font-family:var(--heading);

}


/*==============================
        STORY CONTENT
==============================*/

.story-content{

    color:#d6d6d6;

}

.story-content .gold-divider{

    margin:25px 0;

}

.story-content p{

    margin-bottom:24px;

    font-size:16px;

    color:#c8c8c8;

}


/*==============================
        HIGHLIGHTS
==============================*/

.story-highlights{

    display:grid;

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

    gap:18px;

    margin:45px 0;

}

.highlight-item{

    display:flex;

    align-items:center;

    gap:12px;

    background:#141414;

    border:1px solid rgba(255,255,255,.05);

    padding:16px 18px;

    border-radius:10px;

    transition:.35s;

}

.highlight-item:hover{

    transform:translateY(-6px);

    border-color:rgba(200,169,106,.35);

    background:#1a1a1a;

}

.highlight-item i{

    color:var(--primary);

    font-size:18px;

}

.highlight-item span{

    color:#fff;

    font-size:15px;

}


/*==============================
      STORY BUTTON
==============================*/

.story-content .primary-btn{

    margin-top:15px;

}


/*==============================
      REVEAL ANIMATION
==============================*/

.reveal-left{

    opacity:0;

    transform:translateX(-70px);

    transition:1s ease;

}

.reveal-right{

    opacity:0;

    transform:translateX(70px);

    transition:1s ease;

}

.reveal-left.active,
.reveal-right.active{

    opacity:1;

    transform:translateX(0);

}
/*==================================================
            JANANI PROMISE SECTION
==================================================*/

.promise{

    background:#080808;
    position:relative;
    overflow:hidden;

}

/* Background Glow */

.promise::before{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    background:radial-gradient(circle,
    rgba(200,169,106,.08) 0%,
    transparent 70%);

    top:-300px;
    right:-250px;

}

.promise::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:radial-gradient(circle,
    rgba(200,169,106,.05) 0%,
    transparent 70%);

    bottom:-250px;
    left:-220px;

}


/*==============================
        PROMISE GRID
==============================*/

.promise-grid{

    display:grid;

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

    gap:35px;

    position:relative;

    z-index:2;

}


/*==============================
        PROMISE CARD
==============================*/

.promise-card{

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

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:45px 35px;

    text-align:center;

    transition:.45s ease;

    backdrop-filter:blur(12px);

    position:relative;

    overflow:hidden;

}


/* Gold Top Line */

.promise-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:0;
    height:3px;

    background:var(--primary);

    transition:.45s;

}


/* Hover */

.promise-card:hover{

    transform:translateY(-12px);

    border-color:rgba(200,169,106,.35);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.promise-card:hover::before{

    width:100%;

}


/*==============================
        ICON
==============================*/

.promise-icon{

    width:85px;
    height:85px;

    margin:0 auto 28px;

    border-radius:50%;

    border:1px solid rgba(200,169,106,.25);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.45s;

}

.promise-icon i{

    font-size:34px;

    color:var(--primary);

    transition:.45s;

}

.promise-card:hover .promise-icon{

    background:var(--primary);

    transform:rotate(8deg);

}

.promise-card:hover .promise-icon i{

    color:#111;

}


/*==============================
        TITLE
==============================*/

.promise-card h3{

    color:#fff;

    font-family:var(--heading);

    font-size:30px;

    margin-bottom:18px;

}


/*==============================
        TEXT
==============================*/

.promise-card p{

    color:#bfbfbf;

    line-height:1.9;

    font-size:15px;

}


/*==============================
        REVEAL UP
==============================*/

.reveal-up{

    opacity:0;

    transform:translateY(70px);

    transition:1s ease;

}

.reveal-up.active{

    opacity:1;

    transform:translateY(0);

}
/*==================================================
            FEATURED COLLECTIONS
==================================================*/

.collections{

    background:#0b0b0b;
    position:relative;
    overflow-x:clip;
    overflow-y:visible;

}

/* Decorative Glow */

.collections::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:radial-gradient(circle,
    rgba(200,169,106,.05) 0%,
    transparent 70%);

    top:-300px;
    left:-250px;

}

.collections::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:radial-gradient(circle,
    rgba(200,169,106,.05) 0%,
    transparent 70%);

    bottom:-200px;
    right:-200px;

}


/*==============================
        COLLECTION GRID
==============================*/

.collectionsSwiper{

    position:relative;

    overflow:visible;

    padding:15px 70px;

}

.collectionsSwiper .swiper-slide{

    height:auto;

}

.collectionsSwiper .collection-card{

    height:100%;

}
.swiper-button-prev,
.swiper-button-next{

    width:58px;
    height:58px;

    border-radius:50%;

    background:#111;

    border:1px solid rgba(200,169,106,.45);

    color:#c8a96a;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

    transition:.35s;

}

.swiper-button-prev:hover,
.swiper-button-next:hover{

    background:#c8a96a;

    color:#111;

}

.swiper-button-prev::after,
.swiper-button-next::after{

    font-size:18px;
    font-weight:700;

}

.swiper-button-prev{

    left:-30px;

}

.swiper-button-next{

    right:-30px;

}
/*==============================
        COLLECTION CARD
==============================*/

.collection-card{

    background:#121212;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    overflow:hidden;

    transition:.45s ease;

    box-shadow:0 15px 45px rgba(0,0,0,.30);

}

.collection-card:hover{

    transform:translateY(-12px);

    border-color:rgba(200,169,106,.30);

    box-shadow:0 30px 70px rgba(0,0,0,.50);

}


/*==============================
        IMAGE
==============================*/

.collection-image{

    position:relative;

    overflow:hidden;

    height:500px;

}

.collection-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .8s ease;

}

.collection-card:hover .collection-image img{

    transform:scale(1.08);

}


/*==============================
        OVERLAY
==============================*/

.collection-overlay{

    position:absolute;

    inset:0;

 /*   background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15),
        transparent
    );*/

    display:flex;

    align-items:flex-start;

    justify-content:flex-end;

    padding:25px;

}


/*==============================
            TAG
==============================*/

.collection-tag{

    display:inline-block;

    background:rgba(200,169,106,.95);

    color:#111;

    font-size:12px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    padding:10px 18px;

    border-radius:40px;

}


/*==============================
        CONTENT
==============================*/

.collection-content{

    padding:35px;

}

.collection-content h3{

    font-family:var(--heading);

    color:#fff;

    font-size:38px;

    margin-bottom:18px;

}

.collection-content p{

    color:#bfbfbf;

    line-height:1.9;

    margin-bottom:30px;

}


/*==============================
      COLLECTION BUTTON
==============================*/

.collection-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

    transition:.35s;

}

.collection-btn i{

    transition:.35s;

}

.collection-btn:hover{

    color:#fff;

}

.collection-btn:hover i{

    transform:translateX(8px);

}


/*==============================
        IMAGE SHINE EFFECT
==============================*/

.collection-image::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:70%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.20),
        transparent
    );

    transform:skewX(-25deg);

    z-index:2;

}

.collection-card:hover .collection-image::before{

    animation:imageShine 1.2s;

}

@keyframes imageShine{

    100%{

        left:160%;

    }

}

/* Navigation */
.collectionsSwiper .swiper-button-prev,
.collectionsSwiper .swiper-button-next{

    width:56px;
    height:56px;

    background:#000;

    border:1px solid rgba(200,169,106,.35);

    border-radius:50%;

    color:#c8a96a;

    box-shadow:0 12px 30px rgba(0,0,0,.35);

    transition:.35s;

    z-index:100;

}

.collectionsSwiper .swiper-button-prev:hover,
.collectionsSwiper .swiper-button-next:hover{

    background:#c8a96a;

    color:#111;

}

.collectionsSwiper .swiper-button-prev::after,
.collectionsSwiper .swiper-button-next::after{

    font-size:18px;
    font-weight:700;

}

.collectionsSwiper .swiper-button-prev{

    left:10px !important;

}

.collectionsSwiper .swiper-button-next{

    right:10px !important;

}
.collections-slider .swiper-button-prev{

    left:-50px;

}

.collections-slider .swiper-button-next{

    right:-50px;

}
/*==================================================
        INSTAGRAM SECTION
==================================================*/

.instagram{

    background:#080808;
    text-align:center;
    position:relative;
    overflow:hidden;

}

.instagram::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border:1px solid rgba(200,169,106,.08);

    border-radius:50%;

    top:-220px;
    left:-180px;

}

.instagram-content{

    margin-top:40px;
    margin-bottom: 40px;

}

.instagram-button{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 40px;

    background:transparent;

    color:var(--white);

    border:1px solid var(--primary);

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

    letter-spacing:1px;

}

.instagram-button i{

    font-size:22px;

    color:var(--primary);

}

.instagram-button:hover{

    background:var(--primary);

    color:#111;

    transform:translateY(-5px);

}

.instagram-button:hover i{

    color:#111;

}


/*==================================================
                CONTACT SECTION
==================================================*/

.contact{

    background:#101010;

}

.contact-wrapper{

    display:grid;

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

    gap:30px;

    margin-top:60px;

}

.contact-card{

    background:#161616;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:45px 30px;

    text-align:center;

    transition:var(--transition);

}

.contact-card:hover{

    transform:translateY(-10px);

    border-color:rgba(200,169,106,.35);

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.contact-card i{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(200,169,106,.10);

    color:var(--primary);

    font-size:30px;

}

.contact-card h3{

    font-family:var(--heading);

    color:#fff;

    font-size:30px;

    margin-bottom:15px;

}

.contact-card a{

    color:#d2d2d2;

    transition:.3s;

    word-break:break-word;

}

.contact-card a:hover{

    color:var(--primary);

}

.contact-buttons{

    text-align:center;

    margin-top:60px;

}


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

.footer-column img.footer-logo{
    width: 90px !important;
    max-width: 90px !important;
    height: auto !important;
    display: block;
      margin:0 auto 20px;
}

.footer{

    background:#050505;

    border-top:1px solid rgba(255,255,255,.06);

    text-align:center;

    padding:80px 0 30px;

}

.footer-logo img{

    width:90px;

    margin:0 auto 20px;

}

.footer-logo h3{

    font-family:var(--heading);

    font-size:42px;

    color:#fff;

    margin-bottom:12px;

}

.footer-logo p{

    color:#bdbdbd;

    line-height:1.8;

}

.footer-social{

    margin:40px 0;

    display:flex;

    justify-content:center;

    gap:18px;

}

.footer-social a{

    width:52px;
    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#121212;

    color:#fff;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.footer-social a:hover{

    background:var(--primary);

    color:#111;

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.06);

    padding-top:25px;

}

.footer-bottom p{

    color:#999;

    font-size:14px;

}

/*==========================================
            FOOTER GRID
==========================================*/

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
    align-items:flex-start;
    text-align:left;
    margin-bottom:60px;
}

.footer-column h4{
    color:#fff;
    font-size:22px;
    font-family:var(--heading);
    margin-bottom:25px;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:14px;
}

.footer-column p{
    color:#d8d8d8;
    margin-bottom:14px;
}

.footer-column p i{
    color:var(--primary);
    width:20px;
    margin-right:8px;
}

.footer-column:first-child{
    text-align:center;
}

.footer-column:first-child p{
    margin-bottom:20px;
}

.footer-social{
    justify-content:center;
}

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

@media (max-width:991px){

    .footer-grid{

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

        gap:40px;

    }

}

@media (max-width:768px){

    .footer{

        padding:60px 0 25px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:35px;

        text-align:center;

    }

    .footer-column{

        text-align:center;

    }

    .footer-column:first-child{

        margin-bottom:10px;

    }

    .footer-column h4{

        margin-bottom:18px;

        font-size:26px;

    }

    .footer-column ul{

        padding:0;

    }

    .footer-column ul li{

        margin-bottom:12px;

    }

    .footer-column p{

        justify-content:center;

    }

    .footer-social{

        justify-content:center;

        margin:25px 0;

    }

    .footer-logo{

        width:80px !important;

        margin:0 auto 20px;

    }

    .footer-bottom{

        margin-top:15px;

    }

}
.footer-column p{

    display:flex;

    align-items:center;

}

@media (max-width:768px){

    .footer-column p{

        justify-content:center;

    }

}
/*==================================================
          FLOATING WHATSAPP BUTTON
==================================================*/

.floating-whatsapp{

    position:fixed;

    right:30px;

    bottom:30px;

    width:62px;
    height:62px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    z-index:999;

    box-shadow:0 15px 35px rgba(37,211,102,.35);

    transition:.35s;

}

.floating-whatsapp:hover{

    transform:scale(1.12);

}


/*==================================================
            BACK TO TOP BUTTON
==================================================*/

#backToTop{

    position:fixed;

    right:30px;

    bottom:110px;

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#111;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    transform:translateY(-6px);

}
/*==================================================
            MOBILE MENU
==================================================*/

.mobile-menu{

    position:fixed;

    top:88px;
    left:0;

    width:100%;

    background:rgba(8,8,8,.98);

    backdrop-filter:blur(18px);

    padding:30px;

    display:flex;

    flex-direction:column;

    gap:18px;

    transform:translateY(-120%);

    opacity:0;

    visibility:hidden;

    transition:.4s ease;

    z-index:998;

}

.mobile-menu.active{

    transform:translateY(0);

    opacity:1;

    visibility:visible;

}

.mobile-menu a{

    color:#fff;

    font-size:17px;

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.06);

    transition:.3s;

}

.mobile-menu a:hover{

    color:var(--primary);

}

.mobile-buttons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.mobile-buttons a{

    flex:1;

    border:none;

    background:var(--primary);

    color:#111;

    padding:15px;

    text-align:center;

    border-radius:50px;

    font-weight:600;

}


/*==================================================
        REVEAL ANIMATIONS
==================================================*/

.reveal-up,
.reveal-left,
.reveal-right{

    opacity:0;

    transition:1s ease;

}

.reveal-up{

    transform:translateY(60px);

}

.reveal-left{

    transform:translateX(-60px);

}

.reveal-right{

    transform:translateX(60px);

}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active{

    opacity:1;

    transform:translate(0,0);

}


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

@media(max-width:991px){

.section-padding{

    padding:90px 0;

}

.section-title{

    font-size:46px;

}

.story-wrapper{

    grid-template-columns:1fr;

    gap:60px;

}

.promise-grid{

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

}

.collection-grid{

    grid-template-columns:1fr;

}

.contact-wrapper{

    grid-template-columns:1fr;

}

.hero-content h1{

    font-size:60px;

}

.hero-social{

    display:none;

}

.scroll-indicator{

    display:none;

}

.experience-box{

    right:20px;

    bottom:20px;

}

}


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

@media(max-width:768px){

.nav-menu{

    display:none;

}

.menu-toggle{

    display:block;

}

.navbar{

    padding:18px 0;

}

.logo img{

    width:58px;

}

.section-padding{

    padding:70px 0;

}

.section-title{

    font-size:38px;

}

.hero{

    min-height:100vh;

}

.hero-content{

    text-align:center;

    align-items:center;

}

.hero-content h1{

    font-size:44px;

}

.hero-description{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

    width:100%;

}

.hero-buttons a{

    width:100%;

}

.story-highlights{

    grid-template-columns:1fr;

}

.promise-grid{

    grid-template-columns:1fr;

}

.collection-content{

    padding:25px;

}

.collection-content h3{

    font-size:32px;

}

.collection-image{

    height:380px;

}

.contact-card{

    padding:35px 25px;

}

.footer-logo h3{

    font-size:34px;

}

}


/*==================================================
        SMALL MOBILE
==================================================*/

@media(max-width:480px){

.container{

    width:92%;

}

.hero-content h1{

    font-size:36px;

}

.section-title{

    font-size:32px;

}

.primary-btn,
.secondary-btn{

    padding:15px 25px;

    font-size:15px;

}

.collection-image{

    height:320px;

}

.floating-whatsapp{

    width:56px;
    height:56px;

    font-size:26px;

    right:18px;

    bottom:18px;

}

#backToTop{

    width:48px;
    height:48px;

    right:18px;

    bottom:90px;

}

}


/*==================================================
        UTILITY CLASSES
==================================================*/

.text-center{

    text-align:center;

}

.mt-30{

    margin-top:30px;

}

.mt-50{

    margin-top:50px;

}

.mb-30{

    margin-bottom:30px;

}

.d-none{

    display:none;

}

html{

    scroll-padding-top:90px;

}

body.menu-open{

    overflow:hidden;

}
/*==================================
        BUTTON RIPPLE
==================================*/

.primary-btn,
.secondary-btn,
.collection-btn{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

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

    animation:ripple .6s linear;

    pointer-events:none;

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}
/*==================================
        LIGHTBOX
==================================*/

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.94);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:99999;

}

.lightbox.show{

    opacity:1;

    visibility:visible;

}

.lightbox-image{

    max-width:90%;

    max-height:85vh;

    border-radius:12px;

}

.lightbox-close,
.lightbox-prev,
.lightbox-next{

    position:absolute;

    color:#fff;

    font-size:42px;

    cursor:pointer;

    user-select:none;

}

.lightbox-close{

    top:25px;

    right:40px;

}

.lightbox-prev{

    left:40px;

    top:50%;

    transform:translateY(-50%);

}

.lightbox-next{

    right:40px;

    top:50%;

    transform:translateY(-50%);

}

.gallery-item img{

    cursor:pointer;

    transition:.4s;

}

.gallery-item.hover img{

    transform:scale(1.05);

}

img{

    opacity:0;

    transition:opacity .5s ease;

}

img.loaded{

    opacity:1;

}
/*==================================
        PAGE FADE
==================================*/

body{

    opacity:0;

    transition:opacity .5s ease;

}

body.page-loaded{

    opacity:1;

}
/*==================================================
        COLLECTION HERO
==================================================*/

.collection-hero{

    position:relative;
    height:70vh;
    overflow:hidden;

}
.collection-hero{
    position:relative;
    margin-top:0;
}
.collection-hero-image{

    position:absolute;
    inset:0;

}

.collection-hero-image img{

    width:100%;
    height:100%;
    object-fit:cover;

}

/*.collection-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.75)
    );

}*/
.collection-overlay1{
    position:absolute;
    inset:0;
    z-index:1;

    background:
        linear-gradient(
            rgba(0,0,0,.10),
            rgba(0,0,0,.10)
        ),
        linear-gradient(
            to right,
            rgba(0,0,0,.35),
            rgba(0,0,0,.10)
        );
}
.collection-hero-content{

    position:relative;
    z-index:2;

    width:90%;
    max-width:1320px;

    height:100%;

    margin:auto;

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.collection-hero-content span{

    color:var(--primary);

    letter-spacing:4px;

    text-transform:uppercase;

}

.collection-hero-content h1{

    font-family:var(--heading);

    font-size:72px;

    color:#fff;

    margin:20px 0;

}

.collection-hero-content p{

    max-width:650px;

    color:#ddd;

    font-size:18px;

    line-height:1.9;

}


/*==================================================
        BREADCRUMB
==================================================*/

.breadcrumb-section{

    background:#111;

    padding:22px 0;

}

.breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;

}

.breadcrumb a{

    color:#ccc;

    transition:.3s;

}

.breadcrumb a:hover{

    color:var(--primary);

}

.breadcrumb span{

    color:#666;

}

.breadcrumb strong{

    color:var(--primary);

}


/*==================================================
        COLLECTION INTRO
==================================================*/

.collection-intro{

    background:#0c0c0c;

}


/*==================================================
        PRODUCT GALLERY
==================================================*/

.collection-gallery{

    background:#090909;

    padding-bottom:120px;

}

.gallery-grid{

    display:grid;

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

    gap:35px;

}

.gallery-item{

    background:#141414;

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

    border:1px solid rgba(255,255,255,.06);

}

.gallery-item:hover{

    transform:translateY(-10px);

    border-color:rgba(200,169,106,.35);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.gallery-item img{

    width:100%;

    height:460px;

    object-fit:cover;

    transition:.6s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-content{

    padding:28px;

}

.gallery-content h3{

    font-family:var(--heading);

    color:#fff;

    font-size:34px;

    margin-bottom:10px;

}

.gallery-content p{

    color:#bdbdbd;

    margin-bottom:25px;

}


/*==================================================
        ENQUIRE BUTTON
==================================================*/

.gallery-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    background:var(--primary);

    color:#111;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.gallery-btn:hover{

    background:#fff;

    transform:translateY(-4px);

}


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

@media(max-width:991px){

.gallery-grid{

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

}

.collection-hero-content h1{

    font-size:56px;

}

}

@media(max-width:768px){

.gallery-grid{

    grid-template-columns:1fr;

}

.gallery-item img{

    height:420px;

}

.collection-hero{

    height:60vh;

}

.collection-hero-content{

    text-align:center;

    align-items:center;

}

.collection-hero-content h1{

    font-size:42px;

}

.collection-hero-content p{

    font-size:16px;

}

}
/*==============================
        FOOTER LINKS
==============================*/

.footer-column ul li a{
    color: #d8d8d8;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-column ul li a:hover{
    color: #C8A96A;
}

.footer-column p,
.footer-column p a{
    color: #d8d8d8;
}

.footer-column p a:hover{
    color: #C8A96A;
}
.footer a{
    color: #d8d8d8 !important;
    text-decoration: none;
}

.footer a:hover{
    color: #C8A96A !important;
}
.footer-social a{
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121212;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    color: #ffffff;
    transition: .3s ease;
}

.footer-social a i{
    color: inherit;
    transition: .3s ease;
}

.footer-social a:hover{
    background: #C8A96A;
    color: #111111;
    border-color: #C8A96A;
    transform: translateY(-5px);
}

.footer-social a:hover i{
    color: #111111;
}
/* Footer Social Icons Fix */

.footer-social a{
    color: #ffffff !important;
}

.footer-social a i{
    color: #ffffff !important;
}

.footer-social a:hover{
    background: #C8A96A !important;
    border-color: #C8A96A !important;
    color: #111111 !important;
}

.footer-social a:hover i{
    color: #111111 !important;
}

.collection-details{
    padding:100px 0;
}

.details-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}
/* ==========================================
        COLLECTION DETAILS
========================================== */

.details-content p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:22px;
}

.details-card h3{
    font-family:var(--heading);
    color:#fff;
    font-size:34px;
    margin-bottom:25px;
}

.details-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.details-card li{
    display:flex;
    align-items:center;
    gap:12px;
    color:#d8d8d8;
    margin-bottom:18px;
    font-size:16px;
}

.details-card li i{
    color:var(--primary);
    font-size:18px;
    flex-shrink:0;
}
.details-content{
    width:100%;
}

.details-card{
    background:#111;
    border:1px solid rgba(212,175,55,.15);
    border-radius:18px;
    padding:40px;

}
@media (max-width:991px){

    .details-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

}
.fabric-care{
    padding:100px 0 ;
}

.care-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.care-box{
    background:#111;
    padding:35px 30px;
    border:1px solid rgba(212,175,55,.15);
    border-radius:12px;
    text-align:center;
    transition:.3s;
}
.care-box{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}.cta-box span{
    color:var(--primary);
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:13px;
    font-weight:600;
}

.cta-box h2{
    font-family:var(--heading);
    color:#fff;
    font-size:52px;
    margin:18px 0;
}

.cta-box p{
    color:#cfcfcf;
    max-width:700px;
    margin:0 auto;
    line-height:1.9;
}

.cta-buttons a{
    min-width:220px;
}
.care-box i{
    font-size:34px;
    color:#d4af37;
    margin-bottom:18px;
}

.care-box h3{
    margin-bottom:12px;
}

.care-box p{
    line-height:1.8;
}

@media (max-width:991px){

    .care-grid{

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

    }

}

@media (max-width:768px){

    .care-grid{

        grid-template-columns:1fr;

    }

}
.collection-cta{
    padding:100px 0;
    background:#0d0d0d;
}

.cta-box{
    max-width:900px;
    margin:0 auto;
    text-align:center;
    background:#111;
    border:1px solid rgba(212,175,55,.15);
    border-radius:20px;
    padding:60px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;
}
/*==========================================
        RELATED COLLECTIONS
==========================================*/

/*==========================================
        PREMIUM RELATED SWIPER
==========================================*/

.relatedSwiper{
    position:relative;
    padding:20px 70px 80px;
}
.relatedSwiper .swiper-wrapper{
    align-items:stretch;
}
.relatedSwiper .swiper-slide{
    transition:.5s;
    opacity:.65;
    transform:scale(.92);
     box-sizing:border-box;
    padding:0 12px;
}

.relatedSwiper .swiper-slide-active{
    opacity:1;
    transform:scale(1);
}

.relatedSwiper .swiper-slide-next,
.relatedSwiper .swiper-slide-prev{
    opacity:.9;
    transform:scale(.96);
}

.relatedSwiper .related-card{
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.relatedSwiper .swiper-button-next,
.relatedSwiper .swiper-button-prev{

    width:58px;
    height:58px;

    border-radius:50%;

    background:rgba(15,15,15,.85);

    border:1px solid rgba(212,175,55,.45);

    color:#d4af37;

    backdrop-filter:blur(15px);

    transition:.35s;
}

.relatedSwiper .swiper-button-next:hover,
.relatedSwiper .swiper-button-prev:hover{

    background:#d4af37;

    color:#111;

    transform:scale(1.08);
}

.relatedSwiper .swiper-button-prev{

    left:0;

}

.relatedSwiper .swiper-button-next{

    right:0;

}

.relatedSwiper .swiper-button-next::after,
.relatedSwiper .swiper-button-prev::after{

    font-size:18px;

    font-weight:700;

}
.related-overlay{

    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:28px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.08) 100%
    );

}
.related-overlay h3{

    font-family:var(--heading);
    font-size:38px;
    color:#fff;

    margin-bottom:10px;
}

.related-overlay p{

    color:#e6e6e6;
    line-height:1.8;
    margin-bottom:22px;

    font-size:17px;
}

.collection-btn{

    display:inline-flex;
    align-items:center;

    width:max-content;

    color:#d4af37;
    text-decoration:none;

    font-weight:600;
    letter-spacing:.5px;

    transition:.35s;
}

/*.collection-btn::after{

    content:"→";

    margin-left:10px;

    transition:.35s;
}*/

.collection-btn:hover{

    color:#fff;
}

/*.collection-btn:hover::after{

    transform:translateX(6px);
}*/
.related-card{

    overflow:hidden;
    border-radius:20px;

    transition:.45s;

    cursor:pointer;
}

.related-card img{

    transition:transform .8s;
}

.related-card:hover img{

    transform:scale(1.08);
}
@media(max-width:991px){

    .relatedSwiper{

        padding:20px 20px 70px;

    }

}

.collection-grid{

    display:grid;

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

    gap:40px;

}

.collection-card{

    background:#121212;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    overflow:hidden;

    transition:.45s;

    box-shadow:0 15px 40px rgba(0,0,0,.30);

}

.collection-card:hover{

    transform:translateY(-10px);

    border-color:rgba(200,169,106,.35);

    box-shadow:0 30px 70px rgba(0,0,0,.45);

}

.collection-image{

    position:relative;

    height:420px;

    overflow:hidden;

}

.collection-image img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.7s;

}

.collection-card:hover .collection-image img{

    transform:scale(1.08);

}

.collection-overlay{

    position:absolute;

    top:25px;
    right:25px;

}

.collection-tag{

    display:inline-block;

    background:#C8A96A;

    color:#111;

    padding:10px 20px;

    border-radius:40px;

    font-size:12px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

}

.collection-content{

    padding:35px;

}

.collection-content h3{

    font-family:var(--heading);

    color:#fff;

    font-size:40px;

    margin-bottom:18px;

}

.collection-content p{

    color:#bdbdbd;

    line-height:1.9;

    margin-bottom:28px;

}

.collection-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#C8A96A;

    font-weight:600;

    transition:.35s;

}

.collection-btn:hover{

    color:#fff;

}

.collection-btn i{

    transition:.35s;

}

.collection-btn:hover i{

    transform:translateX(6px);

}