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

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

:root{

--saree-maroon:#6A0D25;
--saree-maroon-dark:#4e0a1b;

--saree-gold:#D4AF37;
--saree-gold-light:#f1e3b0;
--saree-gold-hover:#c59b2e;

--saree-cream:#FFF5E1;
--saree-light:#FAF7F2;

--saree-text:#2B2B2B;
--saree-muted:#8a8a8a;

--saree-border:#eee;

--saree-shadow:0 10px 25px rgba(0,0,0,0.08);
--saree-shadow-hover:0 15px 35px rgba(0,0,0,0.12);

--saree-radius:12px;

--saree-font:"Poppins", sans-serif;
--saree-heading:"Playfair Display", serif;

}


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

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

/* ================= HEADER ================= */
.saree-header{
  background: var(--saree-cream);
  border-bottom: 1px solid var(--saree-border);
  font-family: var(--saree-font);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: var(--saree-shadow);
  transition: all 0.3s ease;
}

/* ================= MAIN HEADER ================= */
.saree-main-header{
  background: linear-gradient(to bottom, #FFF8EC, #FFF3DD);
  position: relative;
  padding: 14px 0;
  border-bottom: 2px solid var(--saree-gold-hover);
}

.saree-main-header::after{
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,var(--saree-gold),transparent);
  opacity: 0.7;
}

/* ================= TOP BAR ================= */
.saree-topbar{
  background: linear-gradient(90deg,var(--saree-maroon-dark),var(--saree-maroon));
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.saree-topbar .container-xl{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.saree-top-left{
  min-width: 180px;
  opacity: 0.9;
}

.saree-top-right{
  min-width: 200px;
  text-align: right;
  color: var(--saree-gold);
  font-weight: 500;
}

/* ================= SEARCH BAR ================= */
.saree-top-search{
  flex: 1;
  display: flex;
  justify-content: center;
}

.saree-search-bar{
  width: 460px;
  max-width: 100%;
  height: 44px;
  display: flex;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--saree-shadow);
  transition: 0.3s;
}

.saree-search-bar:hover{
  transform: translateY(-1px);
  box-shadow: var(--saree-shadow-hover);
}

.saree-search-bar input{
  flex: 1;
  border: none;
  padding: 0 20px;
  font-size: 14px;
  outline: none;
  color: var(--saree-text);
  font-family: var(--saree-font);
}

.saree-search-bar button{
  width: 55px;
  background: linear-gradient(135deg, var(--saree-gold), var(--saree-gold-hover));
  border: none;
  color: #000;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.saree-search-bar button:hover{
  background: linear-gradient(135deg, var(--saree-gold-hover), var(--saree-gold));
}
/* ================= SEARCH SUGGESTIONS ================= */
/* Suggestions Box */
.suggestions-box {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: var(--saree-cream);
  border-radius: var(--saree-radius);
  border: 1px solid var(--saree-border);
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  z-index: 9999;
  padding: 4px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.suggestions-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Scrollbar */
.suggestions-box::-webkit-scrollbar {
  width: 6px;
}
.suggestions-box::-webkit-scrollbar-track {
  background: var(--saree-cream);
  border-radius: 10px;
}
.suggestions-box::-webkit-scrollbar-thumb {
  background: var(--saree-gold);
  border-radius: 10px;
}

/* Suggestion Items */
.suggest-item {
  padding: 10px 20px;
  display: block;
  font-size: 15px;
  color: var(--saree-text);
  cursor: pointer;
  border-radius: 6px;
  margin: 2px 8px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.suggest-item:hover {
  background: linear-gradient(135deg, var(--saree-gold-light), var(--saree-gold));
  color: var(--saree-maroon);
  transform: translateX(4px);
}
/* ================= LOGO ================= */
.saree-logo img{
  height: 62px;
  object-fit: contain;
  transition: 0.4s ease;
}

.saree-logo img:hover{
  transform: scale(1.1);
}

/* ================= NAVIGATION ================= */
.saree-menu{
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.saree-menu li{
  list-style: none;
  position: relative;
}

.saree-menu a,
.saree-menu button{
  font-family: var(--saree-heading);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--saree-text);
  text-decoration: none;
  padding: 6px 0;
  transition: 0.3s;
  position: relative;
}

.saree-menu a:hover{
  color: var(--saree-maroon);
}

/* PREMIUM UNDERLINE */
.saree-menu li a::after{
  content:"";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,var(--saree-gold),transparent);
  transition: 0.4s;
}

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

/* ================= DROPDOWN ================= */
.dropdown-menu{
  position: absolute;
  top: 130%;
  left: 0;
  background: var(--saree-cream);
  border-radius: var(--saree-radius);
  min-width: 260px;
  padding: 14px 0;
  display: none;
  box-shadow: var(--saree-shadow);
  border-top: 4px solid var(--saree-gold);
  animation: dropdownFade 0.3s ease;
}

@media(min-width:992px){
  .dropdown:hover .dropdown-menu{
    display:block;
  }
}

.dropdown-menu a{
  font-size: 14px;
  padding: 12px 22px;
  display: block;
  color: var(--saree-text);
  transition: 0.3s;
  position: relative;
  border-radius: var(--saree-radius);
}

.dropdown-menu a:hover{
  background: var(--saree-gold-light);
  color: var(--saree-maroon);
  padding-left: 28px;
}

.dropdown-menu a::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--saree-gold);
  opacity: 0.2;
  transition: 0.3s;
}

.dropdown-menu a:hover::before{
  width: 6px;
}

/* ================= ICONS ================= */
.saree-icons{
  display: flex;
  align-items: center;
  gap: 22px;
}

.saree-icon{
  font-size: 22px;
  color: var(--saree-text);
  position: relative;
  transition: 0.3s;
}

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

/* ================= BADGES ================= */
.saree-badge{
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--saree-gold);
  color: #000;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* ================= MOBILE ================= */
/* ================= MOBILE TOGGLE ================= */
#mobileToggle{
  font-size: 28px;
  color: var(--saree-maroon);
  cursor: pointer;
}

/* ================= MOBILE NAV ================= */
.mobile-nav{
  display: none;
  background: var(--saree-cream);
  border-top: 1px solid var(--saree-border);
  box-shadow: var(--saree-shadow);
  padding-bottom: 15px;
}

.mobile-nav.active{
  display: block;
  animation: slideDown 0.4s ease forwards;
}

/* ================= MENU ================= */
.mobile-nav .saree-menu{
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
}

/* ================= RESET BUTTON / LINK ================= */
.mobile-nav .dropdown > a,
.mobile-nav .dropdown > button{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  font-weight: 600;
  color: var(--saree-text);
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  transition: 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.mobile-nav .dropdown > a:hover,
.mobile-nav .dropdown > button:hover{
  color: var(--saree-maroon);
}

/* ================= DROPDOWN ================= */
.mobile-nav .dropdown{
  position: relative;
}

/* ARROW */
/* .mobile-nav .dropdown > a::after,
.mobile-nav .dropdown > button::after{
  content: '▼';
  font-size: 12px;
  color: var(--saree-maroon);
  margin-left: auto;
  transition: transform 0.3s;
} */

/* ACTIVE ARROW ROTATE */
.mobile-nav .dropdown.active > a::after,
.mobile-nav .dropdown.active > button::after{
  transform: rotate(-180deg);
}

/* ================= DROPDOWN MENU ================= */
.mobile-nav .dropdown-menu{
  display: none;
  position: static;
  background: var(--saree-light);
  border-radius: var(--saree-radius);
  padding: 10px 15px;
  margin-top: 8px;
  border-left: 3px solid var(--saree-gold);
  box-shadow: var(--saree-shadow);
}

/* OPEN STATE */
.mobile-nav .dropdown.active .dropdown-menu{
  display: block;
}

/* ================= DROPDOWN ITEMS ================= */
.mobile-nav .dropdown-menu a{
  display: block;
  padding: 10px 15px;
  font-size: 15px;
  color: var(--saree-text);
  border-radius: var(--saree-radius);
  transition: 0.3s;
}

.mobile-nav .dropdown-menu a:hover{
  background: var(--saree-gold-light);
  color: var(--saree-maroon);
  padding-left: 25px;
}


/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .saree-top-search{
    display: none;
  }
.saree-top-right{
  min-width: 100px;
  text-align: right;
  color: var(--saree-gold);
  font-weight: 500;
}

  .saree-logo img{
    height: 48px;
  }
}

@media(max-width:768px){
  .saree-icons{
    gap:16px;
  }

  .saree-logo img{
    height:42px;
  }
}

/* ================= ANIMATION ================= */
@keyframes dropdownFade{
  from{
    opacity:0;
    transform:translateY(15px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes slideDown{
  0%{opacity:0; transform: translateY(-20px);}
  100%{opacity:1; transform: translateY(0);}
}
/*--------------------------------------------------------------
# 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;
  }
}

.about-banner {
  width: 100%;
  height: 300px;
  background: url('../../assets/images/abc.webp') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  display: flex;
  align-items: center;
}

/* Text Styling */
.about-banner h1 {
  color: white;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 6px;
}

.about-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 520px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .about-banner {
    height: 220px;
  }

  .about-banner h1 {
    font-size: 28px;
  }

  .about-banner p {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# 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;
}

}
/*--------------------------------------------------------------
# Section Banner
--------------------------------------------------------------*/
.section-banner {
  width: 100%;
  height: 320px;
  background: url('../../assets/images/contact.png') center/cover no-repeat;
  position: relative;
  margin: 0px 0px 0px;
}

/* Overlay */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  display: flex;
  align-items: center;
}

/* Content */
.banner-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  color: white;
}

.banner-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* Button */
.banner-btn {
  display: inline-block;
  background: #c65a3a;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #9f4228;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .section-banner {
    height: 220px;
  }

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

  .banner-content p {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# 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
------------------------------*/
/* PAGE */
.bestseller-page{
padding:60px 0;
background:linear-gradient(180deg,#fff,#fff3e8);
}

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

.bestseller-header h1{
font-size:36px;
color:#2e1f1f;
font-weight:700;
}

.bestseller-header p{
color:#777;
font-size:14px;
}

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

/* CARD */
.bestseller-card{
background:#fff;
border-radius:20px;
overflow:hidden;
transition:.4s;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.bestseller-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

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

.bestseller-image img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}

.bestseller-card:hover img{
transform:scale(1.1);
}

/* BADGE */
.bestseller-badge{
position:absolute;
top:15px;
left:15px;
background:#ff4d4d;
color:#fff;
padding:6px 12px;
font-size:11px;
border-radius:20px;
font-weight:600;
}

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

.bestseller-content h3{
font-size:15px;
margin-bottom:8px;
height:42px;
overflow:hidden;
}

/* PRICE */
.bestseller-price{
color:#b12704;
font-size:18px;
font-weight:700;
margin-bottom:12px;
}

/* BUTTON */
.bestseller-btn{
background:var(--saree-maroon);
color:#fff;
border:none;
padding:10px 18px;
border-radius:30px;
cursor:pointer;
transition:.3s;
}

.bestseller-btn:hover{
background:#D4AF37;
color:#000;
}

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

@media(max-width:576px){
.bestseller-grid{
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.bestseller-image{
height:200px;
}
}

/* SECTION */

.saree-banner-section{
    margin:0;
}

/* BANNER */

.saree-banner{
    display:block;
    width:100%;
    overflow:hidden;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* IMAGE - FULL VISIBLE */

.saree-banner img{
    width:100%;
    height:auto; /* IMPORTANT FIX */
    display:block;
    transition:transform .6s ease;
}

/* HOVER EFFECT (subtle zoom) */

.saree-banner:hover img{
    transform:scale(1.03);
}

/* OPTIONAL: add smooth look on smaller screens */

@media(max-width:768px){

    .saree-banner{
        box-shadow:none;
    }

    .saree-banner img{
        width:100%;
        height:auto; /* keeps full image visible */
    }

}

/* EXTRA SMALL DEVICES */

@media(max-width:480px){

    .saree-banner img{
        width:100%;
        height:auto;
    }

}


.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
--------------------------------------------------------------*/
.lux-contact-section {
  background: var(--saree-light);
  padding: 40px 20px;
  color: var(--saree-text);
  position: relative;
  overflow: hidden;
  font-family: var(--saree-font);
}

/* HEADER */

.contact-header {
  max-width: 750px;
  margin: auto;
  margin-bottom: 70px;
}

.contact-tag {
  color: var(--saree-maroon);
  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(--saree-heading);
}

.contact-title span {
  background: linear-gradient(90deg, var(--saree-maroon), var(--saree-maroon-dark));
  -webkit-background-clip: text;
  color: transparent;
}

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

/* INFO CARD */

.contact-info-card {
  background: var(--saree-cream);
  padding: 40px;
  border-radius: var(--saree-radius);
  border: 1px solid var(--saree-border);
  height: 100%;
  box-shadow: var(--saree-shadow);
}

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

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

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

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

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

.contact-note {
  margin-top: 20px;
  background: var(--saree-light);
  border: 1px solid var(--saree-maroon);
  padding: 14px 16px;
  border-radius: var(--saree-radius);
  font-size: 14px;
  color: var(--saree-text);
}

/* FORM CARD */

.contact-form-card {
  background: var(--saree-cream);
  padding: 40px;
  border-radius: var(--saree-radius);
  border: 1px solid var(--saree-border);
  box-shadow: var(--saree-shadow);
}

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

/* INPUTS */

.lux-input {
  background: var(--saree-light);
  border: 1px solid var(--saree-border);
  color: var(--saree-text);
  border-radius: var(--saree-radius);
  padding: 14px 16px;
  font-family: var(--saree-font);
}

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

.lux-input:focus {
  border-color: var(--saree-gold-hover);
  box-shadow: 0 0 0 1px var(--saree-gold-hover);
  background: var(--saree-light);
  color: var(--saree-text);
}

/* BUTTON */

.lux-contact-btn {
  padding: 14px 35px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(135deg, var(--saree-maroon), var(--saree-maroon-dark));
  color: var(--saree-cream);
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 10px 30px rgba(106,13,37,0.4);
  font-family: var(--saree-font);
}

.lux-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(106,13,37,0.6);
}

/* MAP SECTION */

.contact-map-section {
  margin-top: 70px;
}

.map-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--saree-text);
}

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

/* MAP CONTAINER */

.map-container {
  border-radius: var(--saree-radius);
  overflow: hidden;
  border: 1px solid var(--saree-border);
  box-shadow: var(--saree-shadow);
}

/* MAP */

.map-container iframe {
  filter: grayscale(1) contrast(1.1);
  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: 30px;
  }
}
/*--------------------------------------------------------------
# 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 */
}