/* ================= ROOT ================= */

/* ================= GOOGLE FONTS ================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ================= ROOT VARIABLES ================= */
:root{

/* PRIMARY BRAND COLORS */
--ghee-gold:#F4B400;
--ghee-gold-dark:#DB9A00;
--ghee-gold-light:#FFF3C4;

/* BACKGROUNDS */
--ghee-cream:#FFF8E1;
--ghee-light:#FFFCF5;
--ghee-white:#FFFFFF;

/* ACCENT COLORS */
--ghee-brown:#5A3E2B;
--ghee-brown-dark:#3E2A1F;

/* TEXT COLORS */
--ghee-text:#2E2E2E;
--ghee-muted:#8A8A8A;

/* UI ELEMENTS */
--ghee-border:#EEE5D8;

/* SHADOWS */
--ghee-shadow:0 10px 25px rgba(0,0,0,0.06);
--ghee-shadow-hover:0 15px 35px rgba(0,0,0,0.10);

/* BORDER RADIUS */
--ghee-radius:12px;

/* FONTS */
 --ghee-font:"Inter", sans-serif;
  --ghee-heading:"Montserrat", sans-serif;

/* GRADIENT */
--ghee-gold-gradient:linear-gradient(135deg,#F4B400,#FFD54F);

}

/* ================= BODY ================= */
body{
  font-family: var(--ghee-font);
  font-size:15px;
  line-height:1.6;
  color: var(--ghee-text);
  background: var(--ghee-light);
}

/* ================= HEADINGS ================= */
h1,h2,h3,h4,h5,h6{
  font-family: var(--ghee-heading);
  font-weight:600;
  letter-spacing:0.5px;
}

/* ================= MENU ================= */
.ghee-menu a,
.ghee-menu button{
  font-family: var(--ghee-heading);
  font-weight:700;
  font-size:16px;
  letter-spacing:0.8px;
  text-transform:uppercase;
}

/* PREMIUM HOVER */
.ghee-menu a:hover{
  letter-spacing:1px;
  color: var(--ghee-gold);
}

/* ================= MOBILE MENU ================= */
.mobile-nav .ghee-menu a,
.mobile-nav .ghee-menu button{
  font-family: var(--ghee-font);
  font-size:16px;
  font-weight:500;
  letter-spacing:0.3px;
}
/* ================= HEADER ================= */

/* ================= HEADER ================= */
.ghee-header{
  background: rgba(255,248,225,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ghee-border);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
/* ===== FIX BOOTSTRAP OFFCANVAS ===== */
.offcanvas{
  z-index: 20000 !important;
}

.offcanvas-backdrop{
  z-index: 19999 !important;
}

/* OPTIONAL: header thoda kam kar do */
.ghee-header{
  z-index: 999;
}

.offcanvas{
  border-radius:20px 0 0 20px;
  box-shadow:-10px 0 40px rgba(0,0,0,0.25);
}

.offcanvas-header{
  background:linear-gradient(135deg,#5A3E2B,#3E2A1F);
  color:#fff;
}

.offcanvas-body{
  background:#FFF8E1;
}
/* OFFCANVAS CLOSE BUTTON WHITE */
.offcanvas .btn-close{
  filter: invert(1);
  opacity: 1;
}
/* ================= TOP BAR ================= */
.ghee-topbar{
  background: linear-gradient(90deg,#3E2A1F,#5A3E2B);
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
}

.ghee-topbar .container-xl{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.ghee-top-center{
  text-align:center;
  flex:1;
  color:#FFD54F;
  font-weight:500;
}

/* ================= MAIN HEADER ================= */
.ghee-main-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
  gap: 15px;
  flex-wrap: nowrap;
}

/* ================= LOGO ================= */
.ghee-logo img{
  height:55px;
  object-fit:contain;
  transition:0.3s;
  flex: 0 0 auto;
}
.ghee-logo img:hover{
  transform:scale(1.05);
}

/* ================= NAV ================= */
.ghee-nav{
  flex: 1;
  display:flex;
  justify-content:center;
  min-width: 0;
}

.ghee-menu{
  display:flex;
  align-items:center;
  gap:26px;
  margin:0;
  padding:0;
}

.ghee-menu li{
  list-style:none;
}

/* IMPORTANT FIX */
.dropdown{
  position:relative;
}

.ghee-menu a{
  font-family: var(--ghee-heading);
  position:relative;
  color: var(--ghee-text);
  text-decoration:none;
  transition:0.3s;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.5px;
  white-space: nowrap;  
}

.ghee-menu a:hover{
  color: var(--ghee-gold);
  text-shadow:0 0 8px rgba(244,180,0,0.3);
}

/* underline */
.ghee-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background: var(--ghee-gold);
  transition:0.3s;
}

.ghee-menu a:hover::after{
  width:100%;
}

/* ================= PREMIUM DROPDOWN ================= */
.ghee-dropdown{
  position:absolute;
  top:120%;
  left:0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  min-width:270px;
  border-radius:16px;
  box-shadow:0 25px 50px rgba(0,0,0,0.15);

  opacity:0;
  visibility:hidden;
  transform:translateY(20px) scale(0.98);
  transition: all 0.35s ease;

  padding:10px 0;
  border:1px solid rgba(0,0,0,0.05);
  z-index:999;
}

/* SHOW */
.dropdown:hover .ghee-dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}

/* ITEMS */
.ghee-dropdown a{
  display:flex;
  align-items:center;
  padding:12px 20px;
  font-size:14px;
  color: var(--ghee-text);
  transition:0.3s;
  position:relative;
}

/* HOVER */
.ghee-dropdown a:hover{
  background: linear-gradient(90deg,#FFF8E1,#FFF3C4);
  padding-left:28px;
  color: var(--ghee-brown);
}

/* GOLD LINE */
.ghee-dropdown a::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:4px;
  background: linear-gradient(#F4B400,#FFD54F);
  transform:scaleY(0);
  transition:0.3s;
}

.ghee-dropdown a:hover::before{
  transform:scaleY(1);
}

/* ================= RIGHT SECTION ================= */
.ghee-icons{
  display:flex;
  align-items:center;
  gap:15px;
}

/* ================= PREMIUM SEARCH ================= */
.ghee-search-bar{
  display:flex;
  align-items:center;
  background: linear-gradient(135deg,#fff,#FFF8E1);
  border-radius:50px;
  overflow:hidden;
  padding:3px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  border:1px solid rgba(0,0,0,0.06);
  transition:0.3s;
}

.ghee-search-bar:focus-within{
  box-shadow:0 10px 30px rgba(244,180,0,0.35);
  transform:scale(1.02);
}

.ghee-search-bar input{
  border:none;
  padding:10px 16px;
  width:200px;
  outline:none;
  background:transparent;
  font-size:14px;
}

.ghee-search-bar button{
  background: linear-gradient(135deg,#F4B400,#FFD54F);
  border:none;
  padding:10px 16px;
  color:#fff;
  border-radius:50px;
  transition:0.3s;
}

.ghee-search-bar button:hover{
  transform:scale(1.1);
}

/* ================= ICONS ================= */
/* ICON WRAPPER */
.ghee-icon-box{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.ghee-header,
.ghee-main-header,
.ghee-icons{
  overflow:visible;
}
/* ICON */
.ghee-icon{
  font-size:20px;
  color: var(--ghee-text);
  transition:0.3s;
}

.ghee-icon:hover{
  color: var(--ghee-gold);
  transform:translateY(-3px) scale(1.1);
}

/* BADGE FIXED POSITION */
.ghee-badge{
   position:absolute;
  top:-4px;   /* pehle -6 tha */
  right:-5px; /* pehle -8 tha */
  z-index:9999;
  background: var(--ghee-gold);
  color:#fff;
  font-size:10px;
  border-radius:50%;
  padding:2px 6px;
  line-height:1;
  font-weight:600;
}
/* ================= MOBILE ================= */
#mobileToggle{
  font-size:28px;
  color: var(--ghee-brown);
  cursor:pointer;
}

/* MOBILE NAV */
.mobile-nav{
  display:none;
  background: linear-gradient(180deg,#ffffff,#FFF8E1);
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
  border-radius:0 0 16px 16px;
  overflow:hidden;
  width:100%;
}

.mobile-nav.active{
  display:block;
}

/* MENU */
.mobile-nav .ghee-menu{
  flex-direction:column !important;
  align-items:flex-start;
  width:100%;
  padding:16px;
  gap:10px;
}

/* ITEMS */
.mobile-nav .ghee-menu li{
  width:100%;
}

.mobile-nav .ghee-menu a{
  display:block;
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:none;
  background:#fff;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
  transition:0.3s;
}

/* HOVER */
.mobile-nav .ghee-menu a:hover{
  background: linear-gradient(90deg,#FFF8E1,#FFF3C4);
  color: var(--ghee-brown);
  transform:translateX(4px);
}

/* DROPDOWN BUTTON */
.mobile-nav .dropdown > button{
  background:#fff;
  border-radius:10px;
  padding:12px 14px;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

/* DROPDOWN */
.mobile-nav .dropdown-menu{
  display:none;
  background:#fff;
  margin-top:6px;
  border-radius:10px;
  padding:8px;
}

.mobile-nav .dropdown.active .dropdown-menu{
  display:block;
}

.mobile-nav .dropdown-menu a{
  background:#FFF8E1;
  border-radius:8px;
  margin-bottom:5px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){

  .ghee-nav{
    display:none;
  }

  .ghee-search-bar{
    display:none;
  }

}

@media(max-width:768px){

  .ghee-topbar .container-xl{
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .ghee-logo img{
    height:45px;
  }

  .ghee-icons{
    gap:12px;
  }

}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


.whatsapp-button{

position:fixed;

bottom:25px;
right:25px;

width:60px;
height:60px;

background:#25D366;

color:white;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:30px;

box-shadow:0 6px 15px rgba(0,0,0,0.3);

z-index:999;

text-decoration:none;

animation:whatsapp-pulse 2s infinite;

}

.whatsapp-button:hover{

transform:scale(1.1);

background:#20b858;

}

/* Tooltip */

.whatsapp-tooltip{

position:absolute;

right:70px;

background:black;

color:white;

padding:6px 12px;

border-radius:6px;

font-size:13px;

opacity:0;

white-space:nowrap;

transition:0.3s;

}

.whatsapp-button:hover .whatsapp-tooltip{

opacity:1;

}

/* Pulse animation */

@keyframes whatsapp-pulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.7);
}

70%{
box-shadow:0 0 0 15px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}
/*--------------------------------------------------------------
# Certificate Section
--------------------------------------------------------------*/
.certification-section {
  background: #ffffff;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.certification-track {
  display: flex;
  gap: 60px;
  animation: scrollCert 10s linear infinite;
  align-items: center;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 16px;
  white-space: nowrap;
}

.cert-item img {
  height: 42px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: 0.3s ease;
}

.cert-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollCert {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media(max-width: 768px) {
  .certification-track {
    animation-duration: 2s; /* Mobile speed = 10 seconds */
  }

  .cert-item {
    min-width: 180px;
    font-size: 14px;
  }

  .cert-item img {
    height: 34px;
  }
}




/*--------------------------------------------------------------
# Category Section
--------------------------------------------------------------*/
/* -------------------- */


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-handloom {
  background: linear-gradient(135deg, #FAF7F2, #ffffff);
}

/* IMAGE AREA */
.about-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image-wrap:hover .about-main-img {
  transform: scale(1.08);
}

/* FLOATING FABRIC BADGE */
.fabric-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(198,90,58,0.95);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* TEXT SIDE */
.about-label {
  display: inline-block;
  color: #C65A3A;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.about-title {
  font-size: 46px;
  font-weight: 900;
  color: #2E2E2E;
  line-height: 1.15;
}

.about-title span {
  color: #C65A3A;
}

/* DESCRIPTION */
.about-description {
  font-size: 17px;
  font-weight: 600;
  color: #444;
  line-height: 1.85;
  margin-top: 16px;
  max-width: 560px;
}

/* HIGHLIGHT LIST */
.about-highlights {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.about-highlights li {
  font-size: 15px;
  font-weight: 700;
  color: #2E2E2E;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.about-highlights li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #CFAE70;
  font-size: 16px;
}

/* BUTTON */
.about-btn-premium {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #C65A3A, #B24A2E);
  color: white;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(198,90,58,0.35);
  transition: 0.3s ease;
}

.about-btn-premium:hover {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, #B24A2E, #C65A3A);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .about-title {
    font-size: 34px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-image-wrap {
    border-radius: 16px;
  }

  .fabric-badge {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/*--------------------------------------------------------------
# Prefooter Section
--------------------------------------------------------------*/
/* ================================
LUXURY SOFA HOME SECTION
================================ */

.luxury-sofa-section{
background:#0b0b0b;
padding:80px 20px;
position:relative;
overflow:hidden;
color:#fff;
font-family:var(--sofa-font);
}

/* CONTAINER */

.luxury-sofa-section .container{
max-width:1200px;
margin:auto;
}

/* LAYOUT */

.luxury-sofa-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
gap:70px;
}

/* ================================
TEXT AREA
================================ */

.luxury-sofa-text{
flex:1;
max-width:520px;
}

/* BADGE */

/* .sofa-badge{
display:inline-block;
background:rgba(255,106,0,0.12);
border:1px solid rgba(255,106,0,0.35);
color:#ff6a00;
padding:7px 18px;
border-radius:40px;
font-size:12px;
letter-spacing:1px;
font-weight:600;
margin-bottom:18px;
} */

/* HEADING */

.luxury-heading{
font-size:46px;
font-weight:800;
line-height:1.2;
margin-bottom:18px;
}

.luxury-heading span{
background:linear-gradient(90deg,#ff6a00,#ffa046);
-webkit-background-clip:text;
color:transparent;
}

/* DESCRIPTION */

.luxury-desc{
color:#bdbdbd;
font-size:16px;
line-height:1.7;
margin-bottom:34px;
}

/* ================================
BUTTON
================================ */

.luxury-btn{
display:inline-flex;
align-items:center;
gap:12px;
padding:15px 36px;
border-radius:50px;
background:linear-gradient(135deg,#ff6a00,#ff8a2b);
color:#fff;
font-weight:600;
text-decoration:none;
font-size:15px;
position:relative;
overflow:hidden;
transition:.35s;
box-shadow:0 10px 30px rgba(255,106,0,0.35);
}

/* BUTTON ICON */

.luxury-btn i{
transition:.35s;
}

/* BUTTON HOVER */

.luxury-btn:hover{
transform:translateY(-4px);
box-shadow:0 18px 40px rgba(255,106,0,0.5);
}

.luxury-btn:hover i{
transform:translateX(6px);
}

/* LIGHT SWEEP */

.luxury-btn::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.35),
transparent
);
transition:.6s;
}

.luxury-btn:hover::before{
left:100%;
}

/* ================================
IMAGE
================================ */

.luxury-sofa-image{
flex:1;
text-align:center;
position:relative;
}

.luxury-sofa-image img{
max-width:100%;
border-radius:22px;
transition:.5s;
box-shadow:0 20px 60px rgba(0,0,0,0.6);
}

/* IMAGE HOVER */

.luxury-sofa-image:hover img{
transform:scale(1.05);
}

/* ================================
ORANGE GLOW BACKGROUND
================================ */

.sofa-glow{
position:absolute;
border-radius:50%;
filter:blur(100px);
opacity:.35;
pointer-events:none;
}

.glow1{
width:380px;
height:380px;
background:#ff6a00;
top:-150px;
right:-150px;
}

.glow2{
width:420px;
height:420px;
background:#ff8a2b;
bottom:-180px;
left:-160px;
}

/* ================================
RESPONSIVE
================================ */

@media(max-width:992px){

.luxury-sofa-wrapper{
flex-direction:column;
text-align:center;
gap:50px;
}

.luxury-sofa-text{
max-width:100%;
}

.luxury-heading{
font-size:34px;
}

}

/* MOBILE */

@media(max-width:600px){

.luxury-sofa-section{
padding:80px 20px;
}

.luxury-heading{
font-size:28px;
}

.luxury-desc{
font-size:14px;
}

.luxury-btn{
padding:13px 28px;
font-size:14px;
}

.luxury-sofa-image img{
border-radius:18px;
}

}

/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/
/* ================= SECTION ================= */

.saree-featured-section{
padding:50px 0;
background:linear-gradient(180deg,#fff,#fff6ed);
}

/* ================= HEADER ================= */

.saree-section-top{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:30px;
flex-wrap:wrap;
}

.saree-section-header{
text-align:left;
}

.saree-tag{
color:#b08d57;
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
font-weight:500;
}

.saree-section-header h2{
font-family:var(--saree-heading);
font-size:34px;
color:#2e1f1f;
margin:6px 0;
font-weight:600;
}

/* VIEW ALL */

.saree-view-top a{
font-size:20px;
color:#7a1f3d;
text-decoration:none;
font-weight:600;
position:relative;
transition:.3s;
}

/* underline animation */

.saree-view-top a::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0;
height:2px;
background:linear-gradient(90deg,#D4AF37,transparent);
transition:.4s;
}

.saree-view-top a:hover::after{
width:100%;
}

.saree-view-top a:hover{
color:#D4AF37;
}

/* ================= GRID ================= */

.saree-product-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:28px;
margin-top:30px;
}

/* ================= CARD ================= */

.saree-product-card{
background:#fff;
border-radius:20px;
overflow:hidden;
position:relative;
transition:.4s;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
border:1px solid rgba(0,0,0,0.04);
}

.saree-product-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* ================= IMAGE ================= */

.saree-product-image{
position:relative;
height:340px;
overflow:hidden;
background:#f8f5f2;
}

.saree-product-image img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .7s ease;
}

.saree-product-card:hover img{
transform:scale(1.08);
}

/* subtle overlay */

.saree-product-image a{
position:relative;
z-index:2;
display:block;
height:100%;
}

.saree-product-image::after{
pointer-events:none;
}

.saree-product-card:hover .saree-product-image::after{
opacity:1;
}

/* ================= BADGE ================= */

.saree-badge{
position:absolute;
top:14px;
left:14px;
background:#D4AF37;
color:#000;
padding:6px 12px;
font-size:11px;
border-radius:30px;
font-weight:600;
letter-spacing:.5px;
box-shadow:0 3px 10px rgba(0,0,0,0.2);
}

/* ================= CONTENT ================= */

.saree-product-content{
padding:18px 16px;
text-align:center;
}

.saree-product-content h3{
font-size:15px;
color:#2e2e2e;
margin-bottom:8px;
line-height:1.4;
height:42px;
overflow:hidden;
}

/* PRICE */

.saree-price{
color:#7a1f3d;
font-weight:600;
font-size:17px;
margin-bottom:12px;
}

/* ================= BUTTON ================= */

.saree-btn{
background:var(--saree-maroon);
color:#fff;
border:none;
padding:10px 20px;
border-radius:40px;
font-size:13px;
cursor:pointer;
transition:.3s;
letter-spacing:.3px;
}

.saree-btn:hover{
background:var(--saree-gold);
color:var(--saree-maroon);
border:1px solid var(--saree-maroon);
transform:translateY(-2px);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px){

.saree-product-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.saree-product-image{
height:280px;
}

}

/* MOBILE */
@media(max-width:576px){

.saree-section-top{
flex-direction:column;
align-items:flex-start;
gap:8px;
}

.saree-section-header h2{
font-size:24px;
}

.saree-view-top{
align-self:flex-end;
}

/* clean mobile grid */

.saree-product-grid{
grid-template-columns:repeat(2,1fr);
gap:14px;
}

.saree-product-card{
border-radius:14px;
}

.saree-product-image{
height:200px;
}

.saree-product-content{
padding:12px;
}

.saree-product-content h3{
font-size:13px;
height:36px;
}

.saree-price{
font-size:14px;
}

.saree-btn{
padding:8px 12px;
font-size:12px;
}

}


/*---------------------------------------
Bridal Collection
-----------------------------------------*/

/* ================= SECTION ================= */

.bridal-featured-section{
padding:50px 0;
background:linear-gradient(180deg,#fff,#fff1f4);
}

/* ================= HEADER ================= */

.bridal-section-top{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:30px;
flex-wrap:wrap;
}

.bridal-section-header{
text-align:left;
}

.bridal-tag{
color:#b76e79;
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
font-weight:500;
}

.bridal-section-header h2{
font-family:var(--saree-heading);
font-size:34px;
color:#3a1f2b;
margin:6px 0;
font-weight:600;
}

/* VIEW ALL */

.bridal-view-top a{
font-size:20px;
color:#8b1e3f;
text-decoration:none;
font-weight:600;
position:relative;
transition:.3s;
}

/* underline animation */

.bridal-view-top a::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0;
height:2px;
background:linear-gradient(90deg,#D4AF37,transparent);
transition:.4s;
}

.bridal-view-top a:hover::after{
width:100%;
}

.bridal-view-top a:hover{
color:#D4AF37;
}

/* ================= GRID ================= */

.bridal-product-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:28px;
margin-top:30px;
}

/* ================= CARD ================= */

.bridal-product-card{
background:#fff;
border-radius:20px;
overflow:hidden;
position:relative;
transition:.4s;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
border:1px solid rgba(0,0,0,0.04);
}

.bridal-product-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* ================= IMAGE ================= */

.bridal-product-image{
position:relative;
height:340px;
overflow:hidden;
background:#fdf7f8;
}

.bridal-product-image img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .7s ease;
}

.bridal-product-card:hover img{
transform:scale(1.08);
}

/* overlay optional */

.bridal-product-image a{
position:relative;
z-index:2;
display:block;
height:100%;
}

/* ================= BADGE ================= */

.bridal-badge{
position:absolute;
top:14px;
left:14px;
background:#D4AF37;
color:#000;
padding:6px 12px;
font-size:11px;
border-radius:30px;
font-weight:600;
letter-spacing:.5px;
box-shadow:0 3px 10px rgba(0,0,0,0.2);
}

/* ================= CONTENT ================= */

.bridal-product-content{
padding:18px 16px;
text-align:center;
}

.bridal-product-content h3{
font-size:15px;
color:#2e2e2e;
margin-bottom:8px;
line-height:1.4;
height:42px;
overflow:hidden;
}

/* PRICE */

.bridal-price{
color:#8b1e3f;
font-weight:600;
font-size:17px;
margin-bottom:12px;
}

/* ================= BUTTON ================= */

.bridal-btn{
background:var(--saree-maroon);
color:#fff;
border:none;
padding:10px 20px;
border-radius:40px;
font-size:13px;
cursor:pointer;
transition:.3s;
letter-spacing:.3px;
}

.bridal-btn:hover{
background:#D4AF37;
color:#8b1e3f;
border:1px solid #8b1e3f;
transform:translateY(-2px);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px){

.bridal-product-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.bridal-product-image{
height:280px;
}

}

/* MOBILE */
@media(max-width:576px){

.bridal-section-top{
flex-direction:column;
align-items:flex-start;
gap:8px;
}

.bridal-section-header h2{
font-size:24px;
}

.bridal-view-top{
align-self:flex-end;
}

.bridal-product-grid{
grid-template-columns:repeat(2,1fr);
gap:14px;
}

.bridal-product-card{
border-radius:14px;
}

.bridal-product-image{
height:200px;
}

.bridal-product-content{
padding:12px;
}

.bridal-product-content h3{
font-size:13px;
height:36px;
}

.bridal-price{
font-size:14px;
}

.bridal-btn{
padding:8px 12px;
font-size:12px;
}

}


/*--------------------------
Banarasi Section
----------------------------*/

.banarasi-featured-section{
padding:50px 0;
background:linear-gradient(180deg,#fff,#fff6ed);
}

/* ================= HEADER ================= */

.banarasi-section-top{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:30px;
flex-wrap:wrap;
}

.banarasi-section-header{
text-align:left;
}

.banarasi-tag{
color:#b08d57;
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
font-weight:500;
}

.banarasi-section-header h2{
font-family:var(--saree-heading);
font-size:34px;
color:#2e1f1f;
margin:6px 0;
font-weight:600;
}

/* VIEW ALL */

.banarasi-view-top a{
font-size:20px;
color:#7a1f3d;
text-decoration:none;
font-weight:600;
position:relative;
transition:.3s;
}

/* underline animation */

.banarasi-view-top a::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0;
height:2px;
background:linear-gradient(90deg,#D4AF37,transparent);
transition:.4s;
}

.banarasi-view-top a:hover::after{
width:100%;
}

.banarasi-view-top a:hover{
color:#D4AF37;
}

/* ================= GRID ================= */

.banarasi-product-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:28px;
margin-top:30px;
}

/* ================= CARD ================= */

.banarasi-product-card{
background:#fff;
border-radius:20px;
overflow:hidden;
position:relative;
transition:.4s;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
border:1px solid rgba(0,0,0,0.04);
}

.banarasi-product-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* ================= IMAGE ================= */

.banarasi-product-image{
position:relative;
height:340px;
overflow:hidden;
background:#f8f5f2;
}

.banarasi-product-image img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .7s ease;
}

.banarasi-product-card:hover img{
transform:scale(1.08);
}

.banarasi-product-image a{
position:relative;
z-index:2;
display:block;
height:100%;
}

.banarasi-product-image::after{
pointer-events:none;
}

.banarasi-product-card:hover .banarasi-product-image::after{
opacity:1;
}

/* ================= BADGE ================= */

.banarasi-badge{
position:absolute;
top:14px;
left:14px;
background:#D4AF37;
color:#000;
padding:6px 12px;
font-size:11px;
border-radius:30px;
font-weight:600;
letter-spacing:.5px;
box-shadow:0 3px 10px rgba(0,0,0,0.2);
}

/* ================= CONTENT ================= */

.banarasi-product-content{
padding:18px 16px;
text-align:center;
}

.banarasi-product-content h3{
font-size:15px;
color:#2e2e2e;
margin-bottom:8px;
line-height:1.4;
height:42px;
overflow:hidden;
}

/* PRICE */

.banarasi-price{
color:#7a1f3d;
font-weight:600;
font-size:17px;
margin-bottom:12px;
}

/* ================= BUTTON ================= */

.banarasi-btn{
background:var(--saree-maroon);
color:#fff;
border:none;
padding:10px 20px;
border-radius:40px;
font-size:13px;
cursor:pointer;
transition:.3s;
letter-spacing:.3px;
}

.banarasi-btn:hover{
background:var(--saree-gold);
color:var(--saree-maroon);
border:1px solid var(--saree-maroon);
transform:translateY(-2px);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px){

.banarasi-product-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.banarasi-product-image{
height:280px;
}

}

/* MOBILE */
@media(max-width:576px){

.banarasi-section-top{
flex-direction:column;
align-items:flex-start;
gap:8px;
}

.banarasi-section-header h2{
font-size:24px;
}

.banarasi-view-top{
align-self:flex-end;
}

.banarasi-product-grid{
grid-template-columns:repeat(2,1fr);
gap:14px;
}

.banarasi-product-card{
border-radius:14px;
}

.banarasi-product-image{
height:200px;
}

.banarasi-product-content{
padding:12px;
}

.banarasi-product-content h3{
font-size:13px;
height:36px;
}

.banarasi-price{
font-size:14px;
}

.banarasi-btn{
padding:8px 12px;
font-size:12px;
}

}


/*-----------------------------
Best Seller Section
------------------------------*/
.bestseller-page{
padding:50px 0;
background:#fff;
}

/* HEADER */
.bestseller-header{
text-align:center;
margin-bottom:50px;
}

.bestseller-header h1{
font-size:38px;
font-weight:700;
margin-bottom:10px;

background:linear-gradient(90deg,#5A3E2B,#F4B400);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.bestseller-header p{
color:var(--ghee-muted);
font-size:15px;
}

/* GRID */
.bestseller-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* CARD */
.bestseller-card{
background:var(--ghee-white);
border-radius:var(--ghee-radius);
overflow:hidden;
transition:.4s;
box-shadow:var(--ghee-shadow);
border:1px solid var(--ghee-border);
position:relative;
}

.bestseller-card:hover{
transform:translateY(-10px);
box-shadow:var(--ghee-shadow-hover);
}

/* IMAGE */
.bestseller-image{
position:relative;
height:300px;
overflow:hidden;
background:#fff;
}

.bestseller-image img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}
.bestseller-card:hover{
border:1px solid var(--ghee-gold);
}
.bestseller-card:hover img{
transform:scale(1.08);
}

/* BADGE */
.bestseller-badge{
position:absolute;
top:15px;
left:15px;
background:var(--ghee-gold-gradient);
color:#000;
padding:6px 14px;
font-size:11px;
border-radius:20px;
font-weight:700;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

/* CONTENT */
.bestseller-content{
padding:20px;
text-align:center;
}

.bestseller-content h3{
font-size:16px;
margin-bottom:4px;
color:var(--ghee-brown);
min-height:42px;
}

/* PRICE */
.bestseller-price{
color:var(--ghee-brown-dark);
font-size:20px;
font-weight:700;
margin-bottom:15px;
}

/* BUTTON */
.bestseller-btn{
background:var(--ghee-gold-gradient);
color:#000;
border:none;
padding:10px 20px;
border-radius:30px;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.bestseller-btn:hover{
background:var(--ghee-brown-dark);
color:#fff;
}

/* RESPONSIVE */
@media(max-width:992px){
.bestseller-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:576px){

  /* TEXT SIZE REDUCE */
.bestseller-content h3{
font-size:13px;
line-height:1.3;
}

.bestseller-price{
font-size:16px;
}

/* BUTTON SIZE REDUCE */
.bestseller-btn{
font-size:12px;
padding:8px 14px;
border-radius:25px;
}

/* HEADER ALSO ADJUST */
.bestseller-header h1{
font-size:24px;
}

.bestseller-header p{
font-size:13px;
}
.bestseller-grid{
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.bestseller-image{
height:200px;
}
}
/*------------------------------------
Slider Section
--------------------------------------*/
/* ================= SECTION ================= */
/* ================= SECTION ================= */
.ghee-trust-slider{
  background: linear-gradient(135deg,#FFF8E1,#FFFCF5);
  padding: 20px 0;
  overflow:hidden;
  position:relative;
}

/* glow */
.ghee-trust-slider::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background: radial-gradient(circle, rgba(244,180,0,0.25), transparent);
  top:-80px;
  left:-80px;
}

/* ================= WRAPPER ================= */
.ghee-slider-wrapper{
  display:flex;
  gap:30px;
  width:max-content;
  animation: gheeSlide 18s linear infinite;
  will-change: transform;
}

/* ================= CARD ================= */
.ghee-slide{
  min-width:300px;
  background: linear-gradient(145deg,#ffffff,#FFF8E1);
  border-radius:18px;
  padding:26px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  border:1px solid rgba(244,180,0,0.15);
  transition: all 0.4s ease;
  position:relative;
  overflow:hidden;
}

/* shine */
.ghee-slide::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background: linear-gradient(120deg,transparent,rgba(255,255,255,0.6),transparent);
  transition:0.6s;
}

.ghee-slide:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.ghee-slide:hover::before{
  left:100%;
}

/* ICON */
.ghee-icon{
  font-size:26px;
  margin-bottom:10px;
}

/* TITLE */
.ghee-slide h3{
  font-size:18px;
  color:#5A3E2B;
  font-weight:700;
  margin-bottom:8px;
  position:relative;
}

.ghee-slide h3::after{
  content:"";
  width:40px;
  height:3px;
  background: linear-gradient(90deg,#F4B400,#FFD54F);
  position:absolute;
  left:0;
  bottom:-6px;
}

/* TEXT */
.ghee-slide p{
  font-size:14px;
  color:#666;
  line-height:1.6;
  margin-top:10px;
}

/* ================= ANIMATION ================= */
@keyframes gheeSlide{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* PAUSE ON HOVER */
.ghee-trust-slider:hover .ghee-slider-wrapper{
  animation-play-state: paused;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .ghee-slider-wrapper{
    animation: gheeSlide 15s linear infinite; /* faster */
    gap:16px;
  }

  .ghee-slide{
    min-width:220px;
    padding:18px;
  }

  .ghee-slide h3{
    font-size:16px;
  }

  .ghee-slide p{
    font-size:13px;
  }

}


/*-----------------------------------------------
ghee Making Section
-------------------------------------------------*/
/* ================= SECTION ================= */
/* ================= HEADER ================= */
/* ================= SECTION ================= */
.ghee-process-horizontal{
padding:50px 0;
background:linear-gradient(180deg,#FFF8E1,#FFFCF5);
position:relative;
overflow:hidden;
}

/* ================= HEADER ================= */
.ghee-process-header{
text-align:center;
margin-bottom:60px;
}

.ghee-process-header h2{
font-size:40px;
font-weight:700;
font-family: var(--ghee-heading);
background:linear-gradient(90deg,#5A3E2B,#F4B400);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
display:inline-block;
margin-bottom:10px;
}

.ghee-process-header h2::after{
content:"";
display:block;
width:70px;
height:3px;
background:linear-gradient(90deg,#F4B400,#FFD54F);
margin:12px auto 0;
border-radius:10px;
}

.ghee-process-header p{
font-size:15px;
color:#8A8A8A;
max-width:520px;
margin:10px auto 0;
line-height:1.7;
}

/* ================= FLEX ================= */
.ghee-process-flex{
display:flex;
align-items:center;
gap:60px;
}

/* ================= LEFT IMAGE ================= */
.ghee-process-left{
flex:1;
position:relative;
display:flex;
justify-content:center;
}

/* IMAGE */
.ghee-process-left img{
width:100%;
max-width:540px;
border-radius:25px;
box-shadow:0 30px 80px rgba(0,0,0,0.25);
transition:.5s;
z-index:2;
background:transparent; /* 👈 transparency */
}

/* HOVER EFFECT */
.ghee-process-left:hover img{
transform:scale(1.05);
}

/* GOLD GLOW BACKGROUND */
.ghee-process-left::before{
content:"";
position:absolute;
top:30px;
left:30px;
width:100%;
height:100%;
background:linear-gradient(135deg,#FFD54F,#F4B400);
border-radius:25px;
z-index:1;
opacity:0.25;
filter:blur(25px);
}

/* ================= RIGHT STEPS ================= */
.ghee-process-steps{
flex:1;
display:flex;
flex-direction:column;
gap:20px;
}

/* ================= STEP BOX ================= */
.ghee-step-box{
display:flex;
align-items:center;
gap:16px;
background:#fff;
padding:14px 18px;
border-radius:16px;
border:1.5px solid #5A3E2B;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
transition:.35s;
position:relative;
overflow:hidden;
}

/* HOVER */
.ghee-step-box:hover{
transform:translateX(8px);
border-color:#F4B400;
box-shadow:0 18px 45px rgba(244,180,0,0.25);
}

/* SHINE EFFECT */
.ghee-step-box::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
transition:.6s;
}

.ghee-step-box:hover::before{
left:100%;
}

/* STEP NUMBER */
.step-number{
min-width:38px;
height:38px;
border-radius:50%;
background:var(--ghee-gold-gradient);
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:16px;
box-shadow:0 5px 15px rgba(244,180,0,0.4);
}

/* IMAGE */
.step-image{
width:65px;
height:65px;
border-radius:50%;
overflow:hidden;
border:2px solid var(--ghee-gold);
flex-shrink:0;
transition:.3s;
}

.step-image img{
width:100%;
height:100%;
object-fit:cover;
}

/* IMAGE HOVER */
.ghee-step-box:hover .step-image{
transform:scale(1.1);
}

/* TEXT */
.step-text h3{
font-size:18px;
font-weight:700;
color:var(--ghee-brown-dark);
margin-bottom:3px;
}

.step-text p{
font-size:14px;
color:var(--ghee-muted);
margin:0;
line-height:1.5;
}

/* ================= CONNECTING LINE ================= */
.ghee-step-box::after{
content:"";
position:absolute;
left:20px;
bottom:-12px;
width:2px;
height:12px;
background:rgba(244,180,0,0.4);
}

.ghee-step-box:last-child::after{
display:none;
}

/* ================= MOBILE ================= */
@media(max-width:992px){

.ghee-process-flex{
flex-direction:column;
gap:30px;
}

/* IMAGE */
.ghee-process-left img{
max-width:100%;
}

/* HEADER */
.ghee-process-header h2{
font-size:26px;
}

/* STEP TEXT */
.step-text h3{
font-size:15px;
}

.step-text p{
font-size:12px;
}

/* STEP IMAGE */
.step-image{
width:55px;
height:55px;
}

.step-number{
width:32px;
height:32px;
font-size:13px;
}

}
.saree-prefooter{
    padding:80px 8%;
    background:linear-gradient(135deg, var(--saree-cream), #fff);
    font-family:var(--saree-font);
}

.prefooter-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

/* Left Content */
.prefooter-content{
    flex:1;
    max-width:500px;
}

.prefooter-content h2{
    font-family:var(--saree-heading);
    font-size:36px;
    color:var(--saree-maroon);
    margin-bottom:15px;
}

.prefooter-content p{
    color:var(--saree-muted);
    line-height:1.7;
    margin-bottom:25px;
}

/* Button */
.prefooter-btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:50px;
    background:var(--saree-maroon);
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.prefooter-btn:hover{
    background:var(--saree-maroon-dark);
    box-shadow:var(--saree-shadow-hover);
}

/* Features Grid */
.prefooter-features{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
}

/* Feature Box */
.feature-box{
    background:#fff;
    padding:25px 20px;
    border-radius:var(--saree-radius);
    text-align:center;
    box-shadow:var(--saree-shadow);
    transition:0.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
    box-shadow:var(--saree-shadow-hover);
}

/* Icons */
.feature-box i{
    font-size:22px;
    color:var(--saree-gold);
    margin-bottom:10px;
}

/* Text */
.feature-box h4{
    font-size:16px;
    margin-bottom:6px;
    color:var(--saree-text);
}

.feature-box p{
    font-size:13px;
    color:var(--saree-muted);
}

/* Responsive */
@media(max-width:768px){
    .prefooter-container{
        flex-direction:column;
        text-align:center;
    }

    .prefooter-features{
        grid-template-columns:1fr 1fr;
    }
}


/*-------------------------------------------------------------
Collections
-------------------------------------------------------------*/
/* SECTION */
.saree-collections{
    padding:40px 6%;
    background:var(--saree-cream);
    font-family:'Poppins', sans-serif;
}

/* HEADER */
.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h1{
    font-family:'Playfair Display', serif;
    font-size:40px;
    color:var(--saree-maroon);
}

.section-header p{
    color:var(--saree-muted);
}

/* CATEGORY */
.category-block{
    margin-bottom:60px;
}

.category-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.category-header h2{
    font-size:26px;
    color:var(--saree-maroon);
}

.view-all{
    text-decoration:none;
    color:var(--saree-gold);
    font-weight:500;
}

/* GRID */
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:25px;
}

/* CARD */
.product-card{
    background:#fff;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-hover);
}

/* IMAGE */
.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.4s;
}

.product-card:hover img{
    transform:scale(1.08);
}

/* BADGE */
.badge{
    position:absolute;
    top:10px;
    left:10px;
    background:var(--saree-gold);
    color:#fff;
    padding:5px 10px;
    font-size:12px;
    border-radius:20px;
}

/* INFO */
.product-info{
    padding:15px;
    text-align:center;
}

.product-info h3{
    font-size:16px;
    margin-bottom:8px;
    color:var(--saree-text);
}

/* PRICE */
.price-box{
    margin-bottom:12px;
}

.new-price{
    color:var(--saree-maroon);
    font-weight:600;
}

.old-price{
    text-decoration:line-through;
    color:var(--saree-muted);
    margin-left:8px;
    font-size:14px;
}

/* BUTTON */
.lux-btn{
    width:100%;
    padding:12px 18px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg, var(--saree-maroon), var(--saree-maroon-dark));
    color:#fff;
    font-size:15px;
    font-weight:500;
    letter-spacing:0.5px;
    cursor:pointer;
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 10px 25px rgba(106,13,37,0.35);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

/* Shine Effect */
.lux-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transition:0.6s;
}

.lux-btn:hover::before{
    left:100%;
}

/* Hover */
.lux-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(106,13,37,0.45);
}

/* Click */
.lux-btn:active{
    transform:scale(0.96);
    box-shadow:0 6px 18px rgba(106,13,37,0.3);
}

/* Icon */
.lux-btn i{
    font-size:16px;
}
.new-price{
    color:var(--saree-maroon);
    font-weight:600;
    font-size:18px;
    letter-spacing:0.5px;
}
/* RESPONSIVE */
@media(max-width:768px){
    .section-header h1{
        font-size:28px;
    }
}



:root{
  --white: #ffffff;
  --soft-bg: #FAF7F2; /* saree light bg */
  --text-dark: #2B2B2B;
  --muted: #8a8a8a;

  --brown: #6A0D25; /* saree maroon */
  --brown-dark: #4e0a1b;

  --light-brown: #FFF5E1; /* cream */

  --gold: #D4AF37;
  --gold-light: #f1e3b0;

  --border: #eee;

  --font-main: "Poppins", sans-serif;
}

/* PAGE */
.sahil-product-page{
  background: var(--soft-bg);
  color: var(--text-dark);
  padding:40px 0;
  font-family: var(--font-main);
}

/* IMAGE */
.main-img{
  width:100%;
  max-height:520px;
  border-radius:18px;
  object-fit:cover;
  box-shadow:0 12px 35px rgba(0,0,0,.10);
  background: var(--light-brown);
}

/* THUMBNAILS */
.thumb img{
  width:80px;
  height:80px;
  border-radius:12px;
  cursor:pointer;
  object-fit:cover;
  border:2px solid transparent;
  transition:0.3s ease;
}

.thumb img:hover,
.thumb img.active{
  border-color: var(--gold);
}

/* PRODUCT BOX */
.product-box{
  background: var(--white);
  border-radius:22px;
  padding:28px;
  box-shadow:0 8px 26px rgba(0,0,0,.06);
  border:1px solid var(--border);
}

/* PRICE */
.price{
  font-size:28px;
  font-weight:700;
  color: var(--brown);
}

/* TAG */
.badge-handloom{
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color:#000;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  letter-spacing:0.5px;
  font-weight:600;
}

/* BUTTON */
.btn-cart{
  background: linear-gradient(135deg, var(--brown), var(--brown-dark));
  color: #fff !important;  /* 👈 FORCE WHITE */
  padding:14px;
  font-weight:600;
  border-radius:14px;
  border:none;
  transition:0.3s ease;
  position:relative;
  overflow:hidden;
}

/* Agar button ke andar icon ya span ho */
.btn-cart *{
  color:#fff !important;
}

/* shine effect */
.btn-cart::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.3),
    transparent
  );
  transition:0.6s;
}

.btn-cart:hover::before{
  left:100%;
}

.btn-cart:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(106,13,37,0.35);
}

/* TABLE */
.product-box table th{
  color: var(--muted);
  width:120px;
}

/* WISHLIST */
.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  z-index: 5;
  transition: 0.2s ease;
}

.wishlist-btn i {
  color: #aaa !important;
  font-size: 22px;
  transition: 0.25s ease;
}

button.wishlist-btn.active i{
  color: #e63946 !important;
}

.wishlist-btn:hover {
  transform: scale(1.12);
  border-color: var(--gold);
}

/* RELATED SLIDER */
.product-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slide-card {
  min-width: 220px;
  background: var(--white);
  border-radius: 18px;
  padding: 12px;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  border: 1px solid var(--border);
  transition: 0.25s ease;
}

.product-slide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.product-slide-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--light-brown);
}

/* SLIDER BUTTONS */
.slider-btn {
  position: absolute;
  top: 40%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 20px;
  box-shadow: 0 5px 18px rgba(0,0,0,.15);
  z-index: 10;
  cursor: pointer;
  transition: 0.2s ease;
}

.slider-btn:hover {
  transform: scale(1.12);
  background: var(--gold-light);
}

.slider-btn.left {
  left: -10px;
}

.slider-btn.right {
  right: -10px;
}
/* ===== RELATED SECTION ===== */
.related-section{
  background: #FAF7F2;
  padding: 60px 0;
}

/* HEADING */
.related-section h4{
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #6A0D25;
  margin-bottom: 20px;
}

/* SLIDER */
.product-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.product-slide-card {
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 12px;
  text-decoration: none;
  color: #2B2B2B;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  border: 1px solid #eee;
  transition: 0.3s ease;
  position: relative;
}

/* HOVER */
.product-slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

/* IMAGE */
.product-slide-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  background: #FFF5E1;
  transition: 0.4s ease;
}

.product-slide-card:hover img{
  transform: scale(1.05);
}

/* TITLE */
.product-slide-card h6{
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  color: #2B2B2B;
}

/* PRICE */
.product-slide-card p{
  font-size: 15px;
  font-weight: 700;
  color: #6A0D25;
  margin-bottom: 0;
}

/* OPTIONAL GOLD BORDER HOVER */
.product-slide-card::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius:18px;
  border:1px solid transparent;
  transition:0.3s;
}

.product-slide-card:hover::after{
  border-color:#D4AF37;
}

/* ARROW BUTTONS */
.slider-btn {
  position: absolute;
  top: 40%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #eee;
  font-size: 20px;
  box-shadow: 0 5px 18px rgba(0,0,0,.15);
  z-index: 10;
  cursor: pointer;
  transition: 0.25s ease;
}

.slider-btn:hover {
  transform: scale(1.12);
  background: #FFF5E1;
}

/* LEFT RIGHT */
.slider-btn.left {
  left: -10px;
}

.slider-btn.right {
  right: -10px;
}

/* MOBILE */
@media(max-width:768px){
  .product-slide-card{
    min-width: 170px;
  }

  .product-slide-card img{
    height: 140px;
  }
}
/*--------------------------------------------------------------
# Bulk Section
--------------------------------------------------------------*/
.bulk-section {
  padding: 50px 0;
  background: rgba(250,247,242,0.9), rgba(250,247,242,0.6);
  font-family: 'Poppins', sans-serif;
}

.bulk-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* LEFT IMAGE */
.bulk-image {
  width: 55%;
  height: 360px;
}

.bulk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CARD */
.bulk-content {
  width: 45%;
  background: white;
  padding: 40px 36px;
}

.bulk-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

/* BULLET POINTS */
.bulk-points {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.bulk-points li {
  font-size: 14.5px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.bulk-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c07a3f;
}

/* CONTACT ROW */
.bulk-contact {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-weight: 500;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .bulk-wrapper {
    flex-direction: column;
  }

  .bulk-image,
  .bulk-content {
    width: 100%;
  }

  .bulk-image {
    height: 280px;
  }
}

@media(max-width: 600px){
  .bulk-content {
    padding: 26px 20px;
  }

  .bulk-content h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* ================= CONTACT SECTION ================= */
.lux-contact-section {
  background: linear-gradient(180deg, #FFF8E1, #FFFCF5);
  padding: 40px 20px;
  color: var(--ghee-text);
  position: relative;
  overflow: hidden;
  font-family: var(--ghee-font);
}

/* ================= HEADER ================= */
.contact-header {
  max-width: 750px;
  margin: auto;
  margin-bottom: 60px;
  text-align: center;
}

.contact-tag {
  color: var(--ghee-gold-dark);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  font-family: var(--ghee-heading);
  background: linear-gradient(90deg, #5A3E2B, #F4B400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-subtext {
  color: var(--ghee-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ================= INFO CARD ================= */
.contact-info-card {
  background: var(--ghee-white);
  padding: 40px;
  border-radius: var(--ghee-radius);
  border: 1px solid var(--ghee-border);
  height: 100%;
  box-shadow: var(--ghee-shadow);
  transition: 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ghee-shadow-hover);
}

.contact-info-card h4 {
  margin-bottom: 25px;
  font-weight: 700;
  color: var(--ghee-brown);
}

/* INFO ITEM */
.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
}

.info-item i {
  color: var(--ghee-gold-dark);
  font-size: 20px;
  margin-top: 3px;
}

.info-item h6 {
  margin: 0;
  font-size: 15px;
  color: var(--ghee-text);
}

.info-item p {
  margin: 0;
  font-size: 14px;
  color: var(--ghee-muted);
}

/* NOTE BOX */
.contact-note {
  margin-top: 20px;
  background: linear-gradient(135deg, #FFF3C4, #FFF8E1);
  border: 1px solid var(--ghee-gold);
  padding: 14px 16px;
  border-radius: var(--ghee-radius);
  font-size: 14px;
  color: var(--ghee-text);
}

/* ================= FORM CARD ================= */
.contact-form-card {
  background: var(--ghee-white);
  padding: 40px;
  border-radius: var(--ghee-radius);
  border: 1px solid var(--ghee-border);
  box-shadow: var(--ghee-shadow);
  transition: 0.3s;
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ghee-shadow-hover);
}

.contact-form-card h4 {
  margin-bottom: 25px;
  font-weight: 700;
  color: var(--ghee-brown);
}

/* ================= INPUTS ================= */
.lux-input {
  background: var(--ghee-light);
  border: 1px solid var(--ghee-border);
  color: var(--ghee-text);
  border-radius: var(--ghee-radius);
  padding: 14px 16px;
  font-family: var(--ghee-font);
  transition: 0.3s;
}

.lux-input::placeholder {
  color: var(--ghee-muted);
}

.lux-input:focus {
  border-color: var(--ghee-gold);
  box-shadow: 0 0 0 2px rgba(244,180,0,0.2);
  background: #fff;
  color: var(--ghee-text);
}

/* ================= BUTTON ================= */
.lux-contact-btn {
  padding: 14px 35px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(135deg, #5A3E2B, #3E2A1F);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  font-family: var(--ghee-font);
}

.lux-contact-btn:hover {
  background: var(--ghee-gold-gradient);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(244,180,0,0.4);
}

/* ================= MAP SECTION ================= */
.contact-map-section {
  margin-top: 70px;
}

.map-header {
  text-align: center;
}

.map-header h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ghee-brown);
}

.map-header p {
  color: var(--ghee-muted);
  margin-bottom: 25px;
}

/* ================= MAP ================= */
.map-container {
  border-radius: var(--ghee-radius);
  overflow: hidden;
  border: 1px solid var(--ghee-border);
  box-shadow: var(--ghee-shadow);
}

.map-container iframe {
  filter: grayscale(0.6);
  transition: .4s;
}

.map-container:hover iframe {
  filter: grayscale(0);
}

/* ================= MOBILE ================= */
@media(max-width:768px) {
  .contact-title {
    font-size: 30px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 25px;
  }
}
/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}