/*==================================================
GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#fff;
    font-family:'Manrope',sans-serif;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:min(1320px,92%);
    margin:auto;
}

:root{

--gold:#d8b13c;
--border:#232323;
--text:#bcbcbc;
--transition:.45s;

}

section{
    padding:120px 0;
}

h1,h2,h3{
    font-family:'Cormorant Garamond',serif;
    font-weight:500;
}

/*==================================================
HEADER
==================================================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
padding:25px 0;

background:linear-gradient(to bottom,#000,transparent);

backdrop-filter:blur(10px);

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;

}

.logo h2{

font-size:30px;
font-weight:500;

}

.logo span{

color:var(--gold);

}

nav ul{

display:flex;
gap:42px;

}

nav a{

font-size:13px;
letter-spacing:1px;
text-transform:uppercase;
transition:.4s;
position:relative;

}

nav a::after{

content:"";
position:absolute;
left:0;
bottom:-8px;
width:0;
height:2px;
background:var(--gold);
transition:.4s;

}

nav a:hover,
nav a.active{

color:var(--gold);

}

nav a:hover::after,
nav a.active::after{

width:100%;

}

.quote-btn{

background:var(--gold);
color:#111;
padding:16px 34px;
font-size:13px;
font-weight:700;
transition:.4s;

}

.quote-btn:hover{

transform:translateY(-5px);

}

.menu{

display:none;
font-size:28px;
cursor:pointer;

}
/*==============================
PREMIUM LOGO
==============================*/

.premium-brand-logo{
    flex-shrink:0;
}

.premium-brand-logo-link{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.premium-brand-logo img{
    width:62px;
    height:62px;
    object-fit:contain;
    display:block;
}

.premium-brand-logo h2{
    margin:0;
    color:#fff;
    font-size:30px;
    font-weight:800;
    line-height:1;
    letter-spacing:.5px;
}

.premium-brand-logo h2 span{
    color:#D4AF37;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

    .premium-brand-logo img{
        width:54px;
        height:54px;
    }

    .premium-brand-logo h2{
        font-size:25px;
    }

}

@media(max-width:768px){

    .premium-brand-logo img{
        width:48px;
        height:48px;
    }

    .premium-brand-logo h2{
        font-size:22px;
    }

}

@media(max-width:480px){

    .premium-brand-logo-link{
        gap:10px;
    }

    .premium-brand-logo img{
        width:42px;
        height:42px;
    }

    .premium-brand-logo h2{
        font-size:18px;
    }

}

@media(max-width:320px){

    .premium-brand-logo img{
        width:36px;
        height:36px;
    }

    .premium-brand-logo h2{
        font-size:16px;
    }

}
/*======================================
WHATSAPP FLOAT BUTTON
======================================*/

.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37,211,102,.45);
    z-index: 9999;
    transition: .35s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform: translateY(-6px) scale(1.08);
    color: #fff;
    box-shadow: 0 15px 40px rgba(37,211,102,.6);
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.55);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media (max-width:768px){

    .whatsapp-float{
        width:58px;
        height:58px;
        right:18px;
        bottom:18px;
        font-size:1.8rem;
    }

}
/*==================================================
MOBILE MENU
==================================================*/
.mobile-nav{

position:fixed;
top:0;
right:-100%;

width:320px;
height:100vh;

background:#0b0b0b;

padding:45px;

transition:.45s;

z-index:99999;

display:flex;
flex-direction:column;

overflow-y:auto;

}

.mobile-nav.show{

right:0;

}

.close{

margin-left:auto;
font-size:30px;
cursor:pointer;
margin-bottom:40px;

}

.mobile-nav ul{

display:flex;
flex-direction:column;
gap:25px;

position:relative;
z-index:100000;

}

.mobile-nav a{

position:relative;
z-index:100001;
display:block;
color:white;

}
.close{

position:relative;
z-index:100002;
cursor:pointer;

}
.mobile-btn{

margin-top:40px;
padding:16px;
background:var(--gold);
color:#000;
font-weight:700;
text-align:center;

}
.header-btn a{

padding:16px 34px;
background:var(--gold);
color:#000;
font-size:13px;
font-weight:700;
transition:.4s;
display:inline-flex;
align-items:center;
justify-content:center;

}

.header-btn a:hover{

transform:translateY(-5px);

}
@media(max-width: 400px){
    .header-btn a{

padding:10px 12px;
background:var(--gold);
color:#000;
font-size:8px;
}
}
/*==================================================
HERO
==================================================*/

.cart-hero{

padding-top:190px;
padding-bottom:120px;

border-bottom:1px solid var(--border);

}

.cart-hero span{

display:inline-block;
font-size:11px;
letter-spacing:4px;
color:var(--gold);
margin-bottom:25px;

}

.cart-hero h1{

font-size:110px;
line-height:.9;
margin-bottom:30px;

}

.cart-hero p{

max-width:560px;
color:var(--text);
line-height:1.9;
font-size:17px;

}

/*==================================================
CART SECTION
==================================================*/

.carts{

padding:0;

}

.cart-row{

display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:70px;

padding:90px 0;

border-bottom:1px solid var(--border);

}

.cart-row.reverse .cart-image{

order:2;

}

.cart-row.reverse .cart-content{

order:1;

}

.cart-image{

overflow:hidden;
position:relative;

}

.cart-image img{

height:540px;
object-fit:cover;
transition:1.2s;

}

.cart-row:hover img{

transform:scale(1.08);

}

.tag{

display:inline-block;

padding:7px 14px;

background:var(--gold);

color:#000;

font-size:10px;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:22px;

}

.cart-content h2{

font-size:66px;

margin-bottom:10px;

}

.cart-content h5{

font-size:30px;

font-family:'Cormorant Garamond',serif;

font-style:italic;

color:var(--gold);

font-weight:400;

margin-bottom:25px;

}

.cart-content p{

color:var(--text);

line-height:1.9;

margin-bottom:35px;

font-size:16px;

}

/*==================================================
FEATURE LIST
==================================================*/

.cart-content ul{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px 35px;
margin-bottom:40px;

}

.cart-content ul li{

display:flex;
align-items:center;
gap:12px;

font-size:15px;

color:#d0d0d0;

}

.cart-content ul i{

color:var(--gold);
font-size:13px;

}

/*==================================================
PRICE + BUTTON
==================================================*/

.bottom{

display:flex;
justify-content:space-between;
align-items:center;
gap:25px;
margin-top:15px;

}

.bottom small{

display:block;

font-size:10px;

letter-spacing:3px;

color:#888;

margin-bottom:8px;

}

.bottom h4{

font-size:34px;

font-family:'Cormorant Garamond',serif;

color:var(--gold);

font-weight:500;

}

.bottom a{

display:inline-flex;

align-items:center;

gap:12px;

padding:18px 34px;

background:var(--gold);

color:#000;

font-size:14px;

font-weight:700;

transition:.4s;

}

.bottom a:hover{

transform:translateY(-6px);

}

.bottom a i{

transition:.35s;

}

.bottom a:hover i{

transform:translateX(6px);

}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-thumb{
background:var(--gold);
}

::-webkit-scrollbar-track{
background:#0b0b0b;
}

/*==================================================
ANIMATIONS
==================================================*/

.cart-row{

animation:fadeUp .9s ease both;

}

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(70px);

}

to{

opacity:1;
transform:translateY(0);

}

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.cart-hero h1{
font-size:90px;
}

.cart-content h2{
font-size:54px;
}

.footer-left h2{
font-size:56px;
}

.footer-bg{
font-size:140px;
}

}

@media(max-width:991px){

nav,
.quote-btn{
display:none;
}

.menu{
display:block;
}

.cart-row{
grid-template-columns:1fr;
gap:50px;
}

.cart-row.reverse .cart-image,
.cart-row.reverse .cart-content{
order:unset;
}

.cart-image img{
height:430px;
}

.footer-grid{
grid-template-columns:1fr;
gap:60px;
}

.footer-bg{
display:none;
}

}

@media(max-width:768px){

section{
padding:90px 0;
}

.cart-hero{
padding-top:150px;
}

.cart-hero h1{
font-size:62px;
}

.cart-content h2{
font-size:46px;
}

.cart-content h5{
font-size:25px;
}

.cart-content ul{
grid-template-columns:1fr;
}

.bottom{
flex-direction:column;
align-items:flex-start;
}

.footer-left h2{
font-size:44px;
}

}

@media(max-width:576px){

.container{
width:92%;
}

.logo h2{
font-size:20px;
}


.mobile-nav{
width:100%;
}

.cart-hero h1{
font-size:48px;
}

.cart-content h2{
font-size:38px;
}

.cart-content h5{
font-size:22px;
}

.cart-image img{
height:290px;
}

.bottom a{
width:100%;
justify-content:center;
}

.footer-left h2{
font-size:36px;
}

}

@media(max-width:380px){

.cart-hero h1{
font-size:40px;
}

.cart-content h2{
font-size:32px;
}

.footer-left h2{
font-size:30px;
}

}
.copyright{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
     padding: 20px 40px;
}
/*==================================================
FOOTER
==================================================*/

footer{
    background:#090909;
    border-top:1px solid var(--border);
    overflow:hidden;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
    padding:90px 0 70px;
    align-items:flex-start;
}

.footer-left{
    max-width:520px;
}

.footer-tag{
    display:inline-block;
    color:var(--gold);
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.footer-grid h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:30px;
}

.footer-grid h4{
    font-size:20px;
    margin-bottom:22px;
    color:#fff;
}

.footer-grid ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-grid li{
    margin-bottom:14px;
}

.footer-grid li a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.35s;
}

.footer-grid li a:hover{
    color:var(--gold);
}

.footer-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 28px;
    border:1px solid var(--gold);
    color:var(--gold);
    text-decoration:none;
    transition:.35s;
}

.footer-btn:hover{
    background:var(--gold);
    color:#000;
}

.socials{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.socials a{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #333;
    color:#fff;
    text-decoration:none;
    transition:.35s;
}

.socials a:hover{
    background:var(--gold);
    color:#000;
    border-color:var(--gold);
}

.footer-bg{
    text-align:center;
    font-size:clamp(48px,9vw,120px);
    font-weight:700;
    color:rgba(255,255,255,.04);
    letter-spacing:3px;
    line-height:1;
    padding:20px 0 35px;
    user-select:none;
}

.copyright{
    border-top:1px solid var(--border);
    padding:22px 22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    color:#888;
    font-size:14px;
}

/*==================================================
TABLET
==================================================*/

@media(max-width:991px){

.footer-grid{
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding:70px 0 50px;
}

.footer-left{
    grid-column:1/-1;
    max-width:100%;
}

.footer-grid h2{
    font-size:34px;
}

.footer-bg{
    font-size:70px;
}

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:40px;
}

.footer-left{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.footer-btn{
    justify-content:center;
}

.socials{
    justify-content:center;
}

.footer-bg{
    font-size:46px;
    padding:15px 0 25px;
}

.copyright{
    flex-direction:column;
    text-align:center;
    gap:8px;
}

}

/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:480px){

.footer-grid{
    padding:55px 0 35px;
}

.footer-grid h2{
    font-size:28px;
}

.footer-btn{
    width:100%;
    justify-content:center;
}

.socials a{
    width:42px;
    height:42px;
}

.footer-bg{
    font-size:32px;
}

.copyright{
    font-size:13px;
}

}
/*==================================================
HERO BUTTONS FINAL RESPONSIVE
==================================================*/

.hero-buttons{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:18px;
    flex-wrap:wrap;
}

/* Desktop */
.hero-buttons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:auto;
    min-width:200px;
    max-width:230px;

    padding:16px 28px;
    height:58px;

    white-space:nowrap;
}

/* Tablet */
@media (max-width:991px){

.hero-buttons{
    justify-content:center;
    width:100%;
}

.hero-buttons a{
    min-width:180px;
    max-width:220px;
    width:auto;
    flex:none;
}

}

/* Mobile */
@media (max-width:768px){

.hero-buttons{
    flex-direction:column;
    align-items:center;
    gap:14px;
}

.hero-buttons a{
    width:100%;
    max-width:300px;
    min-width:unset;
    height:54px;
    padding:14px 20px;
}

}

/* Small Mobile */
@media (max-width:480px){

.hero-buttons{
    width:100%;
}

.hero-buttons a{
    width:100%;
    max-width:260px;
    height:52px;
    font-size:14px;
}

.hero-buttons i{
    font-size:14px;
}

}
/* Hide Default Cursor */

*{
    cursor:none;
}

.cursor-outline,
.cursor-dot{
    position:fixed;
    top:0;
    left:0;
    pointer-events:none;
    opacity:0;
    transform:translate(-50%,-50%);
    z-index:999999;
}

/* Outer Circle */

.cursor-outline{

    width:34px;
    height:34px;

    border-radius:50%;

    border:2px solid #FFD54A;

    background:rgba(255,213,74,.05);

    box-shadow:
    0 0 10px rgba(255,213,74,.8),
    0 0 25px rgba(255,213,74,.7),
    0 0 50px rgba(255,213,74,.5);

    backdrop-filter:blur(3px);

    mix-blend-mode:difference;

    transition:
    width .25s,
    height .25s,
    border-color .25s,
    background .25s;

}

/* Center Dot */

.cursor-dot{

    width:8px;
    height:8px;

    border-radius:50%;

    background:#FFD54A;

    box-shadow:
    0 0 8px #FFD54A,
    0 0 18px #FFD54A,
    0 0 35px #FFD54A;

    mix-blend-mode:difference;

}

/* Hover */

.cursor-hover{

    width:58px !important;
    height:58px !important;

    background:rgba(255,213,74,.10);

    border-color:#fff;

}