
/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@300;400;500;600&display=swap');

/* ===== RESET ===== */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{
--bg:#f8f5f0;
--white:#ffffff;
--text:#1f1f1f;
--muted:#666;
--gold:#b89568;
--gold-dark:#9d7c52;
--shadow:0 12px 35px rgba(0,0,0,0.08);
--radius:22px;
--transition:0.35s ease;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:linear-gradient(to bottom,#fcfbf8,#f5f1ea);
color:var(--text);
line-height:1.7;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

section{
padding:90px 8%;
}

/* ===== HEADER ===== */
.main-header{
position:sticky;
top:0;
z-index:999;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 7%;
background:rgba(255,255,255,0.92);
backdrop-filter:blur(14px);
box-shadow:0 4px 20px rgba(0,0,0,0.04);
}

.logo img{
width:170px;
transition:var(--transition);
}

.logo img:hover{
transform:scale(1.04);
}

.nav{
display:flex;
gap:35px;
}

.nav a{
font-size:15px;
font-weight:500;
color:#333;
position:relative;
transition:var(--transition);
}

.nav a::after{
content:"";
position:absolute;
left:0;
bottom:-8px;
width:0;
height:2px;
background:var(--gold);
transition:var(--transition);
}

.nav a:hover{
color:var(--gold-dark);
}

.nav a:hover::after{
width:100%;
}

/* ===== HERO / HOMEPAGE ===== */
.homepage{
text-align:center;
background:transparent;
}

.homepage img{
border-radius:30px;
max-height:650px;
object-fit:cover;
box-shadow:var(--shadow);
}

.homepage h1,
.hero h1,
.about h1,
.about h2,
.values h2,
.reviews h2,
.cta h2,
.products-header h2,
.privacy-header h1,
.page-content h1{
font-family:'Playfair Display',serif;
}

.homepage h1{
font-size:clamp(42px,6vw,78px);
margin-top:45px;
margin-bottom:20px;
}

.homepage p{
max-width:850px;
margin:0 auto 50px;
font-size:18px;
color:var(--muted);
}

.homepage h2{
font-size:36px;
margin-bottom:35px;
text-align:center;
}

/* ===== CATEGORIES ===== */
.categories{
display:grid;
display:flex;
gap:30px;
overflow-x:auto;
padding-bottom:20px;
scroll-snap-type:x mandatory;
gap:35px;
-webkit-overflow-scrolling:touch;
}

.category{
min-width:280px;
max-width:280px;
flex-shrink:0;
scroll-snap-align:start;
background:var(--white);
padding:28px;
border-radius:var(--radius);
box-shadow:var(--shadow);
transition:var(--transition);
}

.category:hover{
transform:translateY(-12px);
}

.category img{
height:270px;
object-fit:contain;
background:#f6f3ed;
padding:20px;
border-radius:18px;
}

.category h3{
margin-top:22px;
font-size:24px;
color:#222;
}

/* ===== ABOUT ===== */
.about{
background:transparent;
}

.about-container{
display:flex;
flex-wrap:wrap;
gap:60px;
align-items:center;
}

.about-text,
.about-image{
flex:1;
min-width:300px;
}

.about-text h1,
.about-text h2{
font-size:52px;
margin-bottom:25px;
}

.about-text p{
font-size:17px;
color:var(--muted);
margin-bottom:20px;
}

.about-image img{
border-radius:28px;
box-shadow:var(--shadow);
}

/* ===== HERO ===== */
.hero{
background:linear-gradient(135deg,#efe7dc,#fbf8f4);
text-align:center;
padding:120px 20px;
}

.hero h1{
font-size:72px;
margin-bottom:20px;
}

.hero p{
font-size:22px;
color:#555;
}

/* ===== VALUES ===== */
.values{
text-align:center;
}

.values h2{
font-size:54px;
margin-bottom:55px;
}

.value-boxes{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.box{
background:var(--white);
padding:50px 35px;
border-radius:var(--radius);
box-shadow:var(--shadow);
transition:var(--transition);
}

.box:hover{
transform:translateY(-10px);
}

.box h3{
font-size:30px;
margin-bottom:18px;
}

/* ===== REVIEWS ===== */
.reviews{
background:linear-gradient(to bottom,#f4efe7,#fcfaf7);
}

.reviews h2{
font-size:54px;
margin-bottom:55px;
}

.reviews-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.review{
background:white;
padding:35px;
border-radius:22px;
box-shadow:var(--shadow);
}

.review p{
font-size:17px;
font-style:italic;
}

.review h4{
margin-top:20px;
color:var(--gold-dark);
}

/* ===== PRODUCTS ===== */
.products-header{
background:transparent;
padding:50px 8% 20px;
}

.products-header h2{
font-size:54px;
}

.products{
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:30px;
background:transparent;
}

/* Tablet */
@media (max-width:900px){
.products{
grid-template-columns:repeat(2,1fr);
}
}

/* Mobile */
@media (max-width:600px){
.products{
grid-template-columns:1fr;
}
}

.product{
background:white;
padding:28px;
border-radius:28px;
box-shadow:var(--shadow);
color:inherit;
transition:var(--transition);
}

.product:hover{
transform:translateY(-12px) scale(1.02);
}

.product img{
height:280px;
object-fit:contain;
background:#f7f4ef;
padding:20px;
border-radius:18px;
}

.product h2{
font-size:28px;
margin:24px 0 12px;
}

.product p{
font-size:22px;
font-weight:600;
color:var(--gold-dark);
}

.enquire{
display:inline-block;
margin-top:18px;
padding:12px 20px;
background:var(--gold);
color:white;
border-radius:999px;
font-size:14px;
font-weight:600;
}

/* ===== BUTTONS ===== */
button,
.btn{
background:linear-gradient(135deg,var(--gold),var(--gold-dark));
color:white;
border:none;
padding:15px 30px;
border-radius:999px;
font-weight:600;
letter-spacing:.5px;
box-shadow:0 8px 20px rgba(184,149,104,.3);
transition:var(--transition);
}

button:hover,
.btn:hover{
transform:translateY(-3px);
}

/* ===== CONTACT ===== */
.contact{
background:white;
max-width:1100px;
margin:70px auto;
padding:50px;
border-radius:30px;
box-shadow:var(--shadow);
}

.contact-form{
margin-top:35px;
}

.contact-form h1{
font-size:54px;
font-family:'Playfair Display',serif;
margin-bottom:15px;
}

input,
textarea{
width:100%;
padding:18px 22px;
border:1px solid #ddd;
border-radius:18px;
margin:14px 0;
font-size:15px;
background:#faf9f6;
}

textarea{
min-height:160px;
}

.contact-content{
display:flex;
flex-wrap:wrap;
gap:40px;
align-items:center;
}

.details-right img{
border-radius:22px;
box-shadow:var(--shadow);
}

.social-media{
margin-top:70px;
padding:40px;
background:#f7f3ec;
border-radius:22px;
}

/* ===== PRODUCT PAGE ===== */
.product-page{
max-width:1100px;
margin:0 auto;
padding:90px 5vw;
}

#product-image{
max-width:900px;
border-radius:30px;
box-shadow:var(--shadow);
margin-bottom:40px;
}

#product-name{
font-size:58px;
font-family:'Playfair Display',serif;
}

#product-price{
font-size:32px;
color:var(--gold-dark);
}

#product-description{
max-width:760px;
margin:auto;
font-size:18px;
}

.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 900px;
    margin: 30px auto 40px;
}

.gallery-image {
    width: 440px;      /* About half of 900px */
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,.18);
}


/* ===== LEGAL PAGES ===== */
.privacy-policy,
.page-content{
max-width:950px;
margin:70px auto;
padding:65px;
background:white;
border-radius:30px;
box-shadow:var(--shadow);
}

.page-content h2,
.privacy-policy h2{
margin-top:35px;
color:var(--gold-dark);
}

/* ===== CTA ===== */
.cta{
text-align:center;
background:linear-gradient(135deg,#f2eadf,#faf7f2);
border-radius:35px;
margin:70px 8%;
padding: 50px 30px;
}

.cta h2{
font-size:54px;
margin-bottom: 15px;
}

.cta p{
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta .btn{
    display: inline-block;
}
/* ===== FOOTER ===== */
.footer{
background:#171512;
color:white;
padding:80px 8% 30px;
margin-top:70px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:45px;
}

.footer-col h3{
font-size:24px;
margin-bottom:20px;
}

.footer-col p,
.footer-col a{
color:#d0c7bc;
}

.footer-col a:hover{
color:var(--gold);
}

.footer-col ul{
list-style:none;
}

.footer-col li{
margin-bottom:12px;
}

.footer-bottom{
margin-top:50px;
padding-top:25px;
border-top:1px solid #3a352d;
text-align:center;
}

/* ===== MOBILE ===== */
@media(max-width:1000px){
.products{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){

.main-header{
flex-direction:column;
gap:20px;
}

.nav{
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.hero h1,
.homepage h1,
.about-text h1,
.about-text h2,
.values h2,
.reviews h2,
.cta h2{
font-size:40px;
}

.contact,
.page-content,
.privacy-policy{
padding:30px;
}

#product-name{
font-size:42px;
}

}
