/* ==================================
RESET
================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f3ddd0;
color:#111;
overflow-x:hidden;
padding-bottom:90px;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
color:inherit;
}

button{
cursor:pointer;
font-family:'Poppins',sans-serif;
}

/* ==================================
ANNOUNCEMENT BAR
================================== */

.announcement-bar{
background:#000;
color:#fff;
height:42px;
display:flex;
align-items:center;
justify-content:center;
font-size:13px;
font-weight:600;
letter-spacing:.5px;
}

/* ==================================
HEADER
================================== */

.site-header{
background:#f3ddd0;
position:sticky;
top:0;
z-index:999;
border-bottom:1px solid rgba(0,0,0,.08);
}

.header-inner{
height:70px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 15px;
}

.logo{
font-family:'Oswald',sans-serif;
font-size:32px;
font-weight:600;
letter-spacing:2px;
}

.header-icons{
display:flex;
gap:12px;
}

.icon-btn,
.menu-btn{
background:none;
border:none;
font-size:22px;
}

/* ==================================
MOBILE MENU
================================== */

.mobile-menu{
display:none;
background:#fff;
padding:15px;
border-top:1px solid #ddd;
}

.mobile-menu a{
display:block;
padding:14px 0;
font-size:14px;
font-weight:600;
border-bottom:1px solid #eee;
}

/* ==================================
PRODUCT SECTION
================================== */

.product-section{
padding:18px;
}

.main-image-wrapper{
background:#fff;
border-radius:25px;
overflow:hidden;
padding:15px;
}

.main-image-wrapper img{
width:100%;
}

.thumbnail-row{
display:flex;
gap:10px;
margin-top:12px;
overflow:auto;
}

.thumbnail-row::-webkit-scrollbar{
display:none;
}

.thumb{
width:75px;
height:75px;
object-fit:cover;
border-radius:14px;
border:2px solid transparent;
background:#fff;
padding:4px;
cursor:pointer;
}

.thumb.active{
border-color:#000;
}

/* ==================================
RATING
================================== */

.rating-row{
margin-top:20px;
font-size:14px;
font-weight:600;
display:flex;
gap:10px;
align-items:center;
}

/* ==================================
TITLE
================================== */

.product-title{
font-family:'Oswald',sans-serif;
font-size:42px;
line-height:1.05;
font-weight:600;
text-transform:uppercase;
margin-top:15px;
}

/* ==================================
SOLD BADGE
================================== */

.sold-badge{
display:inline-flex;
margin-top:15px;
background:#000;
color:#fff;
padding:8px 16px;
border-radius:50px;
font-size:13px;
font-weight:600;
}

/* ==================================
PRICE
================================== */

.price-box{
display:flex;
align-items:center;
gap:12px;
margin-top:18px;
flex-wrap:wrap;
}

.old-price{
font-size:24px;
text-decoration:line-through;
opacity:.5;
}

.new-price{
font-size:42px;
font-weight:700;
line-height:1;
}

.save-price{
background:#16a34a;
color:#fff;
padding:6px 12px;
border-radius:30px;
font-size:12px;
font-weight:600;
}

/* ==================================
ABOUT PRODUCT
================================== */

.about-product{
margin-top:25px;
}

.about-product h3{
font-family:'Oswald',sans-serif;
font-size:24px;
margin-bottom:10px;
}

.about-product p{
font-size:15px;
line-height:1.8;
}

/* ==================================
REASONS BOX
================================== */

.reasons-box{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
margin-top:25px;
}

.reason-item{
background:#fff;
padding:14px;
border-radius:12px;
font-size:14px;
font-weight:600;
text-align:center;
}

/* ==================================
PACK SELECTOR
================================== */

.pack-section{
margin-top:30px;
}

.pack-section h3{
font-family:'Oswald',sans-serif;
font-size:24px;
margin-bottom:15px;
}

.pack-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
}

.pack-card{
background:#fff;
border:2px solid transparent;
border-radius:14px;
padding:16px;
display:flex;
flex-direction:column;
gap:8px;
cursor:pointer;
}

.pack-card.active{
border-color:#000;
}

.pack-card input{
display:none;
}

.pack-card span{
font-size:14px;
font-weight:600;
}

.pack-card strong{
font-size:22px;
}

/* ==================================
QUANTITY
================================== */

.qty-section{
margin-top:30px;
}

.qty-section h3{
font-family:'Oswald',sans-serif;
font-size:24px;
margin-bottom:15px;
}

.qty-box{
height:60px;
background:#fff;
border-radius:50px;
display:flex;
align-items:center;
justify-content:center;
gap:30px;
}

.qty-box button{
border:none;
background:none;
font-size:26px;
}

.qty-box span{
font-size:20px;
font-weight:700;
}

/* ==================================
BUTTONS
================================== */

.product-buttons{
margin-top:25px;
display:flex;
flex-direction:column;
gap:12px;
}

.add-cart-btn{
height:60px;
border:none;
background:#000;
color:#fff;
font-size:16px;
font-weight:700;
border-radius:50px;
}

.buy-now-btn{
height:60px;
border:none;
background:#fff;
color:#000;
font-size:16px;
font-weight:700;
border-radius:50px;
}




/* ==================================
COMMON SECTION
================================== */

.section-heading{
text-align:center;
margin-bottom:25px;
}

.section-heading h2{
font-family:'Oswald',sans-serif;
font-size:38px;
line-height:1.1;
text-transform:uppercase;
}

/* ==================================
FREQUENTLY BOUGHT TOGETHER
================================== */

.fbt-section{
padding:60px 18px;
}

.fbt-wrapper{
display:flex;
align-items:center;
justify-content:center;
gap:15px;
margin-top:20px;
}

.fbt-product{
background:#fff;
padding:15px;
border-radius:20px;
width:160px;
text-align:center;
}

.fbt-product img{
width:100%;
border-radius:12px;
}

.fbt-product h4{
margin-top:10px;
font-size:15px;
font-weight:600;
}

.fbt-product p{
margin-top:6px;
font-weight:700;
font-size:18px;
}

.plus-icon{
font-size:35px;
font-weight:700;
}

.bundle-price{
text-align:center;
margin-top:25px;
font-size:20px;
}

.bundle-price strong{
font-size:28px;
}

.bundle-btn{
width:100%;
height:60px;
margin-top:20px;
border:none;
background:#000;
color:#fff;
font-size:16px;
font-weight:700;
border-radius:50px;
}

/* ==================================
COUNTDOWN TIMER
================================== */

.offer-timer-section{
padding:20px 18px 50px;
}

.timer-box{
background:#111;
color:#fff;
padding:30px;
border-radius:25px;
text-align:center;
}

.timer-box h3{
font-family:'Oswald',sans-serif;
font-size:34px;
}

.timer-box p{
margin-top:10px;
opacity:.8;
}

.countdown-wrapper{
display:flex;
justify-content:center;
gap:15px;
margin-top:25px;
}

.time-box{
width:90px;
height:90px;
background:#fff;
color:#111;
border-radius:20px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}

.time-box span{
font-size:28px;
font-weight:700;
}

.time-box small{
font-size:11px;
font-weight:600;
margin-top:4px;
}

/* ==================================
BENEFITS
================================== */

.benefits-section{
padding:50px 18px;
}

.benefits-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-top:25px;
}

.benefit-card{
background:#fff;
padding:20px;
border-radius:20px;
text-align:center;
transition:.3s;
}

.benefit-card:hover{
transform:translateY(-5px);
}

.benefit-icon{
font-size:35px;
margin-bottom:10px;
}

.benefit-card h4{
font-size:18px;
margin-bottom:8px;
}

.benefit-card p{
font-size:13px;
line-height:1.6;
}

/* ==================================
INGREDIENTS
================================== */

.ingredients-section{
padding:50px 18px;
}

.ingredients-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-top:25px;
}

.ingredient-card{
background:#fff;
padding:20px;
border-radius:20px;
text-align:center;
}

.ingredient-card img{
width:90px;
height:90px;
object-fit:contain;
margin:auto;
}

.ingredient-card h4{
margin-top:12px;
font-size:18px;
}

.ingredient-card p{
margin-top:8px;
font-size:13px;
line-height:1.7;
}

/* ==================================
RESULTS SECTION
================================== */

.results-section{
padding:60px 18px;
}

.results-slider{
display:flex;
gap:15px;
overflow-x:auto;
scrollbar-width:none;
margin-top:25px;
}

.results-slider::-webkit-scrollbar{
display:none;
}

.result-card{
min-width:280px;
background:#fff;
border-radius:25px;
overflow:hidden;
}

.result-card img{
width:100%;
display:block;
}

/* ==================================
DESKTOP PART 1
================================== */

@media(min-width:992px){

.product-section{
max-width:1400px;
margin:auto;
display:flex;
gap:60px;
padding:50px 30px;
}

.product-gallery{
width:50%;
position:sticky;
top:100px;
height:fit-content;
}

.product-content{
width:50%;
}

.fbt-section,
.offer-timer-section,
.benefits-section,
.ingredients-section,
.results-section{
max-width:1300px;
margin:auto;
}

.benefits-grid{
grid-template-columns:repeat(4,1fr);
}

.ingredients-grid{
grid-template-columns:repeat(4,1fr);
}

}


/* ==================================
WHY GHAR SOAPS
================================== */
/* ==========================
TRUST SECTION
========================== */

.trust-section{
padding:70px 20px;
background:#f6e1d5;
}

.trust-section h2{
font-family:'Oswald';
font-size:42px;
text-align:center;
margin-bottom:35px;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.trust-box{
background:#fff;
padding:25px;
border-radius:20px;
text-align:center;
transition:.3s;
}

.trust-box:hover{
transform:translateY(-5px);
}

.trust-icon{
font-size:42px;
margin-bottom:12px;
}

.trust-box h3{
font-size:20px;
margin-bottom:10px;
}

.trust-box p{
font-size:14px;
line-height:1.7;
}

@media(min-width:992px){

.trust-grid{
grid-template-columns:repeat(4,1fr);
}

}

/* ==================================
PRODUCT TABS
================================== */

.product-tabs{
padding:60px 18px;
}

.tabs-header{
display:flex;
gap:10px;
overflow:auto;
margin-bottom:20px;
}

.tabs-header::-webkit-scrollbar{
display:none;
}

.tab-btn{
padding:12px 25px;
border:none;
background:#fff;
border-radius:50px;
font-weight:600;
white-space:nowrap;
}

.tab-btn.active{
background:#000;
color:#fff;
}

.tab-content{
display:none;
background:#fff;
padding:25px;
border-radius:20px;
}

.tab-content.active{
display:block;
}

.tab-content ul{
padding-left:20px;
}

.tab-content li{
margin-bottom:12px;
line-height:1.8;
}

/* ==================================
REVIEWS
================================== */

.reviews-section{
padding:60px 18px;
}

.review-card{
background:#fff;
padding:25px;
border-radius:20px;
margin-bottom:15px;
}

.stars{
font-size:18px;
margin-bottom:10px;
}

.review-card h4{
font-size:18px;
margin-bottom:8px;
}

.review-card p{
line-height:1.8;
font-size:14px;
}

/* ==================================
FAQ
================================== */

.faq-section{
padding:60px 18px;
}

.faq-item{
margin-bottom:15px;
}

.faq-btn{
width:100%;
background:#fff;
border:none;
padding:20px;
border-radius:15px;
text-align:left;
font-size:15px;
font-weight:600;
}

.faq-content{
display:none;
background:#fff;
margin-top:5px;
padding:20px;
border-radius:15px;
line-height:1.8;
}

/* ==================================
FOOTER
================================== */

.footer{
background:#111;
color:#fff;
padding:60px 20px;
margin-top:60px;
}

.footer-logo{
font-family:'Oswald',sans-serif;
font-size:38px;
text-align:center;
margin-bottom:25px;
}

.footer-links{
display:flex;
flex-direction:column;
gap:12px;
align-items:center;
}

.footer-links a{
color:#fff;
opacity:.85;
}

.footer-links a:hover{
opacity:1;
}

.copyright{
text-align:center;
margin-top:30px;
font-size:13px;
opacity:.7;
}

/* ==================================
STICKY CART
================================== */

.sticky-cart{
position:fixed;
left:0;
bottom:0;
width:100%;
height:80px;
background:#fff;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 15px;
box-shadow:0 -5px 20px rgba(0,0,0,.08);
z-index:9999;
}

.sticky-price{
font-size:30px;
font-weight:700;
}

.sticky-cart-btn{
width:190px;
height:55px;
background:#000;
color:#fff;
border:none;
border-radius:50px;
font-size:15px;
font-weight:700;
}

/* ==================================
SCROLL ANIMATION
================================== */

.benefit-card,
.ingredient-card,
.review-card,
.why-card{
transition:.4s;
}

.benefit-card:hover,
.ingredient-card:hover,
.review-card:hover,
.why-card:hover{
transform:translateY(-5px);
}

/* ==================================
DESKTOP FINAL
================================== */

@media(min-width:992px){

.why-ghar-section,
.product-tabs,
.reviews-section,
.faq-section{
max-width:1300px;
margin:auto;
}

.why-ghar-grid{
grid-template-columns:repeat(4,1fr);
}

.review-card{
max-width:900px;
margin:0 auto 20px;
}

.footer-links{
flex-direction:row;
justify-content:center;
gap:30px;
}

.sticky-cart{
padding:0 50px;
}

.sticky-cart-btn{
width:260px;
}

}

/* ==================================
EXTRA POLISH
================================== */

::selection{
background:#000;
color:#fff;
}

body::-webkit-scrollbar{
width:8px;
}

body::-webkit-scrollbar-thumb{
background:#000;
border-radius:20px;
}

body::-webkit-scrollbar-track{
background:#f3ddd0;
}



