@charset "utf-8";

/* =========================================================
AURORA LUMA - FINAL STYLE.CSS
Global Base • Header • Homepage • Footer
========================================================= */

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

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Montserrat',sans-serif;
background:#f5f3ef;
color:#111;
overflow-x:hidden;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
}

a{
text-decoration:none;
color:inherit;
}

ul{
list-style:none;
}

img,
video{
max-width:100%;
display:block;
}

/* =========================================================
TOP BAR
========================================================= */

.top-bar{
position:fixed;
top:0;
left:0;
width:100%;
height:34px;
background:#050505;
display:flex;
justify-content:center;
align-items:center;
gap:20px;
z-index:999999;
border-bottom:1px solid rgba(212,175,55,.35);
}

.top-bar a{
display:flex;
align-items:center;
justify-content:center;
min-width:170px;
height:34px;
padding:0 26px;
font-size:11px;
font-weight:600;
letter-spacing:3px;
text-transform:uppercase;
white-space:nowrap;
transition:0.3s ease;
}

.top-bar .light-tab{
background:#f6f5f2;
color:#000;
}

.top-bar .dark-tab{
background:#000;
color:#fff;
}

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

.header{
position:fixed;
top:34px;
left:0;
width:100%;
height:78px;
background:#f6f5f2;
display:flex;
align-items:center;
z-index:999998;
border-bottom:1px solid rgba(0,0,0,0.08);
box-shadow:0 2px 12px rgba(0,0,0,0.05);
overflow:visible;
}

/* =========================================================
DESKTOP NAV
========================================================= */

.desktop-nav{
position:relative;
display:grid;
grid-template-columns:320px 1fr auto 180px;
align-items:center;
column-gap:34px;
padding:0 42px;
height:78px;
width:100%;
background:#f8f7f4;
overflow:visible;
}
/* =========================================================
LOGO
========================================================= */

.logo{
display:flex;
align-items:center;
font-size:54px;
font-family:'Cormorant Garamond',serif;
font-weight:600;
letter-spacing:3px;
line-height:1;
white-space:nowrap;
color:#444;
height:100%;
}

/* =========================================================
MENU
========================================================= */

.menu{
display:flex;
justify-content:center;
align-items:center;
gap:52px;
margin:0;
padding:0;
width:100%;
}

.menu-item{
position:relative;
display:flex;
align-items:center;
height:100%;
min-width:max-content;
overflow:visible;
}

.menu-item::after{
content:"";
position:absolute;
left:0;
top:100%;
width:100%;
height:40px;
background:transparent;
}

.menu-link{
display:flex;
align-items:center;
height:100%;
font-size:13px;
letter-spacing:4px;
font-weight:600;
color:#4a4a4a;
position:relative;
transition:0.35s ease;
z-index:2;
}

.menu-link::after{
content:"";
position:absolute;
left:0;
bottom:18px;
width:0;
height:1px;
background:#c8a96b;
transition:0.35s ease;
}

.menu-link:hover{
color:#111;
}

.menu-link:hover::after{
width:100%;
}

/* =========================================================
DROPDOWN
========================================================= */

.dropdown{
position:fixed;
top:116px;
left:50%;
transform:translateX(-50%);

width:1080px;
max-width:90vw;
min-height:360px;

background:#fbfaf7;

padding:40px 45px;

display:flex;
align-items:center;
justify-content:space-between;
gap:40px;

opacity:0;
visibility:hidden;
pointer-events:none;

transition:opacity .25s ease;

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

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

z-index:999999;
}

.menu-item:hover .dropdown{
opacity:1;
visibility:visible;
pointer-events:auto;
}

.dropdown-left{
width:35%;
padding-right:20px;
display:flex;
flex-direction:column;
justify-content:center;
}

.dropdown-left h3{
font-size:14px;
letter-spacing:5px;
margin-bottom:22px;
font-weight:700;
text-transform:uppercase;
color:#111;
line-height:1.5;
}
.dropdown-left ul li a{
font-size:13px;
font-weight:500;
color:#444;
transition:.3s;
letter-spacing:2px;
text-transform:uppercase;
padding:6px 0;
display:inline-block;
}
.dropdown-left ul li a{
font-size:16px;
color:#555;
transition:0.3s;
letter-spacing:1px;
}

.dropdown-left ul li a:hover{
padding-left:10px;
color:#000;
letter-spacing:2.5px;
}

.dropdown-image{
width:82%;
height:400px;
overflow:hidden;

display:flex;
align-items:center;
justify-content:center;
}
.dropdown-image img{
width:100%;
height:100%;
object-fit:contain;
transition:.5s ease;
}

.dropdown:hover .dropdown-image img{
transform:scale(1.02);
}

/* =========================================================
SEARCH
========================================================= */

.search-container{
display:flex;
justify-content:flex-end;
width:180px;
}

#globalSearch{
width:180px;
height:38px;
background:transparent;
border:none;
border-bottom:1px solid rgba(0,0,0,0.25);
color:#111;
font-size:12px;
letter-spacing:2px;
outline:none;
padding:0 6px;
transition:0.35s ease;
}

#globalSearch::placeholder{
color:rgba(0,0,0,0.45);
}

#globalSearch:focus{
width:220px;
border-bottom:1px solid #111;
}

/* =========================================================
HOME HERO
========================================================= */

.hero{
position:relative;
height:calc(100vh - 116px);
min-height:820px;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
margin-top:116px;
}

.hero-image{
position:absolute;
inset:0;
z-index:1;
}

.hero-image video{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(0.72);
transform:scale(0.98);
}
.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(
to bottom,
rgba(0,0,0,0.06),
rgba(0,0,0,0.28)
);
z-index:2;
}

/* =========================================================
AURORA LIGHTS
========================================================= */

.aurora-wrapper{
position:absolute;
inset:0;
z-index:2;
pointer-events:none;
overflow:hidden;
}

.aurora-light{
position:absolute;
border-radius:50%;
filter:blur(110px);
opacity:0.35;
animation-timing-function:ease-in-out;
animation-iteration-count:infinite;
}
.aurora-light1,
.aurora-light2,
.aurora-light3{
display:none !important;
}

/* =========================================================
FLOATING BALLS
========================================================= */

.floating-balls{
position:absolute;
inset:0;
overflow:hidden;
z-index:3;
pointer-events:none;
}

.ball{
position:absolute;
width:12px;
height:12px;
background:rgba(255,255,255,0.4);
border-radius:50%;
animation:floatBall linear infinite;
}

.ball1{left:10%;bottom:-50px;animation-duration:12s;}
.ball2{left:30%;bottom:-80px;animation-duration:15s;}
.ball3{left:50%;bottom:-60px;animation-duration:11s;}
.ball4{left:70%;bottom:-70px;animation-duration:14s;}
.ball5{left:85%;bottom:-90px;animation-duration:17s;}
.ball6{left:95%;bottom:-100px;animation-duration:16s;}

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

.hero-content{
position:absolute;
top:46%;
right:5%;
transform:translateY(-50%);
z-index:5;
width:44%;
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
}

.hero-content h1{
font-size:108px;
line-height:0.9;
letter-spacing:3px;
font-weight:600;
margin-bottom:28px;
font-family:'Cormorant Garamond',serif;
text-transform:uppercase;
color:#fff;
text-shadow:
0 6px 18px rgba(0,0,0,0.28),
0 12px 30px rgba(0,0,0,0.18);
}

.hero-content p{
font-size:16px;
letter-spacing:8px;
font-weight:500;
margin-bottom:42px;
color:rgba(255,245,210,0.92);
}

.hero-buttons{
display:flex;
gap:18px;
margin-top:10px;
}

.hero-buttons a{
width:210px;
height:54px;
border:1px solid rgba(255,215,120,0.55);
background:rgba(255,255,255,0.04);
backdrop-filter:blur(4px);
display:flex;
justify-content:center;
align-items:center;
font-size:14px;
letter-spacing:2.5px;
font-weight:600;
color:#fff7d1;
transition:0.35s;
}

.hero-buttons a:hover{
background:rgba(212,166,58,0.18);
border-color:#f0cf72;
transform:translateY(-2px);
}

/* =========================================================
CAMPAIGN
========================================================= */

.luxury-campaign-section{
padding:140px 8%;
position:relative;
overflow:hidden;
}

.campaign-bg-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
font-size:220px;
font-weight:700;
opacity:0.03;
letter-spacing:20px;
pointer-events:none;
}

.campaign-content{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
position:relative;
z-index:2;
}

.campaign-left{
width:45%;
}

.campaign-small-title{
font-size:28px;
letter-spacing:6px;
margin-bottom:20px;
font-weight:600;
background:

linear-gradient(
to bottom,
 135deg,
  #8f99a3 0%,
  #7f8d98 25%,
  #8a97a1 50%,
  #9f8d92 75%,
  #b3a49c 100%
);
background-clip:text;
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
-webkit-text-stroke:0.4px rgba(90,60,0,0.45);
text-shadow:
1px 1px 0 rgba(0,0,0,0.45),
-1px -1px 0 rgba(255,255,255,0.35),
0 2px 3px rgba(0,0,0,0.35),
0 4px 8px rgba(0,0,0,0.22),
0 0 12px rgba(212,166,58,0.35);
}

.campaign-left h2{
font-size:96px;
line-height:0.9;
font-family:'Cormorant Garamond',serif;
font-weight:500;
letter-spacing:2px;
margin-bottom:30px;
}

.campaign-left p{
font-size:16px;
line-height:1.8;
margin-bottom:40px;
max-width:500px;
color:#555;
}

.campaign-left a{
display:inline-flex;
justify-content:center;
align-items:center;
width:260px;
height:60px;
background:#111;
color:#fff;
font-size:13px;
letter-spacing:3px;
transition:0.3s;
}

.campaign-left a:hover{
transform:translateY(-3px);
}

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

.footer{
background:#0f0f0f;
color:#fff;
padding:100px 8% 40px;
margin-top:80px;
display:flex;
flex-direction:column;
position:relative;
overflow:hidden;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:60px;
padding-bottom:60px;
}

.footer h4{
font-size:13px;
letter-spacing:4px;
margin-bottom:26px;
font-weight:600;
color:#fff;
}

.footer ul{
display:flex;
flex-direction:column;
gap:14px;
}

.footer ul li a{
font-size:14px;
color:rgba(255,255,255,0.7);
transition:0.35s ease;
}

.footer ul li a:hover{
color:#d4a63a;
padding-left:5px;
}

.footer-bottom{
padding-top:26px;
border-top:1px solid rgba(255,255,255,0.08);
font-size:13px;
color:rgba(255,255,255,0.55);
text-align:center;
}

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

.mobile-header{
display:none;
}
/* =========================================================
INDEX PAGE ALIGNMENT RESTORE FIX
========================================================= */

/* =========================================================
CAMPAIGN RIGHT IMAGE AREA
========================================================= */

.campaign-right{
width:55%;
display:flex;
gap:30px;
align-items:flex-end;
}

.campaign-card{
overflow:hidden;
}

.card-one{
width:50%;
}

.card-two{
width:50%;
margin-bottom:60px;
}

.campaign-card img{
width:100%;
height:700px;
object-fit:cover;
transition:0.5s ease;
}

.campaign-card:hover img{
transform:scale(1.05);
}

/* =========================================================
COLLECTION SECTION
========================================================= */

.collection-section{
padding:0 5% 120px;
}

.collection-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.collection-card{
position:relative;
overflow:hidden;
}

.collection-card img{
width:100%;
height:auto;
display:block;
object-fit:contain;
transition:0.6s ease;
}

.collection-card:hover img{
transform:scale(1.05);
}

.collection-overlay{
position:absolute;
bottom:60px;
left:50%;
transform:translateX(-50%);
text-align:center;
color:#fff;
width:100%;
padding:0 20px;
z-index:5;
}

.collection-overlay h2{
font-size:42px;
letter-spacing:4px;
margin-bottom:20px;
}

.collection-overlay a{
display:inline-flex;
justify-content:center;
align-items:center;
width:220px;
height:56px;
border:1px solid rgba(255,255,255,0.8);
font-size:12px;
letter-spacing:4px;
transition:0.3s ease;
}

.collection-overlay a:hover{
background:#fff;
color:#111;
}

/* =========================================================
BIG VIDEO / MEDIA SECTION
========================================================= */

.luxury-media-section{
width:100%;
padding:0;
margin-bottom:60px;
}

.luxury-big-image{
position:relative;
width:100vw;
max-width:100vw;
margin-left:calc(50% - 50vw);
overflow:hidden;
}

.luxury-big-image video{
display:block;
width:100%;
height:auto;
object-fit:cover;
}

.luxury-big-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.25);
}

.luxury-big-content{
position:absolute;
left:80px;
bottom:80px;
color:#fff;
max-width:650px;
z-index:5;
}

.luxury-big-content h2{
font-size:82px;
letter-spacing:4px;
margin-bottom:25px;
font-family:'Cormorant Garamond',serif;
font-weight:500;
}

.luxury-big-content p{
font-size:18px;
line-height:1.8;
}

/* =========================================================
BOTTOM VIDEO SECTION
========================================================= */

.luxury-video-section{
position:relative;
height:100vh;
overflow:hidden;
margin-top:60px;
padding-top:0;
}

.luxury-video-section video{
width:100%;
height:100%;
object-fit:cover;
}

.luxury-video-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.35);
}

.luxury-video-left{
position:absolute;
left:80px;
top:50%;
transform:translateY(-50%);
color:#fff;
z-index:2;
}

.luxury-video-content{
position:absolute;
right:80px;
bottom:120px;
max-width:480px;
text-align:right;
color:#fff;
z-index:5;
}

.luxury-video-content p{
font-size:22px;
line-height:1.8;
margin-bottom:30px;
}

.luxury-video-content a{
display:inline-flex;
justify-content:center;
align-items:center;
width:280px;
height:60px;
border:1px solid rgba(255,255,255,0.7);
font-size:13px;
letter-spacing:4px;
transition:0.3s ease;
}

.luxury-video-content a:hover{
background:#fff;
color:#111;
}

/* =========================================================
TABLET / MOBILE RESTORE
========================================================= */

@media(max-width:991px){

.campaign-content{
flex-direction:column;
}

.campaign-left,
.campaign-right{
width:100%;
}

.campaign-left{
text-align:center;
}

.campaign-right{
flex-direction:column;
align-items:center;
}

.card-one,
.card-two{
width:100%;
margin:0;
}

.campaign-card img{
height:auto;
}

.collection-row{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.luxury-campaign-section{
padding:80px 20px;
}

.campaign-left h2{
font-size:52px;
}

.campaign-right{
gap:18px;
}

.collection-section{
padding:0 20px 70px;
}

.collection-overlay{
bottom:25px;
padding:0 15px;
}

.collection-overlay h2{
font-size:26px;
letter-spacing:2px;
line-height:1.2;
margin-bottom:10px;
}

.luxury-big-image{
height:72vh;
min-height:520px;
}

.luxury-big-image video{
height:100%;
object-fit:cover;
}

.luxury-big-content{
left:50%;
bottom:12%;
transform:translateX(-50%);
width:85%;
text-align:center;
}

.luxury-big-content h2{
font-size:42px;
line-height:1.1;
}

.luxury-big-content p{
font-size:16px;
line-height:1.6;
}

.luxury-video-section{
height:520px;
margin-top:20px;
}

.luxury-video-content{
left:50%;
right:auto;
bottom:40px;
transform:translateX(-50%);
max-width:340px;
text-align:center;
padding:0 20px;
}

.luxury-video-content p{
font-size:16px;
line-height:1.7;
}

.luxury-video-content a{
width:100%;
max-width:340px;
height:56px;
}

}
/* =========================================================
FINAL MICRO INTERACTION POLISH - SHOP
========================================================= */

.product-card,
.related-product-card,
.recently-card{
transition:
transform 0.45s ease,
box-shadow 0.45s ease,
border-color 0.45s ease;
}

.product-card:hover,
.related-product-card:hover,
.recently-card:hover{
transform:translateY(-6px);
box-shadow:0 22px 55px rgba(0,0,0,0.08);
border-color:rgba(0,0,0,0.12);
}

.product-image img,
.related-product-image img,
.recently-card-image img{
transition:
transform 0.75s ease,
opacity 0.35s ease,
filter 0.45s ease;
}

.product-card:hover .product-image img,
.related-product-card:hover .related-product-image img,
.recently-card:hover .recently-card-image img{
transform:scale(1.045);
filter:brightness(1.02);
}

.sort-option,
.filter-list li,
.menu-link,
.footer a{
transition:
opacity 0.35s ease,
transform 0.35s ease,
color 0.35s ease,
background 0.35s ease;
}
/* =========================================================
FINAL LUXURY BUTTON INTERACTIONS
========================================================= */

.hero-buttons a,
.campaign-left a,
.collection-overlay a,
.luxury-video-content a,
.checkout-btn,
.add-to-bag-btn,
.checkout-button,
.checkout-mini-btn,
.view-bag-btn{
position:relative;
overflow:hidden;
isolation:isolate;
}

/* glow layer */

.hero-buttons a::before,
.campaign-left a::before,
.collection-overlay a::before,
.luxury-video-content a::before,
.checkout-btn::before,
.add-to-bag-btn::before,
.checkout-button::before,
.checkout-mini-btn::before,
.view-bag-btn::before{
content:"";
position:absolute;
top:0;
left:-120%;
width:120%;
height:100%;
background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,0.18),
transparent
);
transition:0.8s ease;
z-index:-1;
}

/* hover animation */

.hero-buttons a:hover::before,
.campaign-left a:hover::before,
.collection-overlay a:hover::before,
.luxury-video-content a:hover::before,
.checkout-btn:hover::before,
.add-to-bag-btn:hover::before,
.checkout-button:hover::before,
.checkout-mini-btn:hover::before,
.view-bag-btn:hover::before{
left:120%;
}

/* luxury shadow */

.hero-buttons a:hover,
.campaign-left a:hover,
.collection-overlay a:hover,
.luxury-video-content a:hover,
.checkout-btn:hover,
.add-to-bag-btn:hover,
.checkout-button:hover,
.checkout-mini-btn:hover{
box-shadow:
0 12px 35px rgba(0,0,0,0.16);
}

/* secondary button */

.view-bag-btn:hover{
box-shadow:
0 10px 30px rgba(0,0,0,0.08);
}
/* =========================================================
MOBILE BAG TRIGGER
========================================================= */

.mobile-right-icons{
display:flex;
align-items:center;
gap:16px;
}

.mobile-bag-trigger{
display:flex;
align-items:center;
gap:8px;
font-size:11px;
font-weight:600;
letter-spacing:2px;
cursor:pointer;
color:#111;
text-transform:uppercase;
white-space:nowrap;
}

.mobile-bag-trigger span{
display:flex;
align-items:center;
justify-content:center;
width:22px;
height:22px;
border-radius:50%;
background:#111;
color:#fff;
font-size:10px;
font-weight:700;
letter-spacing:0;
}

@media(min-width:769px){

.mobile-bag-trigger{
display:none;
}

}

/* FIX DESKTOP HEADER OVERLAP ON SMALL LAPTOP */


/* FIX DESKTOP HEADER OVERLAP ON SMALL LAPTOP */

@media(min-width:1201px) and (max-width:1500px){

  .desktop-nav{
    grid-template-columns:auto 1fr auto auto;
    align-items:center;
    gap:26px;
  }

  .desktop-nav .logo{
    font-size:38px !important;
    letter-spacing:3px !important;
  }

  .desktop-nav .menu{
    justify-content:center;
    gap:34px;
  }

  .desktop-nav .menu-link{
    font-size:12px;
    letter-spacing:4px;
    white-space:nowrap;
  }

  .search-container{
    margin-left:auto;
    margin-right:24px;
    max-width:140px;
  }

  .concierge-menu-link{
    font-size:10px !important;
    letter-spacing:2px !important;
    padding:8px 13px !important;
  }

  .concierge-menu-item{
    margin-left:4px !important;
  }

}

.country-badge{
display:flex;
align-items:center;
gap:6px;
font-size:11px;
font-weight:500;
letter-spacing:.5px;
color:#111;
white-space:nowrap;
}

.canada-flag{
font-size:14px;
line-height:1;
}
@media(max-width:768px){



  .mobile-country{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin:0 2px 0 0 !important;
    padding:0 !important;
    line-height:1 !important;
  }

  .mobile-country .canada-flag{
    font-size:13px !important;
    line-height:1 !important;
    display:block !important;
  }

}
/* =========================================================
TOP BAR CANADA ICON
========================================================= */

.top-bar-right{
display:flex;
align-items:center;
height:100%;
}

.top-country{
display:flex;
align-items:center;
justify-content:center;
height:100%;
padding:0 14px;
font-size:14px;
background:#000;
color:#fff;
}
/* =========================================================
CANADA FLAG ICON
========================================================= */

/* =========================================================
CANADA FLAG FINAL SIZE FIX
========================================================= */

.top-country{
display:flex;
align-items:center;
justify-content:center;
height:100%;
padding:0 20px;
background:#000;
flex-shrink:0;
}

.canada-flag-icon{
width:34px !important;
height:22px !important;
max-width:none !important;
display:block;
object-fit:contain;
}
.luxury-notice{
position:fixed;
top:120px;
right:28px;
z-index:9999999;
width:300px;
padding:22px 24px;
background:rgba(18,18,18,.96);
color:#fff;
border:1px solid rgba(201,162,39,.55);
box-shadow:0 18px 45px rgba(0,0,0,.35);
opacity:0;
transform:translateY(-12px);
pointer-events:none;
transition:opacity .35s ease, transform .35s ease;
}

.luxury-notice.active{
opacity:1;
transform:translateY(0);
}

.luxury-notice h4{
margin:0 0 10px;
font-size:11px;
letter-spacing:3px;
font-weight:600;
color:#c9a227;
}

.luxury-notice p{
margin:0;
font-size:13px;
line-height:1.7;
letter-spacing:1px;
text-transform:uppercase;
}

@media(max-width:768px){

  .luxury-notice{
  top:90px;
  left:18px;
  right:18px;
  width:auto;
  }

}
/* =========================================================
FINAL DESKTOP MEGA MENU
========================================================= */

.dropdown{
width:1100px !important;
max-width:1100px !important;
height:520px !important;
min-height:520px !important;
padding:44px 52px !important;
gap:44px !important;
align-items:center !important;
}

.dropdown-left{
width:300px !important;
height:100% !important;
display:flex !important;
flex-direction:column !important;
justify-content:center !important;
flex-shrink:0 !important;
}

.dropdown-left h3{
font-family:'Cormorant Garamond',serif;
font-size:32px;
font-weight:500;
letter-spacing:7px;
color:#111;
}

.dropdown-left ul{
gap:14px !important;
}

.dropdown-left ul li a{
display:block !important;
padding:6px 0 !important;
font-size:15px;
letter-spacing:2.5px;
line-height:1.4 !important;
}

.dropdown-visual{
width:690px !important;
height:100% !important;
display:flex !important;
flex-direction:column !important;
align-items:center !important;
justify-content:center !important;
gap:18px !important;
}

.dropdown-heading{
font-family:'Playfair Display',serif;
font-size:28px;
font-weight:500;
letter-spacing:3px;
line-height:1.2;
text-align:center;
text-transform:uppercase;
color:#8f6b2e;
display:flex;
align-items:center;
justify-content:center;
margin:0 0 10px 0;
padding:0;
text-shadow:none;
max-width:420px;
margin-left:auto;
margin-right:auto;
}

.dropdown-image{
width:690px !important;
height:300px !important;
overflow:hidden !important;
display:flex !important;
align-items:center !important;
justify-content:center !important;
background:transparent !important;
}

.dropdown-image img{
width:100% !important;
height:100% !important;
object-fit:contain !important;
object-position:center !important;
display:block !important;
}

.dropdown-sentence{
font-family:'Montserrat', sans-serif !important;
font-size:13px !important;
font-weight:500 !important;
line-height:1.7 !important;
letter-spacing:.5px !important;

color:#444 !important;

text-transform:none !important;
text-align:center !important;

text-shadow:none !important;
}
.active-dropdown-link{
color:#111 !important;
font-weight:600 !important;
}

/* =========================================================
FINAL MOBILE MEGA MENU
========================================================= */

.mobile-dropdown{
overflow:visible !important;
}

.mobile-dropdown-heading{
font-family:'Cormorant Garamond',serif;
font-size:24px;
font-weight:600;
letter-spacing:5px;
text-transform:uppercase;
text-align:center;
color:#9b6a18;
margin:18px 0 16px;
text-shadow:
0 1px 0 #fff3c4,
0 2px 3px rgba(0,0,0,0.2);
}

.mobile-dropdown-sentence{
font-family:'Montserrat',sans-serif !important;
font-size:13px !important;
font-weight:500 !important;
letter-spacing:.4px !important;
line-height:1.6 !important;
text-align:center !important;
color:#333 !important;
margin:12px 0 18px !important;
text-shadow:none !important;
text-transform:none !important;
}

.mobile-image-link{
display:block !important;
width:100% !important;
height:auto !important;
overflow:visible !important;
margin-top:14px !important;
}

.mobile-dynamic-image{
display:block !important;
width:100% !important;

height:300px !important;

object-fit:cover !important;
object-position:center center !important;

background:transparent !important;
}

.mobile-explore-btn{
display:flex !important;
align-items:center !important;
justify-content:center !important;
width:100% !important;
height:48px !important;
margin:16px 0 10px !important;
padding:0 12px !important;
background:transparent !important;
border:1px solid #b8860b !important;
color:#b8860b !important;
font-family:'Montserrat',sans-serif !important;
font-size:13px !important;
font-weight:800 !important;
letter-spacing:2.5px !important;
line-height:1 !important;
text-transform:uppercase !important;
text-decoration:none !important;
text-align:center !important;
}

.mobile-explore-btn:hover,
.mobile-explore-btn:active{
background:rgba(184,134,11,0.08) !important;
border-color:#9b6a18 !important;
color:#9b6a18 !important;
}

.mobile-dynamic-link{
display:block;
padding:8px 0;
}

.active-mobile-dropdown-link{
color:#111 !important;
font-weight:600 !important;
}

/* =========================================================
HOMEPAGE 4 PILLAR LUXURY TEXT FIX
========================================================= */

.collection-card::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
to top,
rgba(0,0,0,.48) 0%,
rgba(0,0,0,.22) 38%,
rgba(0,0,0,.04) 100%
);
z-index:2;
pointer-events:none;
}

.collection-overlay{
z-index:5 !important;
bottom:52px !important;
}

.collection-overlay h2{
display:none !important;
}

.homepage-pillar-subtitle{
font-size:15px;
font-weight:500;
letter-spacing:.8px;
margin-bottom:18px;
text-shadow:0 4px 14px rgba(0,0,0,.45);
}

.collection-overlay a{
background:rgba(0,0,0,.16);
backdrop-filter:blur(4px);
}
/* =========================================================
FINAL LUXURY TOP BAR + DESKTOP HEADER - CLEAN
========================================================= */

@media(min-width:1201px){

  .top-bar{
    height:34px !important;
    background:#050505 !important;
    display:grid !important;
    grid-template-columns:1fr auto 1fr !important;
    align-items:center !important;
    gap:0 !important;
  }

  .top-bar .light-tab{
    grid-column:2 !important;
    min-width:220px !important;
    height:34px !important;
    background:#f6f5f2 !important;
    color:#111 !important;
    font-size:10px !important;
    letter-spacing:3px !important;
  }

  .top-bar-right{
    grid-column:3 !important;
    justify-self:start !important;
    height:34px !important;
    display:flex !important;
    align-items:center !important;
  }

  .top-country{
    height:34px !important;
    width:56px !important;
    padding:0 !important;
    background:#050505 !important;
    border-left:1px solid rgba(212,175,55,.25) !important;
    border-right:1px solid rgba(212,175,55,.25) !important;
  }

  .canada-flag-icon{
    width:28px !important;
    height:18px !important;
  }

  .top-bar .dark-tab{
    height:34px !important;
    min-width:260px !important;
    background:#050505 !important;
    color:#fff !important;
    font-size:10px !important;
    letter-spacing:3px !important;
  }

  .desktop-nav{
    grid-template-columns:225px minmax(0,1fr) 52px 120px !important;
    column-gap:24px !important;
    padding:0 28px !important;
    align-items:center !important;
  }

  .desktop-nav .logo{
  font-size:28px !important;
  letter-spacing:2px !important;
  white-space:nowrap !important;
}
  .desktop-nav .menu{
    justify-content:center !important;
    gap:18px !important;
    min-width:0 !important;
  }

  .desktop-nav .menu-link{
    font-size:12px !important;
    letter-spacing:3.2px !important;
    white-space:nowrap !important;
  }

  .luxury-bag-trigger{
    transform:none !important;
    justify-self:center !important;
    margin:0 !important;
    font-size:10px !important;
    letter-spacing:1.5px !important;
    white-space:nowrap !important;
  }

  .search-container{
    transform:none !important;
    justify-self:end !important;
    width:140px !important;
    max-width:140px !important;
  }

  #globalSearch{
    width:135px !important;
    max-width:135px !important;
  }

  #globalSearch:focus{
    width:140px !important;
    max-width:140px !important;
  }

}

/* =========================================================
LUXURY AURORA RIBBON EFFECT
========================================================= */

.aurora-ribbon{
position:absolute;
left:-20%;
top:10%;
width:140%;
height:180px;
pointer-events:none;
filter:blur(40px);
opacity:.35;
mix-blend-mode:screen;
z-index:4;
}

.ribbon1{
background:
linear-gradient(
90deg,
transparent,
#4fc3ff,
#9b6dff,
#ff7ad9,
transparent
);
animation:ribbonFlow1 22s ease-in-out infinite alternate;
}

.ribbon2{
top:35%;
background:
linear-gradient(
90deg,
transparent,
#41d6b7,
#4fc3ff,
#9b6dff,
transparent
);
animation:ribbonFlow2 28s ease-in-out infinite alternate;
}

.ribbon3{
top:60%;
background:
linear-gradient(
90deg,
transparent,
#f4c56a,
#41d6b7,
#4fc3ff,
transparent
);
animation:ribbonFlow3 25s ease-in-out infinite alternate;
}

@keyframes ribbonFlow1{
0%{
transform:
translateX(-10%)
translateY(0)
rotate(-8deg);
}
100%{
transform:
translateX(10%)
translateY(40px)
rotate(6deg);
}
}

@keyframes ribbonFlow2{
0%{
transform:
translateX(10%)
translateY(20px)
rotate(4deg);
}
100%{
transform:
translateX(-8%)
translateY(-30px)
rotate(-5deg);
}
}

@keyframes ribbonFlow3{
0%{
transform:
translateX(-6%)
translateY(10px)
rotate(8deg);
}
100%{
transform:
translateX(8%)
translateY(-20px)
rotate(-6deg);
}
}
/* =========================================================
   FIX — DESKTOP MAIN MENU DROPDOWN TOP SPACE
   Only affects desktop mega menu
========================================================= */

@media(min-width:1201px){

  .dropdown{
    height:auto !important;
    min-height:420px !important;
    padding:28px 52px 34px !important;
    align-items:flex-start !important;
  }

  .dropdown-left{
    justify-content:flex-start !important;
    padding-top:18px !important;
  }

  .dropdown-visual{
    justify-content:flex-start !important;
    padding-top:0 !important;
  }

}
/* =========================================================
   FIX 1B — REDUCE DESKTOP MEGA MENU HEIGHT
========================================================= */

@media(min-width:1201px){

  .dropdown{
    min-height:360px !important;
    height:auto !important;
    padding:22px 48px 26px !important;
  }

  .dropdown-left{
    padding-top:20px !important;
  }

  .dropdown-visual{
    gap:10px !important;
  }

  .dropdown-heading{
    height:auto !important;
    margin:0 0 8px !important;
  }

  .dropdown-image{
    height:260px !important;
  }

  .dropdown-sentence{
    height:auto !important;
    margin:4px 0 0 !important;
  }

}
/* =========================================================
   FIX 1C — MAIN MENU DROPDOWN TOP POSITION
========================================================= */

@media(min-width:1201px){

  .dropdown{
    top:112px !important;
    padding-top:24px !important;
  }

}

/* =========================================================
   FIX — MOBILE MENU EQUAL WIDTH + CONSISTENT FONT
========================================================= */

@media(max-width:768px){

  .mobile-menu{
    width:82% !important;
    max-width:360px !important;
    margin:0 auto !important;
    padding:18px 22px 22px !important;
  }

  .mobile-item{
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
  }

  .mobile-link,
  .mobile-parent-link{
    width:100% !important;
    height:48px !important;
    min-height:48px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;

    padding:0 !important;
    margin:0 !important;

    font-family:"Montserrat",sans-serif !important;
    font-size:13px !important;
    font-weight:600 !important;
    letter-spacing:5px !important;
    line-height:1 !important;
    text-transform:uppercase !important;

    border-bottom:1px solid rgba(0,0,0,.12) !important;
  }

  .mobile-parent-link{
    justify-content:flex-start !important;
  }

}

/* ========================================
MOBILE HERO VIDEO
======================================== */

/* ========================================
MOBILE HERO VIDEO
======================================== */

/* =========================================================
SEPARATE MOBILE HERO SIZE
========================================================= */
/* =========================================================
SEPARATE MOBILE HERO SIZE
========================================================= */

@media(max-width:768px){

  .hero{
    height:900px;
    min-height:900px;
    margin-top:92px;
  }

}
  .hero-image video{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
  }



/* =========================================================
REMOVE HOMEPAGE HERO CONTENT
========================================================= */

.hero-content{
  display:none !important;
}

.luxury-video-bottom-text{
text-align:center;
font-size:18px;
font-weight:500;
letter-spacing:1px;
color:#111;
padding:24px 20px 40px;
background:#fff;
}



/* =========================================================
FIX - BOTTOM VIDEO BUTTON OVER VIDEO + TEXT BELOW
========================================================= */

.luxury-video-section{
position:relative !important;
height:auto !important;
overflow:visible !important;
background:#fff !important;
}

.luxury-video-section video{
position:relative !important;
width:100% !important;
height:auto !important;
display:block !important;
object-fit:contain !important;
}

.luxury-video-overlay{
display:none !important;
}

.luxury-video-content{
position:relative !important;

display:flex !important;
justify-content:center !important;
align-items:center !important;

width:100% !important;

padding:12px 20px 0 !important;
margin:0 !important;

background:transparent !important;
box-shadow:none !important;
border:none !important;
}

.luxury-video-content a{
display:flex !important;
align-items:center !important;
justify-content:center !important;

width:520px !important;
max-width:90% !important;
height:68px !important;

background:#fff !important;
border:2px solid #111 !important;

color:#111 !important;
font-size:15px !important;
font-weight:800 !important;
letter-spacing:4px !important;
text-transform:uppercase !important;

margin:0 auto !important;
}

.luxury-video-bottom-text{
display:block !important;

text-align:center !important;

font-size:22px !important;
font-weight:500 !important;
line-height:1.3 !important;

color:#111 !important;
background:transparent !important;

padding:8px 20px 24px !important;
margin:0 !important;
}

/* =========================================================
FINAL FIX - REMOVE WHITE BOX BEHIND BOTTOM VIDEO BUTTON
========================================================= */

.luxury-video-section .luxury-video-content{
background:transparent !important;
box-shadow:none !important;
border:none !important;
}

.luxury-video-section .luxury-video-content::before,
.luxury-video-section .luxury-video-content::after{
display:none !important;
content:none !important;
background:transparent !important;
}

.luxury-video-section .luxury-video-content a{
background:#ffffff !important;
border:2px solid #111 !important;
box-shadow:none !important;
}


/* =========================================================
FINAL FIX - CENTER BOTTOM VIDEO CTA
========================================================= */

.luxury-video-section{
position:relative !important;
height:auto !important;
overflow:visible !important;
background:#fff !important;
}

.luxury-video-section video{
position:relative !important;
display:block !important;
width:100% !important;
height:auto !important;
object-fit:contain !important;
}

.luxury-video-section .luxury-video-content{
position:relative !important;
left:0 !important;
right:0 !important;
top:auto !important;
bottom:auto !important;
transform:none !important;

width:100% !important;
max-width:100% !important;

display:flex !important;
justify-content:center !important;
align-items:center !important;

padding:16px 20px 8px !important;
margin:0 auto !important;

background:transparent !important;
text-align:center !important;
}

.luxury-video-section .luxury-video-content a{
display:flex !important;
align-items:center !important;
justify-content:center !important;

width:520px !important;
max-width:90% !important;
height:68px !important;

margin:0 auto !important;

background:#fff !important;
border:2px solid #111 !important;
color:#111 !important;

font-size:15px !important;
font-weight:800 !important;
letter-spacing:4px !important;
text-transform:uppercase !important;
white-space:nowrap !important;
}

.luxury-video-bottom-text{
display:block !important;
text-align:center !important;

font-size:22px !important;
font-weight:500 !important;
line-height:1.3 !important;
color:#111 !important;

background:#fff !important;
padding:8px 20px 34px !important;
margin:0 !important;
}


/* =========================================================
FINAL MOBILE MENU CLEAN SHARP LOOK
========================================================= */

@media(max-width:768px){

  .mobile-menu{
    background:#fbfaf7 !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    box-shadow:0 8px 22px rgba(0,0,0,0.05) !important;
    border-left:1px solid rgba(0,0,0,0.08) !important;
  }

  .mobile-dropdown-sentence{
    font-family:'Montserrat',sans-serif !important;
    font-size:13px !important;
    font-weight:500 !important;
    letter-spacing:.4px !important;
    line-height:1.6 !important;
    color:#333 !important;
    text-align:center !important;
    text-shadow:none !important;
    text-transform:none !important;
    margin:14px 0 22px !important;
  }

}
/* =========================================================
FINAL SMALL DESKTOP HEADER LOGO + MENU FIX
========================================================= */

@media(min-width:769px) and (max-width:1200px){

  .desktop-nav{
    display:grid !important;
    grid-template-columns:245px minmax(0,1fr) 55px 105px !important;
    column-gap:14px !important;
    padding:0 22px !important;
    height:78px !important;
    overflow:visible !important;
  }

  .desktop-nav .logo{
    font-size:25px !important;
    letter-spacing:1.6px !important;
    white-space:nowrap !important;
    overflow:visible !important;
  }

  .desktop-nav .menu{
    gap:18px !important;
    justify-content:center !important;
    min-width:0 !important;
    overflow:visible !important;
  }

  .desktop-nav .menu-link{
    font-size:10px !important;
    letter-spacing:2px !important;
    white-space:nowrap !important;
  }

  .luxury-bag-trigger{
    font-size:10px !important;
    letter-spacing:1px !important;
    white-space:nowrap !important;
  }

  .search-container{
    width:105px !important;
    max-width:105px !important;
  }

  #globalSearch{
    width:100px !important;
    max-width:100px !important;
  }

}

/* =========================================================
   HOMEPAGE PRODUCT MOTION — CLEAN FINAL
   Desktop: Best Sellers | New Arrivals | Editor's Picks
========================================================= */

.home-product-motion-section{
  padding:90px 5vw 110px;
  background:#f8f5ef;
  overflow:hidden;
}

.home-motion-luxury-grid{
  display:flex;
  flex-direction:row;
  align-items:stretch;
  justify-content:center;
  gap:48px;
  max-width:1500px;
  margin:0 auto;
}

.home-motion-panel{
  position:relative;
  width:32%;
  max-width:440px;
  height:620px;
  overflow:hidden;
  background:#fffdf8;
  border:1px solid rgba(184,150,82,.18);
  box-shadow:0 18px 45px rgba(0,0,0,.05);
}

.home-motion-panel-center{
  order:1;
}

.home-motion-panel-left{
  order:2;
}

.home-motion-panel-right{
  order:3;
}

.home-motion-heading{
  position:absolute;
  top:38px;
  left:0;
  right:0;
  z-index:5;
  text-align:center;
}

.home-motion-heading p{
  margin:0;
  font-size:12px;
  font-weight:700;
  letter-spacing:7px;
  color:#b89652;
}

.home-motion-heading span{
  display:block;
  width:58px;
  height:1px;
  margin:18px auto 0;
  background:#b89652;
  position:relative;
}

.home-motion-heading span::after{
  content:"";
  position:absolute;
  width:7px;
  height:7px;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%) rotate(45deg);
  border:1px solid #b89652;
  background:#fffdf8;
}

.home-motion-window{
  position:absolute;
  inset:105px 0 42px;
  overflow:hidden;
}

.home-motion-track{
  display:flex;
  gap:26px;
  width:max-content;
}

.home-motion-panel-center .home-motion-track{
  position:absolute;
  top:50%;
  left:0;
  flex-direction:row;
  align-items:center;
  animation:homeMotionLeft 30s linear infinite;
}

.home-motion-panel-left .home-motion-track{
  position:absolute;
  top:0;
  left:50%;
  flex-direction:column;
  align-items:center;
  animation:homeMotionUpCentered 28s linear infinite;
}

.home-motion-panel-right .home-motion-track{
  position:absolute;
  top:50%;
  left:0;
  flex-direction:row;
  align-items:center;
  animation:homeMotionRight 30s linear infinite;
}

.home-motion-product-card{
  flex:0 0 auto;
  width:230px;
  background:#fff;
  color:#111;
  text-decoration:none;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 38px rgba(0,0,0,.08);
}

.home-motion-product-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.home-motion-product-info{
  padding:18px 14px 20px;
  text-align:center;
  background:#fff;
}

.home-motion-product-info h3{
  margin:0 0 10px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.2px;
  line-height:1.5;
  text-transform:uppercase;
}

.home-motion-product-info p{
  margin:0;
  font-size:14px;
  font-weight:600;
}

@keyframes homeMotionLeft{
  from{
    transform:translateX(0) translateY(-50%);
  }
  to{
    transform:translateX(-50%) translateY(-50%);
  }
}

@keyframes homeMotionRight{
  from{
    transform:translateX(-50%) translateY(-50%);
  }
  to{
    transform:translateX(0) translateY(-50%);
  }
}

@keyframes homeMotionUpCentered{
  from{
    transform:translateX(-50%) translateY(0);
  }
  to{
    transform:translateX(-50%) translateY(-50%);
  }
}

/* =========================================================
   MOBILE — CLEAN SAFE STACK
========================================================= */

@media(max-width:768px){

  .home-product-motion-section{
    padding:55px 18px 75px !important;
  }

  .home-motion-luxury-grid{
    flex-direction:column !important;
    gap:46px !important;
    width:100% !important;
    max-width:100% !important;
  }

  .home-motion-panel{
    width:100% !important;
    max-width:100% !important;
    height:430px !important;
    min-height:430px !important;
  }

  .home-motion-panel-center,
  .home-motion-panel-left,
  .home-motion-panel-right{
    order:initial !important;
  }

  .home-motion-window{
    inset:96px 0 34px !important;
  }

  .home-motion-track{
    gap:18px !important;
  }

  .home-motion-panel-left .home-motion-track{
    position:relative !important;
    top:auto !important;
    left:auto !important;
    flex-direction:row !important;
    align-items:flex-start !important;
    animation:homeMobileSlideLeft 30s linear infinite !important;
  }

  .home-motion-panel-center .home-motion-track{
    position:absolute !important;
    top:0 !important;
    left:50% !important;
    flex-direction:column !important;
    align-items:center !important;
    animation:homeBestSellerUpCentered 30s linear infinite !important;
  }

  .home-motion-panel-right .home-motion-track{
    position:relative !important;
    top:auto !important;
    left:auto !important;
    flex-direction:row !important;
    align-items:flex-start !important;
    animation:homeMobileSlideLeft 30s linear infinite !important;
  }

  .home-motion-product-card{
    width:245px !important;
    min-width:245px !important;
    max-width:245px !important;
  }

  .home-motion-product-card img{
    height:245px !important;
  }

}

@keyframes homeMobileSlideLeft{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

@keyframes homeBestSellerUpCentered{
  from{
    transform:translateX(-50%) translateY(0);
  }
  to{
    transform:translateX(-50%) translateY(-50%);
  }
}