/*=========================================================
LUXURY HERO
PART 1 - FOUNDATION
=========================================================*/

:root{

    --hero-height:100vh;
    --hero-overlay:rgba(15,15,15,.45);
    --hero-primary:#B08D57;
    --hero-white:#ffffff;
    --hero-dark:#111111;
    --hero-text:#f4f4f4;

}

.luxury-hero{

    position:relative;

    width:100%;

    height:var(--hero-height);

    overflow:hidden;

    background:#111;

}

.heroSwiper{

    width:100%;

    height:100%;

}

.heroSwiper .swiper-slide{

    position:relative;

    width:100%;

    height:100%;

    overflow:hidden;

}

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

.hero-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transform:scale(1);

    transition:transform 8s ease;

}

.swiper-slide-active .hero-bg{

    transform:scale(1.08);

}

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

.hero-overlay{

    position:absolute;

    inset:0;

    z-index:2;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.52) 35%,
        rgba(0,0,0,.20) 70%,
        rgba(0,0,0,.08) 100%
    );

}

/*=============================
CONTAINER
=============================*/

.luxury-hero .container{

    position:relative;

    z-index:5;

    height:100%;

    display:flex;

    align-items:center;

}

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

.hero-content{

    max-width:680px;

    color:#fff;

    position:relative;

    z-index:20;

}

/*=============================
BADGE
=============================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    padding:8px 18px;

    border-radius:30px;

    background:rgba(176,141,87,.18);

    border:1px solid rgba(176,141,87,.45);

    color:#fff;

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:22px;

    backdrop-filter:blur(10px);

}

/*=============================
SUBTITLE
=============================*/

.hero-subtitle{

    color:var(--hero-primary);

    font-size:18px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:20px;

    font-weight:600;

}

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

.hero-content h1{

    margin:0;

    color:#fff;

    font-size:72px;

    line-height:1.08;

    font-weight:700;

    letter-spacing:-2px;

}

/*=============================
DESCRIPTION
=============================*/

.hero-content p{

    margin-top:28px;

    max-width:620px;

    font-size:19px;

    line-height:34px;

    color:rgba(255,255,255,.88);

}
/*=========================================================
LUXURY HERO
PART 2 - BUTTONS & NAVIGATION
=========================================================*/

/*=============================
BUTTON WRAPPER
=============================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}

/*=============================
COMMON BUTTON
=============================*/

.hero-btn{

    position:relative;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:210px;

    height:58px;

    padding:0 38px;

    border-radius:40px;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    overflow:hidden;

    transition:.35s;

}

/*=============================
PRIMARY
=============================*/

.hero-primary{

    background:#B08D57;

    color:#fff;

    border:2px solid #B08D57;

}

.hero-primary:hover{

    background:#fff;

    color:#111;

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(176,141,87,.35);

}

/*=============================
SECONDARY
=============================*/

.hero-secondary{

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

    color:#fff;

    border:2px solid rgba(255,255,255,.25);

    backdrop-filter:blur(12px);

}

.hero-secondary:hover{

    background:#fff;

    color:#111;

    border-color:#fff;

    transform:translateY(-3px);

}

/*=============================
BUTTON SHINE
=============================*/

.hero-btn:before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:60%;

    height:100%;

    background:

    linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.35),

        transparent

    );

    transform:skewX(-25deg);

    transition:.8s;

}

.hero-btn:hover:before{

    left:170%;

}

/*=============================
ARROWS
=============================*/

.hero-prev,
.hero-next{

    position:absolute;

    top:50%;

    width:60px;

    height:60px;

    border-radius:50%;

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

    backdrop-filter:blur(15px);

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

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    cursor:pointer;

    z-index:20;

    transition:.35s;

}

.hero-prev{

    left:40px;

}

.hero-next{

    right:40px;

}

.hero-prev:hover,
.hero-next:hover{

    background:#B08D57;

    border-color:#B08D57;

    transform:scale(1.08);

}

/*=============================
PAGINATION
=============================*/

.hero-pagination{

    position:absolute;

    left:50% !important;

    bottom:45px !important;

    transform:translateX(-50%);

    z-index:20;

}

.hero-pagination .swiper-pagination-bullet{

    width:12px;

    height:12px;

    margin:0 6px !important;

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

    opacity:1;

    transition:.35s;

}

.hero-pagination .swiper-pagination-bullet-active{

    width:42px;

    border-radius:20px;

    background:#B08D57;

}

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

.hero-scroll{

    position:absolute;

    left:50%;

    bottom:25px;

    transform:translateX(-50%);

    text-align:center;

    z-index:20;

}

.hero-scroll span{

    display:block;

    color:#fff;

    font-size:11px;

    letter-spacing:3px;

    margin-bottom:10px;

}

.scroll-line{

    width:2px;

    height:45px;

    margin:auto;

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

    position:relative;

    overflow:hidden;

}

.scroll-line:before{

    content:"";

    position:absolute;

    left:0;

    width:100%;

    height:16px;

    background:#B08D57;

    animation:heroScroll 2s infinite;

}

@keyframes heroScroll{

0%{

top:-16px;

}

100%{

top:55px;

}

}
/*=========================================================
LUXURY HERO
PART 3 - ANIMATIONS & RESPONSIVE
=========================================================*/

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

.hero-content>*{

    opacity:0;

    transform:translateY(40px);

}

.swiper-slide-active .hero-badge{

    animation:heroFade .6s .2s forwards;

}

.swiper-slide-active .hero-subtitle{

    animation:heroFade .6s .4s forwards;

}

.swiper-slide-active h1{

    animation:heroFade .8s .6s forwards;

}

.swiper-slide-active p{

    animation:heroFade .8s .9s forwards;

}

.swiper-slide-active .hero-buttons{

    animation:heroFade .8s 1.2s forwards;

}

@keyframes heroFade{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*==============================
FLOATING SHAPES
==============================*/

.luxury-hero:before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(176,141,87,.08);

    right:-120px;

    top:10%;

    filter:blur(20px);

    animation:floatOne 12s infinite ease-in-out;

    z-index:2;

}

.luxury-hero:after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

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

    left:-60px;

    bottom:8%;

    filter:blur(20px);

    animation:floatTwo 15s infinite ease-in-out;

    z-index:2;

}

@keyframes floatOne{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-40px);

}

}

@keyframes floatTwo{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(35px);

}

}

/*==============================
GLASS PANEL
==============================*/

.hero-content{

    padding:15px 0;

}

.hero-content:before{

    content:"";

    position:absolute;

    left:-35px;

    top:-30px;

    width:calc(100% + 70px);

    height:calc(100% + 60px);

    border-radius:24px;

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

    backdrop-filter:blur(4px);

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

    z-index:-1;

}

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

.hero-content h1{

    text-shadow:

        0 8px 30px rgba(0,0,0,.45);

}

.hero-content p{

    text-shadow:

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

}

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

.hero-bg{

    will-change:transform;

    backface-visibility:hidden;

}

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

@media(max-width:1400px){

.hero-content h1{

font-size:62px;

}

}

@media(max-width:1200px){

.hero-content{

max-width:600px;

}

.hero-content h1{

font-size:56px;

}

.hero-content p{

font-size:18px;

line-height:30px;

}

}

@media(max-width:991px){

.luxury-hero{

height:78vh;

}

.hero-content{

max-width:100%;

text-align:center;

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-prev,

.hero-next{

display:none;

}

.hero-content h1{

font-size:46px;

}

.hero-content p{

font-size:17px;

line-height:30px;

}

.hero-content:before{

display:none;

}

}

@media(max-width:767px){

.luxury-hero{

height:65vh;

}

.hero-overlay{

background:

linear-gradient(

180deg,

rgba(0,0,0,.55),

rgba(0,0,0,.70)

);

}

.hero-content h1{

font-size:34px;

line-height:1.2;

letter-spacing:0;

}

.hero-subtitle{

font-size:15px;

letter-spacing:2px;

}

.hero-content p{

font-size:15px;

line-height:26px;

margin-top:18px;

}

.hero-buttons{

margin-top:30px;

gap:15px;

}

.hero-btn{

width:100%;

max-width:280px;

}

.hero-scroll{

display:none;

}

.hero-pagination{

bottom:18px!important;

}

}

@media(max-width:480px){

.luxury-hero{

height:60vh;

}

.hero-content h1{

font-size:28px;

}

.hero-badge{

font-size:10px;

padding:6px 14px;

}

.hero-content p{

display:none;

}

}

/*==============================
REDUCED MOTION
==============================*/

@media(prefers-reduced-motion:reduce){

.hero-bg,

.hero-content>*,

.luxury-hero:before,

.luxury-hero:after{

animation:none!important;

transition:none!important;

}

}
/* =====================================
   Hide Header Top on Mobile
===================================== */

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

@media (max-width:991px){

.header-top,
.header-middle,
.header-bottom{

    display:none !important;

}

}
/*=============================
MOBILE HEADER
=============================*/

.mobile-header{

    position:sticky;

    top:0;

    z-index:9999;

    background:#fff;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

}

.mobile-header-inner{

    height:70px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 15px;

}

.mobile-logo img{

    height:50px;

    width:auto;

}

.mobile-menu-toggler{

    width:46px;

    height:46px;

    border:none;

    background:none;

    font-size:26px;

    color:#222;

}

.mobile-actions{

    display:flex;

    align-items:center;

    gap:18px;

}

.mobile-actions a{

    color:#222;

    font-size:22px;

    position:relative;

}

.mobile-cart-count{

    position:absolute;

    top:-7px;

    right:-8px;

    width:18px;

    height:18px;

    border-radius:50%;

    background:#B08D57;

    color:#fff;

    font-size:10px;

    display:flex;

    align-items:center;

    justify-content:center;

}

@media(min-width:992px){

.mobile-header{

display:none;

}

}