
/* ROOT */
/* ==========================================================================
   HAUTE FRAGRANCE BOUTIQUE STYLING SHEET (STREAMLINED & ROW ALIGNED)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght=0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    /* Pure Natural Perfumery Palette (White & Fresh Blue-Green Tint) */
    --primary-sky: #2575fc;          /* Royal Crystal Sky Blue (For high-end feel) */
    --deep-ocean: #102a43;           /* Deep Navy/Ocean Text (Rich contrast, replaces black) */
    --soft-azure: #e6f2ff;           /* Ultra Light Sky Mist (For subtle backgrounds) */
    --midnight-black: #ffffff;       /* Pure Crisp White Background (Shows purity of oils) */
    --velvet-black: #f4f8fc;         /* Soft Off-White for alternate sections */
    --premium-white: #1e293b;        /* Charcoal Dark for highly readable body text */
    --luxury-glass: rgba(255, 255, 255, 0.95);
    
    /* Borders & Natural Botanical Gradients */
    --purple-border: rgba(37, 117, 252, 0.15);
    /* Fresh stream flow gradient: Sky blue blending into a hint of fresh botanical mint */
    --purple-flow: linear-gradient(135deg, #1a73e8 0%, #2575fc 50%, #68d391 100%);
    
    /* Typography (Cormorant Garamond gives that organic, heritage oil look) */
    --font-heading: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: .4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: var(--font-sans);
    background-color: var(--midnight-black);
    color: var(--premium-white);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.fs-7 { font-size: 12px !important; }
.tracking-widest { letter-spacing: 2.5px !important; }
.text-uppercase-gold { color: var(--primary-sky); font-family: var(--font-sans); letter-spacing: 2px; font-size: 14px; font-weight: 600; }
.text-gold-dim { color: rgba(16, 42, 67, 0.75); }
.text-muted-gold { color: rgba(30, 41, 59, 0.5); transition: .3s; }
.text-muted-gold:hover { color: var(--primary-sky); }

/* ====================================
   CINEMATIC HERO LOOP BACKGROUND SYSTEM
   ==================================== */
/* ===================================================
   HAUTE PARFUMERIE - COMPLETE HEADER & NAVIGATION STYLES
   =================================================== */

/* --- HERO VIDEO LAYER --- */
.luxury-hero-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #ffffff;
}
.luxury-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transform: scale(1.02);
}
.video-overlay-darkness {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--midnight-black) 0%, rgba(244, 248, 252, 0.3) 50%, rgba(255, 255, 255, 0.6) 100%);
}

.video-hero-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}
.maison-title {
    font-family: var(--font-heading);
    font-size: 68px;
    color: var(--deep-ocean);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 4px 24px rgba(37, 117, 252, 0.1);
}
.maison-subtitle {
    font-size: 13px;
    color: var(--primary-sky);
    letter-spacing: 6px;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- MAIN NAVBAR WRAPPER --- */
.fashion-headers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: var(--transition);
}

.fashion-headers.scrolled {
    position: fixed !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(16, 42, 67, 0.06);
    border-bottom: 1px solid rgba(37, 117, 252, 0.1);
}

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
    background: var(--soft-azure);
    color: var(--deep-ocean);
    padding: 9px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(37, 117, 252, 0.1);
}
.shimmer-fast {
    background: linear-gradient(90deg, var(--deep-ocean) 0%, var(--primary-sky) 50%, var(--deep-ocean) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 4s linear infinite;
}

.header-wrapper {
    height: 75px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.logo img {
    max-height: 65px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(37, 117, 252, 0.15));
}

/* --- DESKTOP NAVIGATION --- */
.desktop-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-nav ul li a, 
.desktop-nav .dropdown-btn {
    background: none;
    border: none;
    color: var(--deep-ocean);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    position: relative;
    transition: var(--transition);
}

.desktop-nav ul li a:hover, 
.desktop-nav .dropdown-btn:hover {
    color: var(--primary-sky);
}

.desktop-nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--purple-flow);
    transition: width 0.4s ease;
}
.desktop-nav ul li a:hover::after { width: 90%; }

.dropdown-arrow-icon { font-size: 8px; transition: var(--transition); opacity: 0.8; }
.dropdown:hover .dropdown-arrow-icon { transform: rotate(180deg); color: var(--primary-sky); }

/* --- DESKTOP DROPDOWN --- */
.desktop-nav .dropdown-menu {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    min-width: 270px;
    background: #ffffff;
    border: 1px solid var(--purple-border);
    padding: 15px;
    box-shadow: 0 24px 54px rgba(16, 42, 67, 0.12);
    opacity: 0;
    visibility: hidden;
    display: block !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.desktop-nav .dropdown-menu li { width: 100%; border: none !important; }
.desktop-nav .dropdown-menu li a {
    color: var(--deep-ocean);
    font-family: var(--font-heading);
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 12px 15px;
    width: 100%;
}
.desktop-nav .dropdown-menu li a::after { display: none; }
.desktop-nav .dropdown-menu li a:hover {
    background: rgba(37, 117, 252, 0.05);
    color: var(--primary-sky);
    padding-left: 22px;
}

/* --- HEADER UTILITY ICONS & SEARCH --- */
.header-icons { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    flex-wrap: nowrap !important;
}

.search-box { 
    position: relative; 
    display: flex;
    align-items: center;
}
.search-box input {
    width: 38px; 
    height: 38px;
    border: 1px solid rgba(16, 42, 67, 0.15);
    background: rgba(16, 42, 67, 0.02);
    border-radius: 0;
    padding: 0 38px 0 0;
    outline: none;
    color: var(--deep-ocean);
    font-size: 12px;
    cursor: pointer;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}
.search-box input::placeholder { color: transparent; }
.search-box input:focus {
    width: 200px;
    padding-left: 12px;
    cursor: text;
    border-color: var(--primary-sky);
    background: #ffffff;
}
.search-box input:focus::placeholder { color: rgba(16, 42, 67, 0.4); }

.search-trigger-icon {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--deep-ocean);
    font-size: 13px;
    pointer-events: none;
}
.search-box input:focus + .search-trigger-icon { color: var(--primary-sky); }

.icon-btn {
    width: 38px;
    height: 38px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--deep-ocean);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(16, 42, 67, 0.15);
    flex-shrink: 0;
}
.icon-btn i { font-size: 14px; }
.icon-btn:hover {
    background: var(--deep-ocean);
    color: #ffffff !important;
    border-color: var(--deep-ocean);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 117, 252, 0.15);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--purple-flow);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(37, 117, 252, 0.25);
}

/* --- RESPONSIVE MOBILE NAVIGATION --- */
#mobileToggle { 
    display: none; 
    font-size: 22px; 
    cursor: pointer; 
    color: var(--deep-ocean);
    border: 1px solid rgba(16, 42, 67, 0.15);
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--luxury-glass);
    backdrop-filter: blur(25px);
    border-left: 1px solid var(--purple-border);
    padding: 35px 25px;
    overflow-y: auto;
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999999;
    box-shadow: -20px 0 60px rgba(16, 42, 67, 0.08);
    display: block !important;
}
.mobile-nav.active { right: 0 !important; }

#closeMobileMenu { color: rgba(16, 42, 67, 0.6); transition: .3s; cursor: pointer; }
#closeMobileMenu:hover { color: var(--primary-sky); }

.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav ul li { margin-bottom: 6px; border-bottom: 1px solid rgba(16, 42, 67, 0.05); width:100%!important; }
.mobile-nav ul li a, 
.mobile-nav .dropdown-btn {
    text-decoration: none;
    color: var(--deep-ocean);
    font-size: 13px;
    font-weight: 600;
    padding: 14px 5px;
    display: block;
    background: none;
    border: none;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
}

.mobile-nav .dropdown-menu {
    display: none !important;
    background: rgba(230, 242, 255, 0.5) !important;
    padding-left: 15px;
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
}
.mobile-nav .dropdown.active .dropdown-menu { display: block !important; }
.mobile-nav .dropdown-menu li a {
    font-size: 17px;
    font-family: var(--font-heading);
    text-transform: none;
    color: var(--deep-ocean);
    letter-spacing: 0.5px;
}

.luxury-bottom-shimmer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(37,117,252,0) 0%, rgba(37,117,252,0.4) 50%, rgba(37,117,252,0) 100%);
}

/* --- ANIMATIONS --- */
@keyframes shineText { to { background-position: 200% center; } }


/* ===================================================
   GLASSMORPHIC SIDE CART DRAWER VISIBILITY FIX
   =================================================== */
.modern-cart-drawer {
    background: var(--luxury-glass) !important;
    backdrop-filter: blur(25px);
    color: var(--deep-ocean) !important;
    border-left: 1px solid var(--purple-border);
}

/* Force dark readable colors on all sub-text labels inside drawer */
.modern-cart-drawer h1,
.modern-cart-drawer h2,
.modern-cart-drawer h3,
.modern-cart-drawer h4,
.modern-cart-drawer h5,
.modern-cart-drawer h6,
.modern-cart-drawer p,
.modern-cart-drawer span,
.modern-cart-drawer div {
    color: var(--deep-ocean) !important;
    text-shadow: none !important;
}

.border-gold-subtle { border-color: rgba(37, 117, 252, 0.15) !important; }
.luxury-close-btn { filter: none; opacity: 0.7; transition: .3s; }
.luxury-close-btn:hover { opacity: 1; color: var(--primary-sky); }

/* Coupon Panel Fix */
.modern-cart-drawer .luxury-coupon-box {
    background: rgba(37, 117, 252, 0.04) !important;
    border: 1px dashed var(--purple-border) !important;
}
.modern-cart-drawer .luxury-coupon-box p {
    color: rgba(16, 42, 67, 0.75) !important; 
}

/* Item Selector Logic Box */
.luxury-qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(16, 42, 67, 0.15);
    background: #ffffff;
}
.qty-btn {
    background: none; border: none; color: var(--deep-ocean);
    padding: 2px 10px; font-size: 12px; cursor: pointer;
}
.qty-btn:hover { color: var(--primary-sky); }
.qty-value { font-size: 11px; padding: 0 4px; min-width: 20px; text-align: center; color: var(--deep-ocean); font-weight: 600; }
.luxury-cart-img { border-color: rgba(16, 42, 67, 0.1) !important; padding: 2px; background: rgba(37, 117, 252, 0.02); }

/* Price Valuation Breakdown Panel */
.modern-cart-drawer .price-details-card {
    border-top: 1px solid rgba(16, 42, 67, 0.15) !important;
}
.modern-cart-drawer .price-details-card span[style*="color"],
.modern-cart-drawer .price-details-card .text-light-50 {
    color: rgba(16, 42, 67, 0.65) !important;
}
.modern-cart-drawer .price-details-card .text-white,
.modern-cart-drawer #cart-mrp,
.modern-cart-drawer #cart-total {
    color: var(--deep-ocean) !important;
    font-weight: 700 !important;
}
.modern-cart-drawer .text-success {
    color: #198754 !important;
    font-weight: bold;
}

/* Drawer Primary Action Links */
.checkout-btn-luxury {
    background: var(--purple-flow) !important;
    color: #ffffff !important; 
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    border-radius: 0;
    transition: var(--transition);
    text-transform: uppercase;
}
.checkout-btn-luxury:hover { filter: brightness(1.05); box-shadow: 0 8px 25px rgba(37, 117, 252, 0.25); }

.modern-cart-drawer .text-muted-gold {
    color: #dc3545 !important; /* Muted yellow/gray custom text switched to neat action red */
}


/* ===================================================
   RESPONSIVE MEDIA BREAKPOINTS
   =================================================== */
@media(max-width: 1199px) {
    .desktop-nav ul { gap: 24px; }
    .desktop-nav ul li a { font-size: 12px; letter-spacing: 1.5px; }
}

@media(max-width: 991px) {
    .announcement-bar { display: none; }
    .desktop-nav { display: none !important; }
    
    #mobileToggle { display: flex; } 
    .header-wrapper { height: 65px; } 
    .logo img { max-height: 46px; }
    
    .search-box { display: none !important; }
    
    .luxury-hero-video-container { 
        height: 60vh; 
        min-height: 400px; 
    }
    .luxury-bg-video {
        object-fit: cover;
        object-position: center center;
    }
    .video-hero-content {
        top: 50%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .maison-title { 
        font-size: 36px;
        line-height: 1.2;
    }
    .maison-subtitle { font-size: 10px; letter-spacing: 3px; }
}
/*--------------------------------------------------------------
# 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(--med-secondary); /* Using new accent color */
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff; /* White icon */
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--med-secondary), 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; /* Keep as is */
  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: 15px; /* Slightly reduced margin */
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 0px; /* Adjusted for better alignment */
  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; /* Keep as is */
  align-items: center;
}

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

.hero p {
  color: var(--med-muted); /* Using muted color for description */
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--med-secondary); /* Using new 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(255,111,0,0.25); /* Accent color shadow */
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--med-secondary), 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(--med-secondary); /* Accent color for video icon */
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

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

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--med-secondary), 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; /* Keep WhatsApp green */

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); /* Keep as is */

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: var(--med-bg);
  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: 10px; /* Slightly reduced gap */
  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(80%); /* Slightly less grayscale */
  opacity: 0.8; /* Slightly less opaque */
  transition: 0.3s ease;
}

.cert-item:hover img {
  filter: grayscale(0%); /* Full color on hover */
  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/industrial-banner.webp') center/cover no-repeat; /* Changed banner image */
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%; /* Keep as is */
  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: var(--med-bg-light); /* Using light background variable */
}

/* IMAGE AREA */
.about-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--med-shadow); /* Using new shadow variable */
}

.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: 25px; /* Slightly more offset */
  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: var(--med-secondary); /* Using new accent color */
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.about-title {
  font-size: 42px; /* Slightly smaller */
  font-weight: 800; /* Slightly less bold */
  color: var(--med-primary); /* Using new primary color */
  line-height: 1.15;
}

.about-title span {
  color: var(--med-secondary); /* Using new accent color */
}

/* DESCRIPTION */
.about-description {
  font-size: 17px;
  font-weight: 600;
  color: #444;
  line-height: 1.7; /* Slightly reduced line height */
  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: 600;
  color: var(--med-text);
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.about-highlights li::before {
  content: "✓"; /* Changed bullet point to checkmark */
  position: absolute;
  left: 0;
  color: #CFAE70;
  font-size: 16px;
}

/* BUTTON */
.about-btn-premium {
  display: inline-block;
  margin-top: 26px;
  padding: 12px 30px; /* Slightly smaller button */
  border-radius: var(--med-radius); /* Using new radius */
  background: var(--med-secondary); /* Solid accent color */
  color: white;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255,111,0,0.35); /* Accent color shadow */
  transition: all 0.3s ease;
}

.about-btn-premium:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--med-secondary), black 10%); /* Slightly darker on hover */
}

/* 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: 60px 20px; /* Slightly reduced padding */
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: 580px; /* Slightly wider text area */
}

/* BADGE */

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

/* HEADING */

.luxury-heading{
font-size: 38px; /* Slightly smaller heading */
font-weight: 700;
line-height:1.2;
margin-bottom:18px;
}

.luxury-heading span{
background: var(--med-secondary); /* Solid accent color */
-webkit-background-clip:text;
color:transparent;
}

/* DESCRIPTION */

.luxury-desc{
color: rgba(255,255,255,0.7); /* Lighter white for contrast */
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: var(--med-radius); /* Using new radius */
background: var(--med-secondary); /* Solid accent color */
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,111,0,0.5); /* Accent color shadow */
}

.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: var(--med-radius); /* Using new radius */
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: var(--med-secondary); /* Accent color glow */
top:-150px;
right:-150px;
}

.glow2{
width: 420px;
height: 420px;
background: var(--med-primary); /* Primary color glow */
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: var(--med-radius);
}

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

/* Overlay */
.banner-overlay {
  width: 100%;
  height: 100%; /* Keep as is */
  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; /* Keep as is */
  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; /* Keep as is */
  background: var(--med-secondary); /* Accent color */
  color: white;
  padding: 10px 22px;
  border-radius: var(--med-radius); /* New radius */
  font-weight: 600;
  text-decoration: none;
  transition: all 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;
  }
}
/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Bulk Section
--------------------------------------------------------------*/
.bulk-section {
  padding: 60px 0; /* Slightly more padding */
  background: var(--med-bg-light); /* Using light background variable */
  font-family: 'Poppins', sans-serif;
}

.bulk-wrapper {
  max-width: 1200px;
  margin: auto; /* Keep as is */
  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: 60%; /* Slightly wider image */
  height: 360px;
}

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

/* RIGHT CARD */
.bulk-content {
  width: 40%; /* Slightly narrower content */
  background: var(--med-bg);
  padding: 35px; /* Slightly reduced padding */
}

.bulk-content h2 {
  font-size: 26px; /* Slightly smaller heading */
  font-weight: 700; /* Bolder heading */
  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; /* Keep as is */
  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 */

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

.lux-contact-section{
background: var(--med-bg-light); /* Using light background variable */
padding:40px 20px;
color:#2b2b2b;
position:relative;
overflow:hidden;
}

/* subtle wood glow */
.lux-contact-section::before{
content:"";
position:absolute;
top:-100px;
left:-100px;
width:300px;
height:300px;
background:radial-gradient(circle, rgba(44,62,80,0.15), transparent); /* Primary color glow */
filter:blur(80px);
}

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

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

.contact-tag{
color: var(--med-secondary); /* Accent color for tag */
font-weight:600;
letter-spacing:3px;
font-size:12px;
display:block;
margin-bottom:10px;
}
 
.contact-title{
font-size:40px;
font-weight:800;
margin-bottom:12px;
color:#1a1a1a;
}

.contact-title span{
color: var(--med-secondary); /* Accent color for title span */
}

.contact-subtext{
color:#6b6b6b;
font-size:15px;
line-height:1.7;
}

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

.contact-info-card{
background: var(--med-bg);
padding:35px;
border-radius: var(--med-radius);
border:1px solid var(--med-border);
height:100%;

box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:.3s;
}

.contact-info-card:hover{
transform:translateY(-5px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.contact-info-card h4{
margin-bottom:25px;
font-weight:700;
color:#1a1a1a;
}

/* INFO ITEM */

.info-item{
display:flex;
gap:14px;
margin-bottom:20px;
}

.info-item i{
color: var(--med-secondary); /* Accent color for icons */
font-size:20px;
background:#f5f1eb;
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
}

.info-item h6{
margin:0;
font-size:14px;
color:#1a1a1a;
}

.info-item p{
margin:0;
font-size:13px;
color:#666;
}

/* NOTE */

.contact-note{
margin-top: 20px;
background:#f5f1eb;
border-left:4px solid #c89b3c;
padding:14px 16px;
border-radius:10px;
font-size:14px;
color:#555;
}

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

.contact-form-card{
background: var(--med-bg);
padding:35px;
border-radius: var(--med-radius);
border:1px solid var(--med-border);

box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:.3s;
}

.contact-form-card:hover{
transform:translateY(-5px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.contact-form-card h4{
margin-bottom:25px;
font-weight:700;
color:#1a1a1a;
}

/* ================= INPUTS ================= */

.lux-input{
background: var(--med-bg-light);
border:1px solid var(--med-border);
color: var(--med-text);
border-radius: var(--med-radius);
padding:14px 16px;
transition:.3s;
}

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

.lux-input:focus{
border-color: var(--med-secondary); /* Accent color on focus */
box-shadow:0 0 0 2px rgba(255,111,0,0.2); /* Accent color shadow */
background:#fff;
color:#000;
}

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

.lux-contact-btn{
padding:14px 38px;
border-radius:40px;
border: none;
background: var(--med-secondary); /* Solid accent color */
color:#fff;
font-weight:600;
cursor:pointer;
transition:.3s;
letter-spacing:.4px;

box-shadow:0 10px 25px rgba(255,111,0,0.35); /* Accent color shadow */
}

.lux-contact-btn:hover{
transform: translateY(-2px);
box-shadow:0 15px 40px rgba(255,111,0,0.5); /* Accent color shadow */
background:#2b1d1a;
}

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

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

.map-header h3{
font-size:26px;
font-weight:700;
margin-bottom:8px;
color:#1a1a1a;
}

.map-header p{
color:#777;
margin-bottom:25px;
}

/* MAP */

.map-container{
border-radius: var(--med-radius);
overflow: hidden;
border:1px solid #eee;

box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* MAP EFFECT */

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

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

/* ================= MOBILE ================= */

@media(max-width:768px){

.lux-contact-section{
padding:60px 15px;
}

.contact-title{
font-size:28px;
}

.contact-info-card,
.contact-form-card {
padding:25px;
}

.info-item{
gap:10px;
}

.info-item i{
width:35px;
height:35px;
font-size:16px;
}

}
/*--------------------------------------------------------------
# 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: var(--med-primary); /* Primary color for service list links */
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding-right: 15px; /* Ensure consistent padding */
  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; /* Keep as is */
  color: var(--med-secondary); /* Accent color for icons */
}

.service-details .services-list a.active {
  color: #fff; /* White text for active */
  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(--med-secondary), transparent 90%);
  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; /* Keep as is */
  color: var(--med-secondary); /* Accent color for icons */
}

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

.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; /* Keep as is */
  color: var(--med-secondary); /* Accent color for icons */
}

/*--------------------------------------------------------------