/* ==========================================================================
   Thuni Kada Brand Style Sheet - Creative Luxury Overhaul
   A blend of Kerala Elegance, Rajasthan Craftsmanship, and Modern Luxury Retail
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
  /* Brand Colors */
  --espresso-brown: #2A211B;
  --espresso-brown-rgb: 42, 33, 27;
  --olive-leaf: #6E7B52;
  --olive-leaf-light: #8E9C70;
  --burnt-saffron: #A84A2A;
  --burnt-saffron-rgb: 168, 74, 42;
  --ivory: #F6F1E9;
  --antique-gold: #B89B5E;
  --antique-gold-rgb: 184, 155, 94;
  --white: #FFFFFF;
  --light-gray: #EAE3D8;
  --dark-overlay: rgba(42, 33, 27, 0.45);
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* Transitions & Dynamics */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;
  --transition-luxury: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Layout Constants */
  --header-height: 90px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: initial; /* Lenis handles smooth scroll */
}

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--espresso-brown);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--ivory);
}
::-webkit-scrollbar-thumb {
  background: var(--espresso-brown);
  border: 2px solid var(--ivory);
  border-radius: var(--border-radius-md);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--antique-gold);
}

/* Selection Color */
::selection {
  background-color: var(--antique-gold);
  color: var(--white);
}

/* Helper Class for Lenis Smooth Scroll compatibility */
html.lenis {
  height: auto;
}
.lenis-scrollbar {
  display: none !important;
}

/* 2. Tactile Organic Noise Texture Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9998; /* Above visual layers, below loaders/preloaders */
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* 3. Luxury Saffron Preloader */
.luxury-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--burnt-saffron);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.luxury-preloader.loaded {
  transform: translateY(-100%);
}

.preloader-content {
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo {
  height: 80px;
  width: auto;
  margin-bottom: 10px;
  mix-blend-mode: screen;
}

.preloader-bar-wrapper {
  width: 200px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.preloader-bar {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--antique-gold);
  animation: loadingBar 2.5s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
}

@keyframes loadingBar {
  0% { left: -100%; }
  50% { left: 0%; }
  100% { left: 100%; }
}

.preloader-subtitle {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  font-style: italic;
  color: var(--ivory);
}

/* 4. Typography & Titles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
  font-family: var(--font-sans);
  font-weight: 300;
  color: rgba(42, 33, 27, 0.8);
}

strong {
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Editorial Serif Emphasis */
em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--burnt-saffron);
  text-transform: none;
}

/* Section Title Styling */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 30px;
}

.text-center-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--olive-leaf);
  display: block;
  margin-bottom: 12px;
}

.section-subtitle.light {
  color: var(--antique-gold);
}

.section-title {
  margin-bottom: 20px;
}

.text-espresso {
  color: var(--espresso-brown);
}

.title-divider {
  width: 60px;
  height: 2px;
  background-color: var(--antique-gold);
  margin-top: 15px;
}

.title-divider.center {
  margin: 15px auto 0 auto;
}

.title-divider.bg-burnt-saffron {
  background-color: var(--burnt-saffron);
}

/* 5. Navigation & Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(246, 241, 233, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(184, 155, 94, 0.15);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  height: 70px;
  background-color: rgba(42, 33, 27, 0.95);
  border-bottom: 1px solid rgba(184, 155, 94, 0.3);
}

.main-header.scrolled p, 
.main-header.scrolled .nav-link {
  color: var(--ivory);
}

.header-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-dark-text, .logo-light-text {
  height: 60px;
  width: auto;
  transition: var(--transition-smooth);
}

.logo-dark-text {
  mix-blend-mode: multiply;
}

.logo-light-text {
  mix-blend-mode: screen;
}

.main-header.scrolled .logo-dark-text {
  display: none !important;
}

.main-header.scrolled .logo-light-text {
  display: block !important;
  height: 44px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--espresso-brown);
  padding: 10px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--burnt-saffron);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.main-header.scrolled .nav-link::after {
  background-color: var(--antique-gold);
}

/* Button & Shimmer Effects */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 16px 36px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-nav {
  padding: 10px 24px;
  font-size: 0.75rem;
  background-color: var(--espresso-brown);
  color: var(--white);
}

.btn-nav:hover {
  background-color: var(--burnt-saffron);
  color: var(--white);
}

.main-header.scrolled .btn-nav {
  background-color: var(--burnt-saffron);
  color: var(--white);
}

.main-header.scrolled .btn-nav:hover {
  background-color: var(--ivory);
  color: var(--espresso-brown);
}

.btn-primary {
  background-color: var(--burnt-saffron);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(168, 74, 42, 0.2);
}

.btn-primary:hover {
  background-color: var(--espresso-brown);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(42, 33, 27, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--espresso-brown);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: var(--transition-luxury);
}

.btn-shimmer:hover::after {
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { left: -60%; }
  100% { left: 140%; }
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--espresso-brown);
  transition: var(--transition-fast);
  transform-origin: center;
}

.main-header.scrolled .menu-toggle span {
  background-color: var(--ivory);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--espresso-brown);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-luxury);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--ivory);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--antique-gold);
  transform: scale(1.05);
}

.btn-mobile-cta {
  margin-top: 20px;
  background-color: var(--burnt-saffron);
  color: var(--white);
  padding: 14px 30px;
}

/* 6. Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--espresso-brown); /* Prevents white flashes during loop reset */
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0; /* Fade in once playing begins to avoid sudden pop-in */
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-video.video-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      to bottom,
      rgba(15, 10, 7, 0.45) 0%,
      rgba(20, 13, 9, 0.25) 40%,
      rgba(20, 13, 9, 0.35) 70%,
      rgba(10, 6, 4, 0.60) 100%
    );
  z-index: 2;
}

/* Fabric Overlays */
.fabric-overlay-1,
.fabric-overlay-2 {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  opacity: 0.15;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background-size: cover;
  transition: var(--transition-luxury);
}

.fabric-overlay-1 {
  background: radial-gradient(circle, rgba(184, 155, 94, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  animation: floatFabric 20s infinite alternate ease-in-out;
}

.fabric-overlay-2 {
  background: linear-gradient(135deg, rgba(110, 123, 82, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
  animation: floatFabric 25s infinite alternate-reverse ease-in-out;
}

@keyframes floatFabric {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  100% { transform: translateY(-5%) rotate(5deg) scale(1.05); }
}

.hero-content-container {
  position: relative;
  z-index: 4;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
  margin-top: 60px;
}

.hero-tagline-wrapper {
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-tagline {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: #FFE9AD;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  margin-bottom: 25px;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 3px 18px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.5);
}

.hero-title span {
  display: block;
  overflow: hidden;
}

/* First line: "Pure Cotton Elegance," — #FFE9AD */
.hero-title span:first-child,
.hero-title span:first-child em {
  color: #FFE9AD;
  text-shadow: 0 2px 20px rgba(255, 233, 173, 0.3), 0 1px 4px rgba(0,0,0,0.5);
}

/* Second line: "Crafted by Hand" — pure white */
.hero-title span:last-child {
  color: var(--white);
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.5);
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.badge-icon {
  width: 16px;
  height: 16px;
  color: var(--antique-gold);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: var(--burnt-saffron);
  animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
  0% { top: -15px; }
  100% { top: 50px; }
}

/* 7. Heritage Story Section */
.heritage-story {
  background-color: var(--white);
  position: relative;
}

.split-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

.split-left, .split-right {
  flex: 1;
}

.image-grid-wrapper {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-box {
  position: absolute;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(42, 33, 27, 0.1);
  transition: var(--transition-luxury);
}

.primary-box {
  width: 75%;
  height: 80%;
  top: 0;
  left: 0;
  z-index: 1;
}

.accent-box {
  width: 55%;
  height: 60%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 4px solid var(--white);
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-luxury);
}

.image-box:hover .story-img {
  transform: scale(1.08);
}

.story-fabric-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background-color: var(--espresso-brown);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  border-left: 3px solid var(--antique-gold);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.emb-badge-img {
  height: 36px;
  width: auto;
  mix-blend-mode: screen; /* Blends white brand logo transparently */
}

.story-fabric-badge span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.content-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.story-text {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.story-text.highlighted {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--burnt-saffron);
  font-weight: 400;
}

.story-action {
  margin-top: 15px;
}

.link-arrow {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive-leaf);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-arrow i {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.link-arrow:hover {
  color: var(--burnt-saffron);
}

.link-arrow:hover i {
  transform: translateX(5px);
}

/* 8. Why Choose Thuni Kada (Interactive Split Screen Hover Showcase) */
.why-choose-section {
  background-color: var(--ivory);
  border-top: 1px solid rgba(184, 155, 94, 0.15);
  border-bottom: 1px solid rgba(184, 155, 94, 0.15);
  overflow: visible;
}

#why-us .split-left {
  flex: 1.1;
  align-self: center;
}

#why-us .split-right {
  flex: 1.9;
}

.feature-titles-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-titles-column .title-divider {
  margin-left: auto;
  margin-right: auto;
}

.feature-titles-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px; /* Ultra-condensed gap */
  margin-top: 25px;
  width: 100%;
}

.feature-title-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 16px; /* Ultra-condensed padding */
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 320px;
}

.feature-title-item.active {
  background-color: rgba(184, 155, 94, 0.04);
}

.feature-title-item .feature-num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: rgba(184, 155, 94, 0.5);
  margin-bottom: 0px; /* Zero margin */
}

.feature-title-item.active .feature-num {
  color: var(--burnt-saffron);
}

.feature-title-item h3 {
  font-size: 1.15rem;
  font-weight: 500;
  font-family: var(--font-serif);
  color: rgba(42, 33, 27, 0.7);
  transition: color 0.3s ease;
}

.feature-title-item.active h3 {
  color: var(--espresso-brown);
  font-weight: 600;
}

.tab-progress-line {
  width: 100%;
  height: 2px;
  background-color: rgba(184, 155, 94, 0.1);
  margin-top: 4px; /* Condensed margin */
  border-radius: 1px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-title-item.active .tab-progress-line {
  opacity: 1;
}

.tab-progress-fill {
  width: 0%;
  height: 100%;
  background-color: var(--burnt-saffron);
}

/* Right Column: Large blended images + description */
.feature-display-column {
  display: flex;
  flex-direction: column;
}

.feature-slides-wrapper {
  position: relative;
  width: 100%;
  height: 690px; /* Balanced height for equal padding on top and bottom */
}

.feature-slide-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s ease;
}

.feature-slide-layer.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.mobile-slide-title {
  display: none; /* Desktop hidden */
}

.why-image-container {
  position: relative;
  width: 100%;
  height: 580px; /* Made picture bigger and taller */
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(42, 33, 27, 0.08);
}

.why-image-container .poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-slide-layer.active .poster-img {
  transform: scale(1);
}

/* Linear gradient blend overlay to ivory background */
.why-image-blend-overlay {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to bottom, rgba(246, 241, 233, 0) 0%, var(--ivory) 100%);
  pointer-events: none;
}

.why-desc-box {
  padding: 24px 10px;
  flex-grow: 1;
}

.why-desc-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--espresso-brown);
  font-family: var(--font-sans);
  font-weight: 300;
  text-align: center;
}

.mobile-slideshow-dots {
  display: none; /* Desktop hidden */
}

/* 9. Horizontal Scroll Category Track */
.collection-horizontal-section {
  position: relative;
  width: 100%;
  background-color: var(--white);
  overflow: hidden;
}

.horizontal-scroll-container {
  position: relative;
  width: 100%;
}

.horizontal-scroll-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  height: 100vh;
  align-items: center;
  padding: 0 100px;
}

.horizontal-info-card {
  width: 380px;
  margin-right: 120px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.horizontal-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 25px;
  margin-bottom: 40px;
}

.scroll-horizontal-hint {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--olive-leaf);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.arrow-swipe {
  width: 16px;
  height: 16px;
  animation: swipeLeftRight 1.5s infinite alternate ease-in-out;
}

@keyframes swipeLeftRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(8px); }
}

.horizontal-track {
  display: flex;
  gap: 40px;
  height: 70%;
}

.horizontal-category-card {
  width: 320px;
  height: 100%;
  flex-shrink: 0;
  background-color: var(--ivory);
  border: 1px solid rgba(184, 155, 94, 0.15);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(42, 33, 27, 0.02);
}

.category-image-container {
  position: relative;
  width: 100%;
  height: 65%;
  overflow: hidden;
}

.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  background-color: var(--burnt-saffron);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.category-details {
  padding: 25px;
  background-color: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-top: 1px solid rgba(184, 155, 94, 0.12);
}

.category-details h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--espresso-brown);
  margin-bottom: 8px;
}

.category-details p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(42, 33, 27, 0.65);
  margin-bottom: 0;
}

.btn-editorial {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--burnt-saffron);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-editorial i {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

/* Category Hover */
.horizontal-category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 155, 94, 0.4);
  box-shadow: 0 20px 40px rgba(42, 33, 27, 0.08);
}

.horizontal-category-card:hover .cat-img {
  transform: scale(1.08);
}

.horizontal-category-card:hover .btn-editorial i {
  transform: translate(2px, -2px);
}

/* 10. Craftsmanship Sticky Split Scroll Styles */
.craftsmanship-section {
  background-color: var(--ivory);
  border-top: 1px solid rgba(184, 155, 94, 0.15);
  border-bottom: 1px solid rgba(184, 155, 94, 0.15);
  position: relative;
  padding: 60px 0;
}

.craftsmanship-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr; /* Balanced columns */
  grid-template-areas: 
    "visual header"
    "visual timeline";
  gap: 0 80px;
  align-items: start;
}

.craft-header-block {
  grid-area: header;
  margin-bottom: 40px;
  max-width: 100%;
}

.craftsmanship-intro-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(42, 33, 27, 0.75);
  margin-top: 20px;
  font-family: var(--font-sans);
  font-weight: 300;
}

.sticky-visual-column {
  grid-area: visual;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.scroll-steps-list {
  grid-area: timeline;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sticky-visual-wrapper {
  position: sticky;
  top: calc(50vh - 240px); /* Centers the square when it reaches middle of screen */
  width: 480px;
  height: 480px; /* Perfect square aspect ratio */
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(42, 33, 27, 0.15);
  border: 1px solid rgba(184, 155, 94, 0.2);
}

.craft-visual-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #000;
}

.craft-visual-layer.active {
  opacity: 1;
  z-index: 2;
}

.craft-video, .craft-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.craft-location-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background-color: rgba(42, 33, 27, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  border-left: 2px solid var(--antique-gold);
  z-index: 3;
}

.visual-border-frame {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 3;
}

.steps-scroll-column {
  display: flex;
  flex-direction: column;
}

.scroll-steps-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 50px;
  padding-bottom: 200px;
}

.scroll-step-block {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(184, 155, 94, 0.12);
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  position: relative;
  transition: var(--transition-smooth);
  opacity: 0.55;
  transform: scale(0.97);
}

.scroll-step-block.active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(184, 155, 94, 0.35);
  box-shadow: 0 15px 30px rgba(42, 33, 27, 0.05);
}

.step-num-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(110, 123, 82, 0.08);
  color: var(--olive-leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.scroll-step-block.active .step-num-circle {
  background-color: var(--burnt-saffron);
  color: var(--white);
}

.scroll-step-block h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--espresso-brown);
  margin-bottom: 12px;
}

.scroll-step-block.active h3 {
  color: var(--burnt-saffron);
}

.scroll-step-block p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 11. Kerala Climate Advantage */
.climate-advantage-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.climate-bg-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.climate-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.climate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(42, 33, 27, 0.85) 0%, rgba(42, 33, 27, 0.4) 100%);
  z-index: 2;
}

.climate-content-container {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

.advantage-box {
  max-width: 550px;
  color: var(--white);
}

.advantage-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.advantage-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--antique-gold);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 5px;
}

.climate-advantage-section .section-subtitle.light {
  color: #FFE9AD;
}

.climate-advantage-section .section-title em {
  color: #FFE9AD;
}

.climate-advantage-section .stat-number {
  color: #FFE9AD;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.text-white {
  color: var(--white);
}

/* 12. Testimonials */
.testimonials-section {
  background-color: var(--white);
  overflow: hidden;
}

.testimonials-marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 30px 0;
  position: relative;
}

/* Luxury fading borders */
.testimonials-marquee-container::before,
.testimonials-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.testimonials-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonials-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee-scroll-left 45s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  width: 380px;
  min-width: 380px;
  padding: 35px;
  background-color: var(--burnt-saffron);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(42, 33, 27, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
}

.quote-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burnt-saffron);
  margin-bottom: 20px;
}

.quote-icon {
  width: 18px;
  height: 18px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 20px;
  font-style: italic;
  flex-grow: 1;
}

.rating-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.star-icon {
  width: 14px;
  height: 14px;
}

.star-icon.filled {
  fill: url(#gold-grad) !important;
  color: url(#gold-grad) !important;
  stroke: none !important;
  filter: drop-shadow(0 0 2px rgba(255, 249, 230, 0.55)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25)) !important;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.author-location {
  font-size: 0.8rem;
  color: #FFE9AD;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid rgba(184, 155, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--espresso-brown);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background-color: var(--espresso-brown);
  color: var(--white);
  border-color: var(--espresso-brown);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(184, 155, 94, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--burnt-saffron);
  transform: scale(1.3);
}

/* 13. Visit Our Store Section */
.visit-store-section {
  background-color: var(--ivory);
  border-top: 1px solid rgba(184, 155, 94, 0.15);
}

.store-intro-text {
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.store-details-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  margin-bottom: 40px;
}

.store-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.detail-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border-radius: 50%;
  border: 1px solid rgba(184, 155, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burnt-saffron);
  flex-shrink: 0;
}

.detail-icon {
  width: 20px;
  height: 20px;
}

.detail-text-content h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--olive-leaf);
  margin-bottom: 4px;
}

.detail-text-content p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.store-link {
  color: var(--espresso-brown);
  font-weight: 500;
}

.store-link:hover {
  color: var(--burnt-saffron);
}

.store-cta-group {
  display: flex;
  gap: 15px;
}

.btn-icon-inside {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

/* Custom Theme Song Player Widget */
.theme-song-player-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.theme-card-player {
  background-color: var(--white);
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(184, 155, 94, 0.2);
  box-shadow: 0 15px 30px rgba(42, 33, 27, 0.05);
  padding: 30px 8px;
}

.theme-player-header {
  margin-bottom: 20px;
  padding: 0 20px;
}

.player-accent-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--burnt-saffron);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.music-mini-icon {
  width: 12px;
  height: 12px;
}

.theme-player-header h3 {
  font-size: 1.50rem;
  color: var(--espresso-brown);
}

.video-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.player-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-controls-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 33, 27, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

/* Hide controls by default when playing */
.video-player-container.playing .player-controls-overlay {
  opacity: 0;
  pointer-events: none;
  background-color: rgba(42, 33, 27, 0.55);
}

/* Show controls on hover, touch active states, or show-controls class toggle */
.video-player-container.playing:hover .player-controls-overlay,
.video-player-container.playing:active .player-controls-overlay,
.video-player-container.playing.show-controls .player-controls-overlay {
  opacity: 1;
  pointer-events: auto;
}

.player-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--burnt-saffron);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}

.player-play-btn:hover {
  transform: scale(1.1);
  background-color: var(--antique-gold);
}

.play-icon-svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-left: 2px;
}

.custom-audio-controller {
  margin-top: 20px;
  padding: 0 20px;
}

.audio-controls-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.audio-action-btn {
  background: none;
  border: none;
  color: var(--espresso-brown);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-icon-svg {
  width: 18px;
  height: 18px;
}

.audio-progress-bar-wrapper {
  flex-grow: 1;
  height: 4px;
  background-color: var(--light-gray);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.audio-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--burnt-saffron);
  border-radius: 2px;
}

.audio-time-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(42, 33, 27, 0.6);
  font-weight: 500;
  min-width: 32px;
}

.theme-description {
  margin-top: 15px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(42, 33, 27, 0.6);
  border-top: 1px dashed rgba(184, 155, 94, 0.2);
  padding-top: 12px;
}

/* 14. FAQ Section (SEO Gold) */
.faq-section {
  background-color: var(--white);
  border-bottom: 1px solid rgba(184, 155, 94, 0.1);
}

.max-w-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid rgba(184, 155, 94, 0.2);
  border-radius: var(--border-radius-sm);
  background-color: var(--ivory);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(184, 155, 94, 0.5);
}

.faq-trigger {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-trigger span[itemprop="name"] {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--espresso-brown);
  padding-right: 20px;
}

.faq-chevron-icon {
  color: var(--antique-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.faq-chevron-icon i {
  width: 20px;
  height: 20px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 30px 24px 30px;
  border-top: 1px dashed rgba(184, 155, 94, 0.15);
  padding-top: 20px;
}

.faq-content-inner p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-chevron-icon {
  transform: rotate(180deg);
}

/* 15. SEO Content Blocks */
.seo-supporting-content {
  background-color: var(--white);
  border-top: 1px solid rgba(184, 155, 94, 0.12);
}

.seo-supporting-content .section-container {
  padding: 60px 30px;
}

.seo-primary-heading {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--olive-leaf);
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
}

.seo-supporting-text {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* 16. Footer */
.main-footer {
  background-color: var(--espresso-brown);
  color: var(--ivory);
  border-top: 3px solid var(--antique-gold);
}

.main-footer p {
  color: rgba(246, 241, 233, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding: 80px 30px 60px 30px;
}

.brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo {
  height: 55px;
  width: auto;
  mix-blend-mode: screen;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-icon-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(246, 241, 233, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  transition: var(--transition-fast);
}

.social-icon-link:hover {
  background-color: var(--burnt-saffron);
  color: var(--white);
  transform: translateY(-2px);
}

.social-icon-link i {
  width: 18px;
  height: 18px;
}

.links-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-transform: uppercase;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: rgba(246, 241, 233, 0.75);
}

.footer-links-list a:hover {
  color: var(--antique-gold);
  padding-left: 5px;
}

.contact-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(246, 241, 233, 0.7);
  line-height: 1.6;
}

.footer-phone, .footer-email {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-phone a, .footer-email a {
  color: rgba(246, 241, 233, 0.85);
}

.footer-phone a:hover, .footer-email a:hover {
  color: var(--burnt-saffron);
}

.footer-mini-icon {
  width: 14px;
  height: 14px;
  color: var(--antique-gold);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(246, 241, 233, 0.1);
  padding: 30px 0;
  background-color: #1F1813;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.copyright-text {
  font-size: 0.8rem;
}

.footer-legal-links {
  font-size: 0.8rem;
  color: var(--antique-gold);
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
}

/* 17. Media Queries & Responsiveness */

/* Tablet Layout (max-width: 1024px) */
@media (max-width: 1024px) {
  .split-layout {
    gap: 50px;
  }
  
  .sticky-poster-column {
    height: 500px;
  }
  
  .sticky-poster-wrapper {
    height: 380px;
  }
  
  .sticky-visual-column {
    height: 550px;
  }
  
  .sticky-visual-wrapper {
    height: 380px;
  }
  
  .horizontal-scroll-wrapper {
    height: auto;
    width: 100%;
    flex-direction: column;
    padding: 100px 30px;
  }
  
  .horizontal-info-card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }
  
  .scroll-horizontal-hint {
    display: none;
  }
  
  .horizontal-track {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
  
  .horizontal-category-card {
    width: calc(50% - 15px);
    height: 480px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }
  
  .contact-col {
    grid-column: span 3;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .contact-col h4 {
    width: 100%;
  }
}

/* Mobile Layout (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .nav-menu, .header-cta-wrapper {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .split-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .split-left, .split-right {
    width: 100%;
  }
  
  /* Feature List Mobile overrides */
  .feature-titles-column {
    display: none !important;
  }
  
  .feature-display-column {
    width: 100% !important;
  }
  
  .feature-slides-wrapper {
    height: auto !important;
    display: flex;
    flex-direction: column;
  }
  
  .feature-slide-layer {
    position: relative !important;
    display: none !important;
    width: 100% !important;
    height: auto !important;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .feature-slide-layer.active {
    display: flex !important;
    opacity: 1;
    z-index: 5;
  }
  
  .mobile-slide-title {
    display: flex !important;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .mobile-slide-title .feature-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--burnt-saffron);
    font-weight: 700;
  }
  
  .mobile-slide-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--espresso-brown);
  }
  
  .why-image-container {
    height: 340px !important;
  }
  
  .why-image-blend-overlay {
    height: 100px !important;
  }
  
  .why-desc-box {
    padding: 20px 0 !important;
  }
  
  .why-desc-box p {
    font-size: 1rem !important;
  }
  
  .mobile-slideshow-dots {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
  }
  
  .mobile-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(184, 155, 94, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .mobile-dot.active {
    background-color: var(--burnt-saffron);
    transform: scale(1.25);
  }

  /* Collections Mobile overrides */
  .horizontal-category-card {
    width: 100%;
    height: 420px;
  }

  /* Craftsmanship Split Scroll Mobile overrides */
  .craftsmanship-section {
    padding: 30px 0 !important;
  }

  .craftsmanship-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0px !important;
  }
  
  .craft-header-block {
    order: 1;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
  }
  
  .craft-header-block .title-divider {
    margin: 15px auto;
  }
  
  .craftsmanship-intro-text {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    text-align: center;
    margin-top: 15px;
  }

  .sticky-visual-column {
    order: 2;
    position: sticky !important;
    top: 70px !important; /* Stays below mobile header */
    height: 280px !important;
    width: 100% !important;
    z-index: 90 !important;
    background-color: var(--ivory);
    padding: 10px 0 !important;
    margin-bottom: 25px !important;
    display: flex !important;
  }
  
  .sticky-visual-wrapper {
    position: relative !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 25px rgba(42, 33, 27, 0.1);
  }
  
  .scroll-steps-list {
    order: 3;
    gap: 30px;
    padding-bottom: 50px;
    margin-top: 20px;
    width: 100%;
  }
  
  .scroll-step-block {
    padding: 30px 20px;
    opacity: 1;
    transform: none;
  }
  
  .scroll-step-block.active {
    box-shadow: none;
  }

  .image-grid-wrapper {
    height: 250px !important;
    width: 100% !important;
    margin-bottom: 40px !important;
    position: relative !important;
    order: -1 !important; /* Place on top of the section in mobile view */
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    justify-content: space-between !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .image-grid-wrapper .image-box {
    display: block !important;
    position: relative !important;
    width: 48% !important;
    height: 220px !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    right: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 10px 25px rgba(42, 33, 27, 0.08) !important;
  }
  
  .image-grid-wrapper .image-box img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: cover !important;
  }
  
  .image-grid-wrapper .primary-box {
    margin-top: 0 !important;
  }

  .image-grid-wrapper .accent-box {
    margin-top: 25px !important; /* Premium asymmetrical shift */
    border: 2px solid var(--white) !important;
  }
  
  .story-fabric-badge {
    position: absolute !important;
    bottom: -15px !important;
    left: 10px !important; /* Shift to prevent clipping on mobile viewports */
    padding: 8px 14px !important;
    z-index: 5 !important;
    display: flex !important;
  }
  
  .climate-advantage-section {
    height: auto;
  }
  
  .climate-content-container {
    padding: 80px 30px;
  }
  
  .advantage-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-quote {
    font-size: 1.25rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-col {
    grid-column: span 1;
    flex-direction: column;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.whatsapp-btn {
  background-color: var(--espresso-brown);
  border: 1px solid rgba(184, 155, 94, 0.25);
  color: var(--ivory);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  background-color: var(--burnt-saffron);
  color: var(--white);
  border-color: var(--burnt-saffron);
}

.whatsapp-btn svg {
  width: 18px;
  height: 18px;
}

.gototop-btn {
  background-color: rgba(246, 241, 233, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 155, 94, 0.25);
  color: var(--espresso-brown);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gototop-btn.light-contrast {
  background-color: rgba(42, 33, 27, 0.35);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.gototop-btn.show {
  opacity: 1;
  visibility: visible;
}

.gototop-btn.show:hover {
  transform: translateY(-3px);
  background-color: var(--burnt-saffron);
  border-color: var(--burnt-saffron);
  color: var(--white);
}

.gototop-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
}
