/*=====================================
RESET
=====================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:Poppins,sans-serif;
background:#fff;
color:#111;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

/*=====================================
VARIABLES
=====================================*/

:root{

--gold:#C7A34B;
--dark:#111111;
--cream:#F8F6F3;
--gray:#666666;
--white:#ffffff;

}

/*=====================================
CONTAINER
=====================================*/

.container{

width:min(92%,1400px);
margin:auto;

}

/*=====================================
LOADER
=====================================*/

.loader{

position:fixed;
inset:0;

background:white;

display:flex;
justify-content:center;
align-items:center;

z-index:999999;

}

.loader-content{

text-align:center;

}

.loader img{

width:120px;
margin:auto;
margin-bottom:25px;

}

.loader h2{

font-size:48px;
font-family:"Cormorant Garamond",serif;
letter-spacing:2px;

}

.loader span{

color:#777;
letter-spacing:5px;

}

.loading-line{

width:220px;
height:3px;

background:#eee;

margin:35px auto;

overflow:hidden;

border-radius:20px;

}

.loading-line span{

display:block;

height:100%;

background:var(--gold);

width:0;

animation:loading 2s linear infinite;

}

@keyframes loading{

0%{

width:0;

}

100%{

width:100%;

}

}

/*=====================================
HEADER
=====================================*/

header{

position:absolute;

top:30px;

left:0;

width:100%;

z-index:100;

transition:.4s;

}

header .container{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo img{

height:90px;

}

nav ul{

display:flex;

gap:45px;

}

nav a{

color:white;

font-size:15px;

font-weight:500;

position:relative;

}

nav a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--gold);

transition:.4s;

}

nav a:hover::after{

width:100%;

}

.header-icons{

display:flex;

gap:18px;

}

.header-icons a{

width:45px;

height:45px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:rgba(255,255,255,.15);

backdrop-filter:blur(12px);

color:white;

transition:.3s;

}

.header-icons a:hover{

background:var(--gold);

}

.menu-btn{

display:none;

flex-direction:column;

gap:6px;

cursor:pointer;

}

.menu-btn span{

width:28px;

height:3px;

background:white;

border-radius:10px;

}

/*=====================================
CURSOR
=====================================*/

.cursor{

position:fixed;

width:22px;
height:22px;

border:2px solid var(--gold);

border-radius:50%;

pointer-events:none;

z-index:999999;

transform:translate(-50%,-50%);

}

/*=====================================
PROGRESS
=====================================*/

.progress-bar{

position:fixed;

top:0;
left:0;

height:4px;

width:0;

background:var(--gold);

z-index:999999;

}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:991px){

nav{

display:none;

}

.menu-btn{

display:flex;

}

}


/*=====================================
HERO
=====================================*/

.hero{

min-height:100vh;

background:linear-gradient(135deg,#111 0%,#1f1f1f 100%);

display:flex;

align-items:center;

position:relative;

overflow:hidden;

padding-top:120px;

}

.hero-wrapper{

display:grid;

grid-template-columns:1.1fr .9fr;

align-items:center;

gap:80px;

}

.hero-content{

color:white;

z-index:2;

}

.hero-tag{

display:inline-block;

padding:10px 20px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.25);

border-radius:40px;

backdrop-filter:blur(10px);

margin-bottom:30px;

font-size:14px;

letter-spacing:1px;

}

.hero h1{

font-family:"Cormorant Garamond",serif;

font-size:78px;

line-height:1.05;

margin-bottom:30px;

}

.hero p{

color:#ddd;

font-size:18px;

line-height:1.9;

max-width:600px;

margin-bottom:45px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:60px;

}

.btn-primary{

background:var(--gold);

color:#111;

padding:18px 42px;

border-radius:50px;

font-weight:600;

transition:.3s;

}

.btn-primary:hover{

transform:translateY(-5px);

}

.btn-secondary{

border:1px solid rgba(255,255,255,.3);

color:white;

padding:18px 42px;

border-radius:50px;

backdrop-filter:blur(10px);

transition:.3s;

}

.btn-secondary:hover{

background:white;

color:#111;

}

.hero-stats{

display:flex;

gap:70px;

}

.hero-stats h3{

font-size:38px;

color:var(--gold);

margin-bottom:8px;

}

.hero-stats span{

color:#bbb;

}

.hero-image{

position:relative;

}

.hero-image img{

width:100%;

border-radius:35px;

box-shadow:0 35px 70px rgba(0,0,0,.35);

}

.floating-card{

position:absolute;

background:white;

padding:18px;

border-radius:20px;

display:flex;

align-items:center;

gap:15px;

box-shadow:0 20px 50px rgba(0,0,0,.15);

animation:float 5s ease-in-out infinite;

}

.floating-card img{

width:70px;

height:70px;

border-radius:15px;

object-fit:cover;

}

.card-one{

left:-40px;

top:70px;

}

.card-two{

right:-35px;

bottom:60px;

}

.card-two i{

font-size:28px;

color:var(--gold);

}

.card-one h4,
.card-two h4{

margin-bottom:6px;

font-size:18px;

}

.card-one span,
.card-two span{

color:#777;

font-size:14px;

}

.shape{

position:absolute;

border-radius:50%;

filter:blur(40px);

opacity:.18;

}

.shape1{

width:320px;

height:320px;

background:var(--gold);

top:-80px;

right:-80px;

}

.shape2{

width:240px;

height:240px;

background:white;

bottom:-100px;

left:-80px;

}

.scroll-down{

position:absolute;

bottom:40px;

left:50%;

transform:translateX(-50%);

color:white;

display:flex;

flex-direction:column;

align-items:center;

gap:12px;

letter-spacing:3px;

font-size:12px;

animation:bounce 2s infinite;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

}

@keyframes bounce{

0%,100%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,-12px);

}

}

@media(max-width:991px){

.hero-wrapper{

grid-template-columns:1fr;

text-align:center;

}

.hero h1{

font-size:54px;

}

.hero p{

margin:auto auto 40px;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

flex-wrap:wrap;

}

.card-one,
.card-two{

display:none;

}

}

@media(max-width:600px){

.hero h1{

font-size:42px;

}

.hero-buttons{

flex-direction:column;

}

.hero-stats{

gap:35px;

}

}

/*=====================================
SECTION HEADING
=====================================*/

.section-heading{

text-align:center;

margin-bottom:70px;

}

.section-heading span{

display:inline-block;

letter-spacing:4px;

color:var(--gold);

font-size:14px;

font-weight:600;

margin-bottom:18px;

}

.section-heading h2{

font-family:"Cormorant Garamond",serif;

font-size:64px;

line-height:1.1;

max-width:700px;

margin:auto;

}

/*=====================================
CURVE
=====================================*/

.curve-top{

position:absolute;

top:0;

left:0;

width:100%;

line-height:0;

overflow:hidden;

}

.curve-top svg{

width:100%;

height:120px;

display:block;

}

/*=====================================
CATEGORIES
=====================================*/

.categories{

position:relative;

background:#fff;

padding:180px 0 140px;

}

.category-grid{

display:grid;

grid-template-columns:2fr 1fr;

grid-template-rows:320px 320px;

gap:25px;

}

.category-card{

position:relative;

overflow:hidden;

border-radius:35px;

cursor:pointer;

}

.category-card img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.category-card:hover img{

transform:scale(1.1);

}

.category-card::after{

content:"";

position:absolute;

inset:0;

background:linear-gradient(to top,
rgba(0,0,0,.75),
rgba(0,0,0,.15));

}

.category-content{

position:absolute;

left:35px;

bottom:35px;

color:white;

z-index:2;

}

.category-content small{

letter-spacing:3px;

font-size:13px;

display:block;

margin-bottom:12px;

}

.category-content h3{

font-size:34px;

font-family:"Cormorant Garamond",serif;

margin-bottom:18px;

max-width:320px;

}

.category-content a{

display:inline-flex;

align-items:center;

gap:10px;

color:white;

font-weight:600;

transition:.3s;

}

.category-content a:hover{

color:var(--gold);

}

.large{

grid-row:span 2;

}

.wide{

grid-column:span 2;

height:340px;

}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:991px){

.section-heading h2{

font-size:46px;

}

.category-grid{

grid-template-columns:1fr;

grid-template-rows:auto;

}

.large,
.wide{

grid-column:auto;

grid-row:auto;

height:350px;

}

.category-card{

height:350px;

}

}

@media(max-width:600px){

.section-heading h2{

font-size:38px;

}

.category-content{

left:25px;

bottom:25px;

}

.category-content h3{

font-size:28px;

}

}

/*=====================================
FEATURED PRODUCTS
=====================================*/

.featured-products{

padding:140px 0;

background:#f8f6f3;

}

.featured-layout{

display:grid;

grid-template-columns:1.3fr .9fr;

gap:40px;

align-items:stretch;

}

.featured-big{

position:relative;

overflow:hidden;

border-radius:35px;

background:white;

}

.featured-big img{

width:100%;

height:720px;

object-fit:cover;

transition:.7s;

}

.featured-big:hover img{

transform:scale(1.08);

}

.product-badge{

position:absolute;

top:30px;

left:30px;

background:var(--gold);

padding:12px 24px;

border-radius:40px;

font-size:13px;

font-weight:600;

color:#111;

z-index:5;

}

.product-info{

position:absolute;

left:45px;

bottom:45px;

background:rgba(255,255,255,.95);

padding:35px;

border-radius:25px;

max-width:420px;

backdrop-filter:blur(15px);

}

.product-info small{

letter-spacing:3px;

color:#777;

}

.product-info h3{

font-family:"Cormorant Garamond",serif;

font-size:44px;

margin:18px 0;

}

.price{

display:flex;

gap:15px;

align-items:center;

margin:25px 0;

}

.price span{

font-size:32px;

font-weight:700;

}

.price del{

color:#999;

font-size:20px;

}

.shop-btn{

display:inline-block;

padding:16px 36px;

background:#111;

color:white;

border-radius:50px;

transition:.3s;

}

.shop-btn:hover{

background:var(--gold);

color:#111;

}

/* RIGHT SIDE */

.product-list{

display:flex;

flex-direction:column;

gap:22px;

}

.mini-product{

display:flex;

align-items:center;

gap:20px;

padding:22px;

background:white;

border-radius:25px;

transition:.35s;

}

.mini-product:hover{

transform:translateX(12px);

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.thumb img{

width:120px;

height:120px;

border-radius:20px;

object-fit:cover;

}

.details{

flex:1;

}

.details small{

letter-spacing:2px;

color:#888;

}

.details h4{

font-size:24px;

margin:10px 0;

font-family:"Cormorant Garamond",serif;

}

.details span{

font-size:22px;

font-weight:600;

color:#111;

}

.icons{

display:flex;

flex-direction:column;

gap:14px;

}

.icons i{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#f3f3f3;

cursor:pointer;

transition:.3s;

}

.icons i:hover{

background:var(--gold);

color:white;

}

@media(max-width:991px){

.featured-layout{

grid-template-columns:1fr;

}

.featured-big img{

height:500px;

}

.product-info{

position:relative;

left:0;

bottom:0;

max-width:100%;

border-radius:0;

}

}

@media(max-width:768px){

.mini-product{

flex-direction:column;

text-align:center;

}

.icons{

flex-direction:row;

}

.thumb img{

width:100%;

height:220px;

}

.product-info h3{

font-size:34px;

}

}

/*=====================================
OUR STORY
=====================================*/

.our-story{

padding:140px 0;

background:#fff;

}

.story-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:90px;

align-items:center;

}

.story-images{

position:relative;

min-height:650px;

}

.img-large img{

width:460px;

height:560px;

object-fit:cover;

border-radius:35px;

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.img-small{

position:absolute;

right:0;

bottom:40px;

}

.img-small img{

width:280px;

height:330px;

object-fit:cover;

border-radius:30px;

border:8px solid #fff;

box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.experience-card{

position:absolute;

top:50px;

right:20px;

background:var(--gold);

color:#111;

padding:30px;

border-radius:25px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.experience-card h2{

font-size:54px;

font-family:"Cormorant Garamond",serif;

}

.section-tag{

display:inline-block;

letter-spacing:4px;

color:var(--gold);

font-weight:600;

margin-bottom:20px;

}

.story-content h2{

font-family:"Cormorant Garamond",serif;

font-size:64px;

margin-bottom:25px;

line-height:1.1;

}

.story-content p{

color:#666;

line-height:1.9;

margin-bottom:20px;

}

.story-features{

margin:40px 0;

display:grid;

gap:20px;

}

.feature-box{

display:flex;

align-items:center;

gap:20px;

padding:22px;

background:#fafafa;

border-radius:20px;

transition:.35s;

}

.feature-box:hover{

transform:translateX(10px);

background:#f3f3f3;

}

.feature-box i{

width:60px;

height:60px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:var(--gold);

color:#111;

font-size:22px;

}

/*=====================================
WHY US
=====================================*/

.why-us{

padding:140px 0;

background:#f8f6f3;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:70px;

}

.why-card{

background:#fff;

padding:45px 30px;

border-radius:30px;

text-align:center;

transition:.4s;

}

.why-card:hover{

transform:translateY(-12px);

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.why-card i{

font-size:40px;

color:var(--gold);

margin-bottom:25px;

}

.why-card h3{

margin-bottom:15px;

font-size:24px;

font-family:"Cormorant Garamond",serif;

}

.why-card p{

color:#666;

line-height:1.8;

}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:991px){

.story-grid{

grid-template-columns:1fr;

}

.story-images{

min-height:auto;

}

.img-large img{

width:100%;

height:auto;

}

.img-small,
.experience-card{

position:relative;

right:auto;

top:auto;

bottom:auto;

margin-top:20px;

}

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.story-content h2{

font-size:42px;

}

.why-grid{

grid-template-columns:1fr;

}

.img-small img{

width:100%;

height:auto;

}

}

/*=====================================
TESTIMONIALS
=====================================*/

.testimonials{

padding:140px 0;

background:white;

}

.testimonial-slider{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:70px;

}

.testimonial-card{

background:#fff;

padding:40px;

border-radius:30px;

box-shadow:0 15px 45px rgba(0,0,0,.08);

transition:.35s;

position:relative;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.quote{

font-size:45px;

color:var(--gold);

margin-bottom:20px;

}

.testimonial-card p{

line-height:1.9;

color:#666;

margin-bottom:25px;

}

.rating{

font-size:20px;

color:#f6b400;

margin-bottom:25px;

}

.customer{

display:flex;

align-items:center;

gap:15px;

}

.customer img{

width:70px;

height:70px;

border-radius:50%;

object-fit:cover;

}

.customer h4{

margin-bottom:5px;

}

.customer span{

color:#888;

font-size:14px;

}

/*=====================================
GALLERY
=====================================*/

.gallery{

padding:140px 0;

background:#f8f6f3;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

margin-top:70px;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:25px;

}

.gallery-item img{

width:100%;

height:340px;

object-fit:cover;

transition:.6s;

}

.gallery-item:hover img{

transform:scale(1.1);

}

.overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.45);

display:flex;

justify-content:center;

align-items:center;

font-size:42px;

color:white;

opacity:0;

transition:.4s;

}

.gallery-item:hover .overlay{

opacity:1;

}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:991px){

.testimonial-slider{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.gallery-grid{

grid-template-columns:1fr;

}

}

/*=====================================
NEWSLETTER
=====================================*/

.newsletter{

padding:140px 0;

background:#111;

position:relative;

overflow:hidden;

}

.newsletter-bg{

position:absolute;

width:700px;

height:700px;

background:rgba(199,163,75,.12);

border-radius:50%;

top:-250px;

right:-150px;

filter:blur(70px);

}

.newsletter-box{

max-width:900px;

margin:auto;

text-align:center;

color:white;

position:relative;

z-index:2;

}

.newsletter-box span{

letter-spacing:4px;

color:var(--gold);

}

.newsletter-box h2{

font-size:64px;

font-family:"Cormorant Garamond",serif;

margin:25px 0;

}

.newsletter-box p{

color:#ddd;

max-width:700px;

margin:auto auto 40px;

line-height:1.9;

}

.newsletter-form{

display:flex;

justify-content:center;

gap:15px;

}

.newsletter-form input{

width:450px;

padding:20px;

border:none;

border-radius:50px;

}

.newsletter-form button{

padding:20px 40px;

border:none;

background:var(--gold);

border-radius:50px;

font-weight:600;

cursor:pointer;

}

/* COUNTERS */

.counter-section{

padding:100px 0;

background:#f8f6f3;

}

.counter-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.counter-box{

background:#fff;

padding:45px;

border-radius:25px;

text-align:center;

}

.counter-box h2{

font-size:54px;

color:var(--gold);

font-family:"Cormorant Garamond",serif;

margin-bottom:10px;

}

/* CONTACT */

.contact{

padding:140px 0;

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

}

.contact-info h2{

font-size:60px;

font-family:"Cormorant Garamond",serif;

margin:20px 0;

}

.info-item{

display:flex;

gap:20px;

margin-top:30px;

}

.info-item i{

width:60px;

height:60px;

background:var(--gold);

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

}

.contact-form form{

display:grid;

gap:20px;

}

.contact-form input,
.contact-form textarea{

padding:18px;

border:1px solid #ddd;

border-radius:18px;

font-family:Poppins;

}

/* FOOTER */

footer{

background:#111;

padding:90px 0 30px;

color:#fff;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:50px;

}

.footer-logo{

width:140px;

margin-bottom:20px;

}

.footer-grid h3{

margin-bottom:20px;

}

.footer-grid ul li{

margin-bottom:14px;

}

.footer-grid a{

color:#bbb;

transition:.3s;

}

.footer-grid a:hover{

color:var(--gold);

}

.footer-social{

display:flex;

gap:15px;

margin-top:20px;

}

.footer-social a{

width:45px;

height:45px;

background:#222;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

color:#fff;

}

.footer-social a:hover{

background:var(--gold);

color:#111;

}

.copyright{

border-top:1px solid #2a2a2a;

margin-top:60px;

padding-top:30px;

text-align:center;

color:#999;

}

/* RESPONSIVE */

@media(max-width:991px){

.newsletter-form{

flex-direction:column;

align-items:center;

}

.newsletter-form input{

width:100%;

}

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

.contact-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.counter-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-social{

justify-content:center;

}

.newsletter-box h2{

font-size:42px;

}

.contact-info h2{

font-size:42px;

}

}

/*==========================================
STICKY HEADER
==========================================*/

header.sticky{

position:fixed;

top:0;

left:0;

width:100%;

padding:18px 0;

background:rgba(255,255,255,.92);

backdrop-filter:blur(18px);

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

header.sticky nav a{

color:#111;

}

header.sticky .header-icons a{

background:#f2f2f2;

color:#111;

}

header.sticky .menu-btn span{

background:#111;

}


/*==========================================
BACK TO TOP
==========================================*/

.top-btn{

position:fixed;

right:35px;

bottom:35px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:var(--gold);

color:#111;

font-size:18px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:999;

box-shadow:0 10px 30px rgba(0,0,0,.2);

}

.top-btn.show{

opacity:1;

visibility:visible;

}

.top-btn:hover{

transform:translateY(-8px);

}


/*==========================================
SCROLL REVEAL
==========================================*/

section{

opacity:0;

transform:translateY(70px);

transition:1s ease;

}

section.show-section{

opacity:1;

transform:translateY(0);

}

/*==========================================
CART COUNT BADGE
==========================================*/

.fa-bag-shopping{

position:relative;

}

.fa-bag-shopping::after{

content:attr(data-count);

position:absolute;

top:-8px;

right:-10px;

width:20px;

height:20px;

border-radius:50%;

background:#C7A34B;

color:#111;

font-size:11px;

font-weight:700;

display:flex;

justify-content:center;

align-items:center;

}


/*==========================================
WISHLIST
==========================================*/

.wishlist{

cursor:pointer;

transition:.35s;

}

.wishlist.active{

color:#e63946;

transform:scale(1.15);

}


/*=========================================
MOBILE NAVIGATION
=========================================*/

nav.active{

display:block;
position:absolute;
top:100%;
left:0;
width:100%;
background:#fff;
padding:30px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

nav.active ul{

flex-direction:column;
gap:25px;

}

nav.active a{

color:#111;

}


/*=========================================
ACTIVE LINK
=========================================*/

nav a.active{

color:var(--gold);

}


/*=========================================
RIPPLE EFFECT
=========================================*/

button,
.btn-primary,
.shop-btn{

position:relative;
overflow:hidden;

}

.ripple{

position:absolute;

border-radius:50%;

background:rgba(255,255,255,.45);

transform:scale(0);

animation:ripple .6s linear;

pointer-events:none;

}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}


/*=========================================
LOADED PAGE
=========================================*/

body.loaded{

animation:fadeBody .8s;

}

@keyframes fadeBody{

from{

opacity:0;

}

to{

opacity:1;

}

}