
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:linear-gradient(180deg,#F7F2EA,#EFE4D5);
font-family:'Inter', sans-serif;
color:#3B2A20;
overflow-x:hidden;
}

/* Luxury headings */

h1,h2,h3{
font-family:'Cormorant Garamond', serif;
}

/* Heading scale */

h1{
font-size:64px;
letter-spacing:1px;
line-height:1.1;
}

h2{
font-size:42px;
letter-spacing:.5px;
}

h3{
font-size:22px;
}

/* Body text */

p{
font-size:17px;
line-height:1.7;
color:#4A3A2F;
}
/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 50px;

position:sticky;
top:0;

background:rgba(255,255,255,0.65);
backdrop-filter:blur(10px);

border-bottom:1px solid rgba(0,0,0,0.05);

z-index:100;
}

/* HEADER BASE */

.main-header{
position:sticky;
top:0;
z-index:999;
backdrop-filter:blur(10px);
display:flex;
align-items:center;
justify-content:space-between;
padding:30px 30px;
background:white;
}

/* NAVS */

.nav-left,
.nav-right{
flex:1;
display:flex;
gap:20px;
align-items:center;
}

.nav-left{
justify-content:flex-start;
}

.nav-right{
justify-content:flex-end;
}

/* LOGO CENTER FIXED */

.logo{
position:absolute;
left:50%;
transform:translateX(-50%);
}

.logo img{
height:50px;
}

/* CART */

.cart-link{
position:relative;
}

.cart-badge{
position:absolute;
top:-6px;
right:-10px;
background:#B79A6B;
color:white;
font-size:10px;
padding:3px 6px;
border-radius:50%;
}

/* MOBILE MENU BUTTON */

.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
}

/* MOBILE MENU */

.mobile-menu{
display:none;
position:absolute;
top:70px;
left:0;
width:100%;

background:white;
padding:20px;

flex-direction:column;
gap:15px;

box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.mobile-menu.active{
display:flex;
}

/* HIDE DESKTOP NAV */

@media(max-width:820px){

.nav-left,
.nav-right{
display:none;
}

.menu-toggle{
display:block;
}

}

.mobile-menu a{
text-decoration:none;
color:#3B2A20;
font-size:16px;
}

/* ======================
   MOBILE RESPONSIVE
====================== */

@media(max-width:820px){

.nav-left,
.nav-right{
display:none;
flex-direction:column;
background:white;
position:absolute;
top:70px;
left:0;
width:100%;
padding:20px;
gap:15px;
}

/* SHOW MENU */

.nav-left.active,
.nav-right.active{
display:flex;
}

/* SHOW BUTTON */

.menu-toggle{
display:block;
}

/* LOGO stays center */
.logo img{
height:40px;
}

}
nav a{
text-decoration:none;
color:#3B2A20;
font-size:16px;
}

/* HERO */

@keyframes particlesMove{

0%{
transform:translateY(0);
}

100%{
transform:translateY(-200px);
}

}



.benefits{

padding:120px 40px;

background:#F8F2E9;

text-align:center;

}

.benefits h2{

font-size:42px;

margin-bottom:60px;

}

.benefit-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:40px;

max-width:1100px;

margin:auto;

}

.benefit-card{

background:white;

padding:35px;

border-radius:12px;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

transition:all .35s ease;

}

.benefit-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 50px rgba(0,0,0,0.12);

}

.benefit-icon{

font-size:32px;

margin-bottom:15px;

}

.benefit-card h3{

font-size:22px;

margin-bottom:10px;

}

.benefit-card p{

font-size:17px;

line-height:1.6;

color:#4A3A2F;

}

.why-dakshin{

padding:140px 40px;

background:#F8F2E9;

text-align:center;

}

.why-header{

max-width:700px;
margin:auto;

margin-bottom:80px;

}

.why-header h2{

font-size:46px;

margin-bottom:15px;

}

.why-header p{

font-size:20px;

line-height:1.6;

color:#4A3A2F;

}

.why-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:60px;

max-width:1100px;

margin:auto;

}

.why-item{

padding:40px;

background:white;

border-radius:14px;

box-shadow:0 12px 35px rgba(0,0,0,0.08);

transition:all .35s ease;

}

.why-item:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,0.15);

}

.why-icon{

font-size:38px;

margin-bottom:15px;

}

.why-item h3{

font-size:24px;

margin-bottom:12px;

}

.why-item p{

font-size:18px;

line-height:1.6;

color:#4A3A2F;

}


.luxury-intro{

min-height:85vh;

display:grid;
grid-template-columns:1fr 1fr;

align-items:center;

gap:100px;

max-width:1200px;
margin:auto;

padding:100px 40px;

background:
radial-gradient(circle at 30% 40%, #fff6e9 0%, transparent 60%),
radial-gradient(circle at 80% 70%, #f0e4d3 0%, transparent 60%);

}

.luxury-text{
max-width:520px;
}

.brand{

letter-spacing:4px;

font-size:14px;

color:#9A845C;

margin-bottom:20px;

text-transform:uppercase;

}

.luxury-text h1{

font-size:72px;

line-height:1.05;

margin-bottom:25px;

}

.intro-desc{

font-size:22px;

line-height:1.6;

color:#4A3A2F;

margin-bottom:40px;

}

.intro-btn{

display:inline-block;

padding:16px 38px;

background:#B79A6B;

color:white;

text-decoration:none;

border-radius:40px;

letter-spacing:2px;

font-size:14px;

transition:all .3s ease;

}

.intro-btn:hover{

transform:translateY(-3px);

box-shadow:0 12px 30px rgba(0,0,0,0.15);

}

.luxury-product{

display:flex;
justify-content:center;

}

.luxury-product img{

width:420px;

border-radius:18px;

box-shadow:0 35px 90px rgba(0,0,0,0.18);

}

.intro{

display:grid;
grid-template-columns:1fr 1fr;

align-items:center;

max-width:1200px;
margin:120px auto;

padding:0 40px;

gap:80px;

}

.intro-brand{

letter-spacing:3px;
font-size:14px;
color:#9A845C;

margin-bottom:15px;

}

.intro h1{

font-size:60px;
line-height:1.1;

margin-bottom:20px;

}

.intro-text{

font-size:20px;
line-height:1.6;

margin-bottom:35px;

color:#4A3A2F;

}

.intro-btn{

background:#B79A6B;
color:white;

padding:16px 38px;

text-decoration:none;

border-radius:40px;

font-size:14px;

letter-spacing:2px;

}

.intro-image img{

width:100%;

border-radius:14px;

box-shadow:0 30px 80px rgba(0,0,0,0.18);

}



/* SECTIONS */

.section{
padding:120px 40px;
text-align:center;
max-width:1200px;
margin:auto;
margin-top:40px;
margin-bottom:40px;
}

.section h2{
font-size:36px;
margin-bottom:20px;
}

/* PRODUCTS */

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
margin-top:40px;
}

.product{
background:white;
border-radius:12px;
overflow:hidden;

padding-bottom:20px;

box-shadow:0 8px 25px rgba(0,0,0,0.08);

transition:all .45s cubic-bezier(.22,1,.36,1);
}

.product h3{
margin-top:15px;
font-size:22px;
}

.product p{
margin:10px 0;
font-size:18px;
}
#cart-count{

background:#B79A6B;
color:white;

padding:2px 7px;
border-radius:50%;

font-size:12px;

margin-left:4px;
}
.product:hover{

transform:translateY(-12px) scale(1.02);

box-shadow:0 18px 45px rgba(0,0,0,0.18);

}
.product img{

width:100%;
height:auto;

object-fit:cover;

transition:transform .6s ease;

}
.cart-total{

margin-top:20px;
font-size:18px;
font-weight:600;

}

.product:hover img{

transform:scale(1.1);

}

.buy{

background:#3B2A20;

color:white;

border:none;

padding:12px 24px;

font-size:14px;

letter-spacing:1px;

cursor:pointer;

transition:all .3s ease;

border-radius:4px;

}
.buy:active{
transform:scale(.96);
}
dhover{

background:#000;

transform:translateY(-2px);

}

/* 3D BOTTLE */

#bottle-viewer{
height:400px;
margin-top:40px;
}

/* CART */

.cart{
position:fixed;
right:0;
top:0;
width:380px;
max-width:100%;
height:100%;
background:white;
box-shadow:-10px 0 40px rgba(0,0,0,0.15);
padding:25px;
transform:translateX(110%);
transition:transform .4s ease;
z-index:1000;
display:flex;
flex-direction:column;
}
#cart-items{
	flex:1;
	overflow-y:auto;
}
.cart.active{
transform:translateX(0);
}
.cart-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.close-cart{
font-size:26px;
font-weight:bold;
background:none;
border:none;
cursor:pointer;
color:#3B2A20;

transition:.2s;
}

.close-cart:hover{
transform:scale(1.2);
}

#cart-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.4);

opacity:0;
pointer-events:none;

transition:.3s;

z-index:999;
}

#cart-overlay.active{
opacity:1;
pointer-events:auto;
}
.checkout{
background:#B79A6B;
color:white;
padding:12px;
border:none;
width:100%;
margin-top:20px;
}
.cart-item{

display:flex;
gap:15px;
align-items:flex-start;

margin-bottom:18px;
border-bottom:1px solid #eee;

padding-bottom:12px;

}

.cart-img{
width:60px;
height:60px;
object-fit:cover;
border-radius:6px;
}

.cart-info p{
margin:2px 0;
}

.cart-info button{
background:#3B2A20;
color:white;
border:none;
padding:4px 8px;
cursor:pointer;
font-size:12px;
}
.cart-summary{
margin-top:20px;
border-top:1px solid #eee;
padding-top:15px;
}

.cart-summary select{
padding:5px;
margin-left:10px;
}
.qty{

display:flex;
align-items:center;

border:1px solid #ddd;
border-radius:6px;

overflow:hidden;

width:90px;

}

.qty button{

width:30px;
height:30px;

border:none;

background:#F7F2EA;

cursor:pointer;

font-size:18px;
font-weight:bold;

color:#3B2A20;

display:flex;
align-items:center;
justify-content:center;

}

.qty span{

width:30px;

text-align:center;

font-size:16px;

background:white;

}

.qty button:hover{
background:#EADFCC;
}
#zoom-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.92);
backdrop-filter:blur(6px);

justify-content:center;
align-items:center;

z-index:500;

animation:zoomFade .3s ease;
}

#zoom-modal img{
max-width:70%;
border-radius:8px;
box-shadow:0 20px 60px rgba(0,0,0,0.4);
}

@keyframes zoomFade{
from{
opacity:0;
transform:scale(.95);
}
to{
opacity:1;
transform:scale(1);
}
}
.product-img{
width:100%;
transition:transform 0.5s ease;
cursor:zoom-in;
}

.product:hover .product-img{
transform:scale(1.15);
}


/* CHECKOUT */

.checkout-page{
max-width:1200px;
margin:80px auto;
padding:40px;
display:grid;
grid-template-columns:1fr 420px;
gap:60px;
}

/* LEFT SIDE */

.checkout-left{
background:white;
padding:40px;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.checkout-left h2{
font-size:36px;
margin-bottom:25px;
}

.checkout-left input,
.checkout-left textarea,
.checkout-left select{

width:100%;
padding:14px;
margin-bottom:15px;

border:1px solid #ddd;
border-radius:8px;

font-size:15px;
font-family:'Inter';

background:#F7F2EA;

}

/* ORDER SUMMARY */

.checkout-right{
background:white;
padding:35px;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
height:fit-content;
}

.checkout-right h3{
font-size:28px;
margin-bottom:20px;
}

/* PRODUCT ROW */

.order-item{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:15px;
}

.order-left{
display:flex;
align-items:center;
gap:12px;
}

.order-left img{
width:55px;
height:55px;
object-fit:cover;
border-radius:8px;
}

.order-name{
font-size:16px;
}

.order-qty{
font-size:14px;
color:#777;
}
.checkout-left input,
.checkout-left textarea,
.checkout-left select{

font-family:'Inter', sans-serif;

}

input:invalid,
textarea:invalid,
select:invalid{

border:1px solid #e74c3c;

}
.phone-field{

display:flex;
align-items:center;

background:#F7F2EA;

border:1px solid #ddd;
border-radius:8px;

overflow:hidden;

margin-bottom:15px;

}

.phone-code{

padding:14px 12px;
background:#EFE4D5;

font-family:'Inter';
font-size:15px;

color:#3B2A20;

border-right:1px solid #ddd;

}

.phone-field input{

border:none;
background:transparent;

padding:14px;

flex:1;

font-size:15px;
font-family:'Inter';

outline:none;

}


.otp-box{
margin-bottom:15px;
}

.otp-box button{

background:#B79A6B;
color:white;

border:none;
padding:10px 18px;

border-radius:6px;

cursor:pointer;

}

.otp-verify input{

padding:12px;
border:1px solid #ddd;
border-radius:6px;
margin-right:10px;

}
/* OTP */
/* OTP BOXES */

.otp-inputs{

display:flex;
gap:8px;
margin-bottom:10px;

}

.otp-digit{

width:42px;
height:45px;

text-align:center;

font-size:20px;
font-weight:600;

border:1px solid #ddd;
border-radius:8px;

background:#F7F2EA;

font-family:'Inter';

outline:none;

}

.otp-digit:focus{
border-color:#B79A6B;
box-shadow:0 0 0 2px rgba(183,154,107,0.2);
}
.otp-section{
margin-bottom:20px;
}

.otp-send{

background:#B79A6B;
color:white;

border:none;

padding:10px 18px;

border-radius:6px;

cursor:pointer;

font-family:'Inter';

}

.otp-send:hover{
opacity:.9;
}

/* DASHBOARD */

.dashboard{
max-width:1200px;
margin:80px auto;
display:grid;
grid-template-columns:260px 1fr;
gap:40px;
padding:0 20px;
}

/* SIDEBAR */

.dashboard-menu{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.dashboard-menu h3{
margin-bottom:20px;
font-size:22px;
}

.dashboard-menu a{
display:block;
padding:12px;
margin-bottom:10px;
text-decoration:none;
color:#3B2A20;
border-radius:6px;
transition:.3s;
}

.dashboard-menu a:hover{
background:#F7F2EA;
}

/* CONTENT */

.dashboard-content{
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.dashboard-content h2{
font-size:32px;
margin-bottom:20px;
}

/* PROFILE CARD */

.profile-card{
background:#F7F2EA;
padding:20px;
border-radius:10px;
margin-bottom:20px;
}

.profile-card p{
margin:6px 0;
}

/* ORDER TABLE */

.order-table{
width:100%;
border-collapse:collapse;
margin-top:20px;
}

.order-table th,
.order-table td{
padding:12px;
border-bottom:1px solid #eee;
text-align:left;
}

.order-table th{
background:#F7F2EA;
}

/* BUTTON */

.btn{
padding:10px 18px;
background:#B79A6B;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}
.address-list{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-bottom:25px;
}

.address-card{

padding:18px;
background:white;

border-radius:12px;
border:1px solid #eee;

cursor:pointer;
transition:.3s;

position:relative;

}

.address-card:hover{
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transform:translateY(-3px);
}

.address-card.active{
border:2px solid #B79A6B;
background:#F7F2EA;
}

.default-badge{

position:absolute;
top:10px;
right:10px;

background:#B79A6B;
color:white;

padding:4px 8px;
border-radius:6px;
font-size:12px;

}
/* OTP Verify */
.otp-verify-btn{
padding:8px 16px;
font-size:13px;
border:none;
border-radius:6px;

background:#3B2A20;
color:white;

cursor:pointer;

transition:all .2s ease;

/* smaller feel */
display:inline-block;
margin-top:8px;
}

/* hover */
.otp-verify-btn:hover{
background:#000;
transform:translateY(-1px);
}

/* active click */
.otp-verify-btn:active{
transform:scale(.96);
}

/* optional: lighter variant */
.otp-verify-btn.secondary{
background:#ddd;
color:#3B2A20;
}
.order-page{
padding:80px 20px;
}

.order-container{
max-width:900px;
margin:auto;
}

.order-container h1{
margin-bottom:30px;
}

/* CARD */

.order-card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
margin-bottom:25px;
}

/* ADDRESS */

.address-text{
font-size:18px;
line-height:1.6;
color:#4A3A2F;
}

/* ITEM */

.order-item{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
border-bottom:1px solid #eee;
}

.order-left{
display:flex;
gap:15px;
align-items:center;
}

.order-left img{
width:70px;
height:70px;
object-fit:cover;
border-radius:8px;
}

.item-name{
font-size:18px;
font-weight:500;
}

.item-qty{
font-size:14px;
color:#777;
}

.item-price{
font-size:16px;
font-weight:500;
}

/* TOTAL */

.order-total{
display:flex;
justify-content:space-between;
font-size:22px;
font-weight:600;
padding:20px 25px;
background:#F7F2EA;
border-radius:10px;
}
.order-page{
padding:80px 20px;
}

.order-container{
max-width:900px;
margin:auto;
}

.order-container h1{
margin-bottom:30px;
}

/* CARD */

.order-card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
margin-bottom:25px;
}

/* ADDRESS */

.address-text{
font-size:18px;
line-height:1.6;
color:#4A3A2F;
}

/* ITEM */

.order-item{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
border-bottom:1px solid #eee;
}

.order-left{
display:flex;
gap:15px;
align-items:center;
}

.order-left img{
width:70px;
height:70px;
object-fit:cover;
border-radius:8px;
}

.item-name{
font-size:18px;
font-weight:500;
}

.item-qty{
font-size:14px;
color:#777;
}

.item-price{
font-size:16px;
font-weight:500;
}

/* TOTAL */

.order-total{
display:flex;
justify-content:space-between;
font-size:22px;
font-weight:600;
padding:20px 25px;
background:#F7F2EA;
border-radius:10px;
}
.back-orders{
margin-bottom:20px;
}

.back-btn{
display:inline-block;
padding:10px 18px;

background:#F7F2EA;
color:#3B2A20;

border-radius:30px;
text-decoration:none;
font-size:14px;

border:1px solid #ddd;

transition:all .3s ease;
}

/* hover */
.back-btn:hover{
background:#3B2A20;
color:white;
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}
/* CONTACT PAGE */

.contact-page{
padding:100px 20px;
}

.contact-container{
max-width:1100px;
margin:auto;
padding:20px 20px;
display:flex;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:start;
}

/* FORM */

.contact-form{
background:white;
padding:40px;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
flex:1;
}

.contact-form h1{
margin-bottom:10px;
font-size: 32px;
}

.contact-sub{
margin-bottom:25px;
color:#4A3A2F;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:14px;
margin-bottom:15px;

border:1px solid #ddd;
border-radius:8px;

background:#F7F2EA;
font-family:'Inter', sans-serif;
}

.contact-form textarea{
min-height:120px;
resize:none;
}

/* BUTTON */

.contact-btn{
width:100%;
padding:16px;

background:#B79A6B;
color:white;

border:none;
border-radius:40px;

font-size:14px;
letter-spacing:1px;

cursor:pointer;
transition:.3s;
}

.contact-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-social a {
	font-size: 28px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #C6A75E; /* gold hover */
  transform: scale(1.2); 
}
.policy-page {
  background: #F8F5EF;
  padding: 80px 20px;
}

.policy-container {
  max-width: 900px;
  margin: auto;
}

.policy-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #1F3D2B;
  margin-bottom: 10px;
  text-align: center;
}

.policy-date {
  text-align: center;
  color: #777;
  margin-bottom: 40px;
}

.policy-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  line-height: 1.8;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.policy-box h3 {
  color: #1F3D2B;
  margin-top: 25px;
  margin-bottom: 10px;
}

.policy-box p {
  color: #444;
  margin-bottom: 10px;
}

.policy-box ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.policy-box li {
  margin-bottom: 6px;
}
.footer-links {
  margin-top: 20px;
  text-align: center; /* center align */
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #C6A75E; /* gold hover */
}
.p_copy{
	font-size:15px;
	padding:20px;
	color:#ccc;
}
/* MOBILE */
@media (max-width: 768px) {
  .policy-box {
    padding: 20px;
  }

  .policy-container h1 {
    font-size: 26px;
  }
}
/* INFO */
.price-box {
  display: flex;
  justify-content: center;   /* 🔥 centers horizontally */
  align-items: center;
  gap: 12px;
  margin: 20px auto;
  text-align: center;
}

/* OLD PRICE */
.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
}

/* NEW PRICE */
.new-price {
  font-size: 26px;
  font-weight: 600;
  color: #1F3D2B;
}

/* DISCOUNT */
.discount {
  background: #C6A75E;
  color: #000;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
}
.offer-line {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}
.contact-info{
padding:20px;
flex: 1;
}

.contact-info h2{
margin-bottom:20px;
}

.contact-info p{
margin-bottom:15px;
font-size:17px;
}

.contact-note{
margin-top:20px;
font-style:italic;
color:#777;
}
.success-msg{
background:#e8f5e9;
color:#2e7d32;
padding:12px;
border-radius:6px;
margin-bottom:15px;
font-size:14px;
}
div#cart-msg {
    color: red;
    font-size: 12px;
}
.otp-verify{
margin-top:15px;
display:flex;
gap:10px;
align-items:center;
flex-wrap:wrap;
}
/* SUCCESS PAGE */

.success-page{
padding:100px 20px;
text-align:center;
}

.success-container{
max-width:600px;
margin:auto;
}

/* ICON */

.success-icon{
width:80px;
height:80px;
margin:0 auto 20px;

border-radius:50%;
background:#27ae60;

color:white;
font-size:40px;
display:flex;
align-items:center;
justify-content:center;
}

/* TEXT */

.success-container h1{
font-size:34px;
margin-bottom:10px;
}

.success-sub{
color:#777;
margin-bottom:30px;
}

/* BOX */

.success-box{
background:#F7F2EA;
padding:25px;
border-radius:12px;
margin-bottom:30px;
font-size:18px;
}

/* BUTTONS */

.success-actions{
display:flex;
gap:15px;
justify-content:center;
}

.btn{
padding:12px 25px;
border-radius:40px;
text-decoration:none;
background:#B79A6B;
color:white;
transition:.3s;
}

.btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.btn.secondary{
background:#ddd;
color:#3B2A20;
}

.otp-verify input{

padding:12px;

border:1px solid #ddd;
border-radius:6px;

font-size:15px;


background:#F7F2EA;

}
.verify-note{

font-size:14px;
color:#7a5c40;
margin-bottom:15px;

}
#save-address-btn{
background:#B79A6B;
color:white;
padding:12px 20px;
border:none;
border-radius:6px;
cursor:pointer;
transition:.3s;
}

#save-address-btn:disabled{
background:#ccc;
cursor:not-allowed;
opacity:.6;
}

#otp-timer{

font-size:13px;
color:#777;

margin-top:5px;

}

#otp-message{

font-size:14px;
margin-top:8px;

}

.otp-verify-btn{

background:#3B2A20;
color:white;

border:none;

padding:12px 18px;

border-radius:6px;

cursor:pointer;

}

/* MESSAGE */

#otp-message{

width:100%;
margin-top:5px;

font-size:14px;

color:#e74c3c;

font-family:'Inter';

}
.address-form{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
margin-top:20px;
max-width:100%;
}
.modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(6px);

display:none;
justify-content:center;
align-items:center;

z-index:999;
}
.modal-box input,
.modal-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.modal-box{
background:white;
padding:30px;
border-radius:14px;
width:400px;
max-width:90%;

box-shadow:0 20px 60px rgba(0,0,0,0.3);

animation:fadeIn .3s ease;
}

@keyframes fadeIn{
from{transform:scale(.9); opacity:0;}
to{transform:scale(1); opacity:1;}
}

.close-modal{
position:absolute;
top:20px;
right:25px;
background:none;
border:none;
font-size:20px;
cursor:pointer;
}

.modal input,
.modal textarea{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:8px;
background:#F7F2EA;
}
.form-group{
margin-bottom:15px;
}

.error {
  color: red;
  font-size: 12px;
  display: block;
  margin-top: 5px;
}

input.error-border,
textarea.error-border {
  border: 1px solid red;
}

.form-group label{
display:block;
font-size:14px;
margin-bottom:5px;
color:#3B2A20;
}

.form-group input,
.form-group textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
background:#F7F2EA;
font-family:Inter;
}

.phone-field{
display:flex;
align-items:center;
gap:10px;
}

.phone-field span{
background:#eee;
padding:10px;
border-radius:6px;
}

.address-actions{
margin-top:10px;
}

.address-actions button, .verify_otp{
background:#e74c3c;
color:white;
border:none;
padding:6px 10px;
border-radius:6px;
cursor:pointer;
font-size:12px;
}
/* TOTAL */

.order-row{
display:flex;
justify-content:space-between;
margin-top:12px;
font-size:16px;
}

.checkout-total{
font-size:22px;
margin-top:20px;
font-weight:600;
display:flex;
justify-content:space-between;
}

/* PAY BUTTON */

.pay-btn{

margin-top:25px;
width:100%;
padding:16px;

background:#B79A6B;
color:white;

border:none;
border-radius:40px;

font-size:16px;
letter-spacing:1px;

cursor:pointer;
transition:.3s;

}

.pay-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* MOBILE */

@media(max-width:900px){

.checkout-page{
grid-template-columns:1fr;
}

}


/* PACKAGING */

.packaging img{
width:70%;
margin-top:20px;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:40px;
text-decoration:none;
}

.product-gallery{

max-width:500px;
margin:auto;

}

		


.main-image{

width:100%;
height:400px;

overflow:hidden;
border-radius:12px;

background:#fff;

box-shadow:0 10px 30px rgba(0,0,0,0.1);

}

.main-image img{

width:100%;
height:100%;
object-fit:cover;

transition:transform .35s ease, opacity .3s ease;

}

.thumbnail-row{

display:flex;
justify-content:center;
gap:10px;

margin-top:15px;

}

.thumb{

width:70px;
height:70px;

object-fit:cover;

border-radius:6px;

cursor:pointer;

opacity:.6;

border:2px solid transparent;

transition:all .3s ease;

}

.thumb:hover{

opacity:1;

transform:scale(1.08);

}
.thumb:active{
transform:scale(.95);
}
.thumb.active{

opacity:1;

border:2px solid #3B2A20;

}

/* FOOTER */

footer{

background:#2B1E17;

color:#F3E9DA;

padding:80px 40px;

text-align:center;

font-size:14px;

letter-spacing:1px;

}







.cart-link{
position:relative;
font-size:20px;
text-decoration:none;
color:#3B2A20;
}

.cart-badge{

position:absolute;

top:-6px;
right:-10px;

background:#B79A6B;
color:white;

font-size:12px;
font-weight:600;

min-width:18px;
height:18px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

padding:2px 5px;

box-shadow:0 2px 6px rgba(0,0,0,0.2);

transition:transform .2s ease;

}


.cart-bounce{
animation:cartBounce .4s ease;
}

@keyframes cartBounce{

0%{transform:scale(1)}
40%{transform:scale(1.25)}
100%{transform:scale(1)}

}
.story-section{
padding:0px 40px;
max-width:1200px;
margin:auto;
}

.story-block{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
margin-bottom:120px;
}

.story-block.reverse{
direction:rtl;
}

.story-image{
width:100%;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.story-text h2{
font-size:40px;
margin-bottom:15px;
}

.story-text p{
font-size:20px;
line-height:1.5;
}
.product-highlight{
padding:140px 40px;
background:#F8F2E9;
}

.product-layout{
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

.highlight-image{
width:100%;
border-radius:12px;
box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.product-details h1{
font-size:44px;
margin-bottom:15px;
}

.highlight-price{
font-size:28px;
margin-bottom:20px;
}

.highlight-desc{
font-size:20px;
line-height:1.6;
margin-bottom:30px;
}
.shipping-select{

appearance:none;
-webkit-appearance:none;
-moz-appearance:none;

background:#F7F2EA;

border:1px solid #ddd;

padding:8px 35px 8px 12px;

border-radius:6px;

font-family:'Cormorant Garamond', serif;
font-size:15px;

color:#3B2A20;

cursor:pointer;

transition:all .25s ease;

}

/* Hover */

.shipping-select:hover{
border-color:#B79A6B;
}

/* PRODUCT DETAILS */

.product-details{
max-width:1200px;
margin:80px auto;
padding:0 20px;
}

.details-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:40px;
}

.detail-block{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.detail-block h2{
margin-bottom:15px;
font-size:30px;
}

.detail-block p{
line-height:1.7;
font-size:18px;
}

.benefit-list{
list-style:none;
padding-left:0;
}

.benefit-list li{
margin:12px 0;
font-size:18px;
}

/* RECENTLY VIEWED */

.recent-products{
max-width:1200px;
margin:80px auto;
padding:0 20px;
}

.recent-products h2{
text-align:center;
margin-bottom:40px;
}

.recent-grid{
display:flex;
gap:25px;
flex-wrap:wrap;
justify-content:center;
}

.recent-card{
width:200px;
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
text-align:center;
padding-bottom:10px;
}

.recent-card img{
width:100%;
height:180px;
object-fit:cover;
}

.recent-card p{
margin-top:10px;
font-size:16px;
}
/* TRUST SECTION */

.product-trust{
max-width:1200px;
margin:80px auto;
padding:0 20px;
text-align:center;
}

.product-trust h2{
margin-bottom:40px;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.trust-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:all .3s ease;
}

.trust-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.trust-icon{
font-size:34px;
margin-bottom:10px;
}

/* FAQ SECTION */

.product-faq{
max-width:70%;
margin:80px auto;
padding:0 20px;
}

.product-faq h2{
text-align:center;
margin-bottom:40px;
}

.faq-item{
border-bottom:1px solid #eee;
margin-bottom:10px;
}

.faq-question{
width:100%;
background:none;
border:none;
text-align:left;
font-size:20px;
padding:15px 0;
cursor:pointer;
color:#3B2A20;
font-family:'Cormorant Garamond', serif;
}

.faq-answer{
display:none;
padding-bottom:15px;
font-size:17px;
line-height:1.6;
}
/* Focus */

.shipping-select:focus{
outline:none;
border-color:#B79A6B;
box-shadow:0 0 0 2px rgba(183,154,107,0.2);
}

/* Custom arrow */

.cart-summary{
position:relative;
}

.shipping-select{
background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%233B2A20' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6 6 6-6'/%3E%3C/svg%3E");
background-repeat:no-repeat;
background-position:right 10px center;
background-size:12px;
}
.shipping-row{

display:flex;
justify-content:space-between;
align-items:center;

margin:12px 0;

font-size:18px;

}

.order-card-mobile{
display:none;
}
/* =========================
   DASHBOARD MOBILE FIX
========================= */

@media(max-width:768px){
	
.contact-container {
    flex-direction: column;
    padding: 30px 15px;
  }

  .contact-form h1 {
    font-size: 24px;
  }

  .contact-info {
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-btn {
    font-size: 16px;
  }
.product-faq{
	width:98%;
	margin:20px auto;
}
.dashboard{
grid-template-columns:1fr;
gap:20px;
margin:40px auto;
}

/* SIDEBAR → HORIZONTAL MENU */

.dashboard-menu h3{
display:none;
}

.dashboard-menu a{
white-space:nowrap;
padding:10px 15px;
background:#F7F2EA;
border-radius:20px;
font-size:14px;
}

/* CONTENT */

.dashboard-content{
padding:20px;
}

/* PROFILE TEXT */

.profile-card p{
font-size:15px;
}

/* TABLE → SCROLL */

.order-table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

/* ADDRESS GRID */

.address-list{
grid-template-columns:1fr;
}

/* ADDRESS FORM */

.address-form{
padding:20px;
}

/* BUTTONS */

.btn{
padding:10px 14px;
font-size:14px;
}

}

/* =========================
   ORDER MOBILE FIX
========================= */

@media(max-width:768px){

.order-table{
display:none;
}

/* CARD VIEW */

.order-card-mobile{
display:block;
}

.order-mobile-item{
background:white;
padding:15px;
border-radius:10px;
margin-bottom:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.order-mobile-item p{
margin:5px 0;
font-size:14px;
}

.order-mobile-item a{
color:#3B2A20;
font-weight:600;
text-decoration:none;
}

}
@media(max-width:768px){

.dashboard-menu{
display:flex;
flex-wrap:nowrap;
overflow-x:auto;
gap:10px;

padding:15px;
}

/* REMOVE HEADING */

.dashboard-menu h3{
display:none;
}

/* MENU ITEMS */

.dashboard-menu a{
flex:0 0 auto;
padding:10px 15px;

background:#F7F2EA;
border-radius:20px;

font-size:14px;
white-space:nowrap;
}

/* HIDE SCROLLBAR */

.dashboard-menu::-webkit-scrollbar{
display:none;
}

}

/* =========================
   GLOBAL MOBILE FIX
========================= */

@media(max-width:768px){

/* GLOBAL SPACING */

body{
padding:0;
}

.section,
.benefits,
.why-dakshin,
.product-highlight{
padding:60px 20px;
}

/* HEADINGS SCALE DOWN */

h1{
font-size:34px;
line-height:1.2;
}

h2{
font-size:26px;
}

h3{
font-size:18px;
}

p{
font-size:15px;
}

/* =========================
   HEADER FIX
========================= */

.main-header{
padding:15px 20px;
}

.logo img{
height:38px;
}

/* =========================
   HERO SECTION
========================= */

.luxury-intro{
grid-template-columns:1fr;
gap:40px;
padding:60px 20px;
text-align:center;
}

.luxury-text{
max-width:100%;
}

.luxury-text h1{
font-size:36px;
}

.intro-desc{
font-size:16px;
}

.luxury-product img{
width:90%;
max-width:320px;
}

/* =========================
   STORY SECTION
========================= */

.story-block{
grid-template-columns:1fr;
gap:30px;
text-align:center;
}

.story-block.reverse{
direction:ltr;
}

/* =========================
   WHY SECTION
========================= */

.why-container{
grid-template-columns:1fr;
gap:30px;
}

/* =========================
   PRODUCTS
========================= */

.products{
grid-template-columns:1fr 1fr;
gap:20px;
}

.product{
padding-bottom:15px;
}

.product h3{
font-size:18px;
}

.product p{
font-size:14px;
}

/* =========================
   BENEFITS
========================= */

.benefit-grid{
grid-template-columns:1fr;
gap:25px;
}

/* =========================
   PACKAGING
========================= */

.packaging img{
width:100%;
}

/* =========================
   FOOTER
========================= */

footer{
padding:50px 20px;
font-size:13px;
}
.cart{
width:100%;
padding:20px;
border-radius:0;
}

/* HEADER */

.cart-header{
padding-bottom:10px;
border-bottom:1px solid #eee;
}

/* ITEMS */

.cart-item{
gap:10px;
}

.cart-img{
width:50px;
height:50px;
}

/* TEXT */

.cart-info p{
font-size:14px;
}

/* BUTTON */

.checkout{
padding:14px;
font-size:15px;
}
}

@media(max-width:480px){

.products{
grid-template-columns:1fr;
}

.luxury-text h1{
font-size:30px;
}

}
#processing-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248,245,239,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.processing-box {
  text-align: center;
}

.loader {
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top: 4px solid #1F3D2B;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}