/* Render-blocking Google Fonts import removed and moved to HTML head for optimal performance */

/* --- CUSTOM VARIABLES --- */
:root {
  --primary-dark: #0A0B0D;
  --secondary-dark: #121417;
  --tertiary-dark: #1C1E22;
  --accent: #C5A880;
  --accent-light: #DFCDAF;
  --accent-dark: #A58B65;
  --text-white: #FFFFFF;
  --text-light: #F4F4F6;
  --text-muted: #8E8E93;
  --text-dark: #1C1C1E;
  --text-dark-muted: #636366;
  --light-bg: #F7F7F8;
  --light-card: #FFFFFF;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.02);
  --bg-glass-active: rgba(255, 255, 255, 0.06);
  
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Syne', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.3);
  --shadow-light: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 30px rgba(197, 168, 128, 0.15);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  
  --max-width: 1400px;
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--primary-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

button, input, textarea, select {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--tertiary-dark);
  border-radius: var(--border-radius-full);
  border: 2px solid var(--primary-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* --- PRELOADER (Dynamic Sewing Scissor & Quad Fabric Split Transitions) --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: transparent;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader:not(.active) {
  pointer-events: auto;
}
.preloader-panel {
  position: absolute;
  background: var(--primary-dark);
  z-index: -1;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: auto;
}

/* 1. 3D ORIGAMI FABRIC GATE FOLD (style-origami) */
#preloader.style-origami {
  perspective: 1500px;
}
#preloader.style-origami .preloader-panel {
  width: 50%;
  height: 50%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8) inset;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.3s ease, filter 1.3s ease;
}
#preloader.style-origami .p-top-left {
  top: 0;
  left: 0;
  transform-origin: left center;
  border-right: 1px dashed rgba(197, 168, 128, 0.15);
  border-bottom: 1px dashed rgba(197, 168, 128, 0.15);
}
#preloader.style-origami .p-top-right {
  top: 0;
  right: 0;
  transform-origin: right center;
  border-left: 1px dashed rgba(197, 168, 128, 0.15);
  border-bottom: 1px dashed rgba(197, 168, 128, 0.15);
}
#preloader.style-origami .p-bottom-left {
  bottom: 0;
  left: 0;
  transform-origin: left center;
  border-right: 1px dashed rgba(197, 168, 128, 0.15);
  border-top: 1px dashed rgba(197, 168, 128, 0.15);
}
#preloader.style-origami .p-bottom-right {
  bottom: 0;
  right: 0;
  transform-origin: right center;
  border-left: 1px dashed rgba(197, 168, 128, 0.15);
  border-top: 1px dashed rgba(197, 168, 128, 0.15);
}

/* Origami Active Dismissal - dynamic folding fabric gate */
#preloader.style-origami.active .p-top-left,
#preloader.style-origami.active .p-bottom-left {
  transform: rotateY(-95deg) scaleX(0.8) skewY(3deg);
  opacity: 0;
  filter: brightness(0.2) blur(3px);
}
#preloader.style-origami.active .p-top-right,
#preloader.style-origami.active .p-bottom-right {
  transform: rotateY(95deg) scaleX(0.8) skewY(-3deg);
  opacity: 0;
  filter: brightness(0.2) blur(3px);
}

/* Origami Dragging State */
#preloader.style-origami.dragging .p-top-left,
#preloader.style-origami.dragging .p-bottom-left {
  transform: rotateY(calc(var(--drag-progress) * -95deg)) scaleX(calc(1 - var(--drag-progress) * 0.2)) skewY(calc(var(--drag-progress) * 3deg));
  transition: none;
}
#preloader.style-origami.dragging .p-top-right,
#preloader.style-origami.dragging .p-bottom-right {
  transform: rotateY(calc(var(--drag-progress) * 95deg)) scaleX(calc(1 - var(--drag-progress) * 0.2)) skewY(calc(var(--drag-progress) * -3deg));
  transition: none;
}

/* 2. DYNAMIC HIGH-TENSION FABRIC SPLIT (style-elastic-peel) */
#preloader.style-elastic-peel .preloader-panel {
  width: 50%;
  height: 50%;
  transition: transform 1.6s cubic-bezier(0.68, -0.6, 0.27, 1.55), filter 1.4s ease;
}
#preloader.style-elastic-peel .p-top-left {
  top: 0;
  left: 0;
  border-right: 1px dashed rgba(197, 168, 128, 0.15);
  border-bottom: 1px dashed rgba(197, 168, 128, 0.15);
}
#preloader.style-elastic-peel .p-top-right {
  top: 0;
  right: 0;
  border-left: 1px dashed rgba(197, 168, 128, 0.15);
  border-bottom: 1px dashed rgba(197, 168, 128, 0.15);
}
#preloader.style-elastic-peel .p-bottom-left {
  bottom: 0;
  left: 0;
  border-right: 1px dashed rgba(197, 168, 128, 0.15);
  border-top: 1px dashed rgba(197, 168, 128, 0.15);
}
#preloader.style-elastic-peel .p-bottom-right {
  bottom: 0;
  right: 0;
  border-left: 1px dashed rgba(197, 168, 128, 0.15);
  border-top: 1px dashed rgba(197, 168, 128, 0.15);
}

/* Elastic Split - pulls to corners with spring-like snap skew */
#preloader.style-elastic-peel.active .p-top-left {
  transform: translate(-100%, -50%) skewX(-8deg);
  filter: blur(2px);
}
#preloader.style-elastic-peel.active .p-top-right {
  transform: translate(100%, -50%) skewX(8deg);
  filter: blur(2px);
}
#preloader.style-elastic-peel.active .p-bottom-left {
  transform: translate(-100%, 50%) skewX(8deg);
  filter: blur(2px);
}
#preloader.style-elastic-peel.active .p-bottom-right {
  transform: translate(100%, 50%) skewX(-8deg);
  filter: blur(2px);
}

/* Elastic Peel Dragging State */
#preloader.style-elastic-peel.dragging .p-top-left {
  transform: translate(calc(var(--drag-progress) * -100%), calc(var(--drag-progress) * -50%)) skewX(calc(var(--drag-progress) * -8deg));
  transition: none;
}
#preloader.style-elastic-peel.dragging .p-top-right {
  transform: translate(calc(var(--drag-progress) * 100%), calc(var(--drag-progress) * -50%)) skewX(calc(var(--drag-progress) * 8deg));
  transition: none;
}
#preloader.style-elastic-peel.dragging .p-bottom-left {
  transform: translate(calc(var(--drag-progress) * -100%), calc(var(--drag-progress) * 50%)) skewX(calc(var(--drag-progress) * 8deg));
  transition: none;
}
#preloader.style-elastic-peel.dragging .p-bottom-right {
  transform: translate(calc(var(--drag-progress) * 100%), calc(var(--drag-progress) * 50%)) skewX(calc(var(--drag-progress) * -8deg));
  transition: none;
}

/* 3. STAGGERED THREAD DIAGONAL UNRAVEL (style-diagonal-unravel) */
#preloader.style-diagonal-unravel .preloader-panel {
  width: 50%;
  height: 50%;
  border: 1px dashed rgba(197, 168, 128, 0.12);
}
#preloader.style-diagonal-unravel .p-top-left {
  top: 0;
  left: 0;
  transition: transform 1.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms, filter 1.3s ease 0ms;
}
#preloader.style-diagonal-unravel .p-top-right {
  top: 0;
  right: 0;
  transition: transform 1.4s cubic-bezier(0.77, 0, 0.175, 1) 120ms, filter 1.3s ease 120ms;
}
#preloader.style-diagonal-unravel .p-bottom-right {
  bottom: 0;
  right: 0;
  transition: transform 1.4s cubic-bezier(0.77, 0, 0.175, 1) 240ms, filter 1.3s ease 240ms;
}
#preloader.style-diagonal-unravel .p-bottom-left {
  bottom: 0;
  left: 0;
  transition: transform 1.4s cubic-bezier(0.77, 0, 0.175, 1) 360ms, filter 1.3s ease 360ms;
}

/* Asymmetric Unravel active state */
#preloader.style-diagonal-unravel.active .p-top-left {
  transform: translate(-100%, -100%) rotate(-12deg);
  filter: saturate(0.5) blur(1px);
}
#preloader.style-diagonal-unravel.active .p-top-right {
  transform: translate(100%, -100%) rotate(12deg);
  filter: saturate(0.5) blur(1px);
}
#preloader.style-diagonal-unravel.active .p-bottom-right {
  transform: translate(100%, 100%) rotate(-12deg);
  filter: saturate(0.5) blur(1px);
}
#preloader.style-diagonal-unravel.active .p-bottom-left {
  transform: translate(-100%, 100%) rotate(12deg);
  filter: saturate(0.5) blur(1px);
}

/* Diagonal Unravel Dragging State */
#preloader.style-diagonal-unravel.dragging .p-top-left {
  transform: translate(calc(var(--drag-progress) * -100%), calc(var(--drag-progress) * -100%)) rotate(calc(var(--drag-progress) * -12deg));
  transition: none;
}
#preloader.style-diagonal-unravel.dragging .p-top-right {
  transform: translate(calc(var(--drag-progress) * 100%), calc(var(--drag-progress) * -100%)) rotate(calc(var(--drag-progress) * 12deg));
  transition: none;
}
#preloader.style-diagonal-unravel.dragging .p-bottom-right {
  transform: translate(calc(var(--drag-progress) * 100%), calc(var(--drag-progress) * 100%)) rotate(calc(var(--drag-progress) * -12deg));
  transition: none;
}
#preloader.style-diagonal-unravel.dragging .p-bottom-left {
  transform: translate(calc(var(--drag-progress) * -100%), calc(var(--drag-progress) * 100%)) rotate(calc(var(--drag-progress) * 12deg));
  transition: none;
}

#preloader.active {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease 0.5s, visibility 0.8s ease 0.5s;
}

.preloader-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 10;
}
#preloader.active .preloader-content {
  opacity: 0;
}

.scissor-loader-container {
  position: relative;
  width: 300px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.stitch-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 2.5px dashed rgba(197, 168, 128, 0.4);
  z-index: 1;
}
.scissor-wrapper {
  position: absolute;
  left: 0;
  z-index: 2;
  transform: translateY(-2px);
  animation: scissorMove 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.loader-scissor-svg {
  transform: scale(0.65);
}
.blade-top {
  transform-origin: 45px 50px;
  animation: cutTop 0.25s ease-in-out infinite alternate;
}
.blade-bottom {
  transform-origin: 45px 50px;
  animation: cutBottom 0.25s ease-in-out infinite alternate;
}

@keyframes cutTop {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(20deg); }
}
@keyframes cutBottom {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-20deg); }
}
@keyframes scissorMove {
  0% {
    left: -20px;
    opacity: 0;
  }
  10% {
    left: 0px;
    opacity: 1;
  }
  85% {
    left: 240px;
    opacity: 1;
  }
  95% {
    left: 280px;
    opacity: 0;
  }
  100% {
    left: -20px;
    opacity: 0;
  }
}

.loader-text {
  font-family: var(--font-headings);
  letter-spacing: 0.3em;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.85rem;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}


/* --- YARN SPOOL & SEWING NEEDLE LOADING ANIMATION --- */
.textile-loader-container {
  position: relative;
  width: 320px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}
.spool-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  animation: spoolVibe 2s ease-in-out infinite alternate;
}
.thread-wave-container {
  position: relative;
  flex: 1;
  height: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0 -5px;
}
.loader-thread-svg {
  width: 100%;
  height: 100%;
}
.thread-line {
  stroke-dasharray: 12 8;
  animation: flowThread 1.5s linear infinite;
}
.fabric-base-line {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(197, 168, 128, 0.25);
  border-radius: var(--border-radius-full);
}
.needle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 90px;
  animation: needleStitch 0.4s ease-in-out infinite alternate;
}
.loader-spool-svg {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}
.loader-needle-svg {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

@keyframes spoolVibe {
  0% {
    transform: rotate(-4deg) translateY(-2px);
  }
  100% {
    transform: rotate(4deg) translateY(2px);
  }
}
@keyframes flowThread {
  from {
    stroke-dashoffset: 40;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes needleStitch {
  0% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(8px);
  }
}

/* --- INTERACTIVE PRELOADER STYLES --- */




/* Pulsing prompt to interact */
.preloader-interactive-prompt {
  font-family: var(--font-headings);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 20px;
  text-align: center;
  pointer-events: none;
  animation: promptPulse 1.8s ease-in-out infinite;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.preloader-interactive-prompt i {
  animation: arrowSlide 1s ease-in-out infinite alternate;
}
@keyframes promptPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}
@keyframes arrowSlide {
  0% { transform: translateX(-3px); }
  100% { transform: translateX(3px); }
}

/* Scissor track/drag rules */
.scissor-loader-container.interactive {
  width: 320px;
  height: 85px;
  border-radius: var(--border-radius-full);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0 10px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4);
}
.scissor-wrapper.interactive {
  animation: none;
  cursor: grab;
  pointer-events: auto;
  left: 0;
  transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.scissor-wrapper.interactive:active {
  cursor: grabbing;
}
.scissor-wrapper.interactive.dragging {
  transition: none;
}
/* Blades anim triggers */
.scissor-wrapper.interactive.moving .blade-top {
  animation: cutTop 0.15s ease-in-out infinite alternate;
}
.scissor-wrapper.interactive.moving .blade-bottom {
  animation: cutBottom 0.15s ease-in-out infinite alternate;
}
.scissor-wrapper.interactive:not(.moving) .blade-top,
.scissor-wrapper.interactive:not(.moving) .blade-bottom {
  animation: none;
}

/* Needle/Spool drag rules */
.textile-loader-container.interactive {
  width: 340px;
  height: 100px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0 15px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4);
  justify-content: flex-start;
}
.textile-loader-container.interactive .spool-wrapper {
  position: absolute;
  left: 15px;
}
.textile-loader-container.interactive .thread-wave-container {
  position: absolute;
  left: 95px;
  width: 0px; /* Expands as we drag */
  max-width: 145px;
}
.needle-wrapper.interactive {
  position: absolute;
  left: 95px;
  animation: none;
  cursor: grab;
  pointer-events: auto;
  transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.needle-wrapper.interactive:active {
  cursor: grabbing;
}
.needle-wrapper.interactive.dragging {
  transition: none;
}
.needle-wrapper.interactive.moving {
  animation: needleStitch 0.2s ease-in-out infinite alternate;
}
.needle-wrapper.interactive:not(.moving) {
  animation: none;
}

/* Preloader Particles & Glow Styles */
.preloader-particle {
  position: absolute;
  background: radial-gradient(circle, var(--accent-light) 0%, var(--accent) 70%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  box-shadow: 0 0 8px var(--accent);
}

.scissor-wrapper.interactive, .needle-wrapper.interactive {
  transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
}

.scissor-wrapper.interactive:hover, .needle-wrapper.interactive:hover {
  filter: drop-shadow(0 0 10px var(--accent));
}

.scissor-wrapper.interactive.dragging, .needle-wrapper.interactive.dragging {
  filter: drop-shadow(0 0 16px var(--accent-light));
  cursor: grabbing;
}

.preloader-interactive-prompt span {
  font-family: var(--font-headings);
  font-weight: 700;
}

.scissor-loader-container.interactive:hover, .textile-loader-container.interactive:hover {
  border-color: rgba(197, 168, 128, 0.2);
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.5), 0 0 15px rgba(197, 168, 128, 0.05);
}

/* --- UTILITY CLASSES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-padding {
  padding: 8rem 0;
}
.section-title-wrapper {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}
.section-subtitle {
  font-family: var(--font-headings);
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}
.section-title {
  font-family: var(--font-display, 'Syne', var(--font-headings));
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  text-transform: capitalize;
  letter-spacing: -0.02em;
}
.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.text-accent {
  color: var(--accent) !important;
}
.bg-light-section {
  background-color: var(--light-bg);
  color: var(--text-dark) !important;
}
.bg-light-section .section-title {
  color: var(--text-dark);
}
.bg-light-section .section-desc {
  color: var(--text-dark-muted);
}

/* --- PREMIUM BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.1rem 2.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-glow);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-smooth);
}
.btn-primary:hover::after {
  left: 100%;
}
.btn-primary:hover {
  background: var(--text-white);
  border-color: var(--text-white);
  transform: translateY(-3px);
}
.btn-secondary {
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.btn-light {
  background: var(--primary-dark);
  color: var(--text-white);
  border: 1px solid var(--primary-dark);
}
.btn-light:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* --- STICKY GLASSMORPHISM NAVBAR --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}
.header.sticky {
  background: rgba(10, 11, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
/* Ensure font is elegant white & gold to match the brand emblem logo */
.header.sticky .logo-text {
  color: var(--accent) !important;
}
.header.sticky .logo-text span {
  color: var(--text-white) !important;
}
.header.sticky .nav-link {
  color: var(--text-white) !important;
}
.header.sticky .nav-link:hover,
.header.sticky .nav-link.active {
  color: var(--accent) !important;
  opacity: 1;
}
.header.sticky .nav-link::after {
  background-color: var(--accent) !important;
}
.header.sticky .hamburger span {
  background-color: var(--text-white) !important;
}
.header.sticky .logo-img {
  filter: none; /* Preserves glorious gold logo colors */
}
.header.sticky .btn-primary {
  background-color: var(--accent) !important;
  color: var(--primary-dark) !important;
  border-color: var(--accent) !important;
}
.header.sticky .btn-primary:hover {
  background-color: var(--accent-light) !important;
  color: var(--primary-dark) !important;
  border-color: var(--accent-light) !important;
}
.header:not(.sticky) {
  padding: 1.5rem 0;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.logo-text span {
  color: var(--text-white);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  opacity: 0.75;
  position: relative;
  padding: 0.5rem 0;
}
.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--accent);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: var(--transition-fast);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
}
.nav-cta .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
}

/* Hamburger mobile button */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1010;
  flex-direction: column;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-fast);
  border-radius: var(--border-radius-full);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile responsive menu overlays */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--secondary-dark);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
    gap: 2rem;
    z-index: 1005;
    transition: var(--transition-smooth);
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-cta {
    width: 100%;
    margin-top: 1rem;
  }
  .nav-cta .btn {
    width: 100%;
  }
}

/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(197, 168, 128, 0.05) 0%, transparent 70%), url('Shoot/Back Ground 1.png') center/cover no-repeat;
  filter: brightness(0.25) contrast(1.1);
  z-index: 1;
  transform: scale(1.05);
  animation: zoomBg 20s infinite alternate ease-in-out;
}
@keyframes zoomBg {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--primary-dark) 0%, transparent 100%);
  z-index: 2;
}
.hero-content-wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  margin-bottom: 2rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-tag {
  font-family: var(--font-headings);
  color: var(--accent);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
.hero-title {
  font-family: var(--font-display, 'Syne', var(--font-headings));
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}
.reveal-line-1 {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.reveal-line-2 {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}
.accent-glow {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  filter: drop-shadow(0 0 30px rgba(197, 168, 128, 0.25));
}
.hero-desc {
  font-size: 1.25rem;
  color: var(--text-light);
  opacity: 0;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.5;
  font-weight: 300;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- INTRODUCTION SECTION --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.slideshow-container {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}
.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-img.active {
  opacity: 1;
  transform: scale(1);
}
.intro-image-wrapper:hover .slide-img.active {
  transform: scale(1.04);
}
.intro-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-glass);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius-md);
  text-align: center;
}
.intro-badge-num {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.intro-badge-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-white);
  font-weight: 600;
}
.intro-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.intro-title {
  font-size: 2.5rem;
  color: var(--text-white);
  line-height: 1.2;
}
.intro-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}
.intro-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.intro-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.intro-bullet-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

/* --- COLLECTIONS SECTION --- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.collection-card {
  position: relative;
  height: 480px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.collection-card.tall {
  grid-row: span 2;
  height: 600px;
}
.collection-card.wide {
  grid-column: span 2;
}
.collection-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.collection-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 11, 13, 0.1) 30%, rgba(10, 11, 13, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  z-index: 2;
}
.collection-card-title {
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}
.collection-card-sub {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  opacity: 0.8;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition-smooth);
}
.collection-card:hover .collection-card-img {
  transform: scale(1.08);
}
.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to bottom, rgba(10, 11, 13, 0.2) 20%, rgba(10, 11, 13, 0.95) 100%);
}
.collection-card:hover .collection-card-sub {
  transform: translateY(0);
  opacity: 1;
}

/* --- WHY VELSAR SECTION --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-card {
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition-smooth);
}
.why-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(197, 168, 128, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--accent);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}
.why-card-title {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}
.why-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.why-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.why-card:hover .why-icon-box {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.3);
}

/* --- WHO WE WORK WITH (CLIENTS) SECTION --- */
.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.client-card {
  background: var(--light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}
.client-icon {
  font-size: 2rem;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.client-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}
.client-desc {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  margin-top: 0.5rem;
}
.client-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-light);
}

/* --- STATS COUNTER SECTION --- */
.stats {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-card {
  padding: 1.5rem;
}
.stat-number {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 0.15em;
}

/* Fabrics Hover Popup Styling */
.fabric-colours-card {
  position: relative;
}
.hover-tip {
  font-size: 0.72rem;
  color: var(--accent);
  margin-top: 0.5rem;
  opacity: 0.85;
  animation: pulseTip 2s infinite alternate;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@keyframes pulseTip {
  0% { opacity: 0.4; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(2px); }
}

.fabrics-hover-popup {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 420px;
  max-height: 480px;
  background: rgba(10, 11, 13, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--accent);
  border-radius: var(--border-radius-md);
  padding: 1.8rem;
  text-align: left;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-glow), 0 20px 50px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}
.fabric-colours-card:hover .fabrics-hover-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}
.popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 0.8rem;
  margin-bottom: 1.2rem;
}
.popup-header i {
  color: var(--accent);
  font-size: 1.3rem;
}
.popup-header h4 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.popup-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.popup-body li {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: var(--transition-fast);
}
.popup-body li i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 0.75rem;
}
.popup-body li:hover {
  color: var(--text-white);
  transform: translateX(4px);
}
.popup-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border-glass);
  padding-top: 1.2rem;
}
.badge-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}
.badge-tag i {
  font-size: 0.7rem;
}
.badge-tag.green { background: rgba(37, 211, 102, 0.1); color: #25d366; border: 1px solid rgba(37, 211, 102, 0.2); }
.badge-tag.gold { background: rgba(197, 168, 128, 0.1); color: var(--accent); border: 1px solid rgba(197, 168, 128, 0.2); }
.badge-tag.blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.2); }
.badge-tag.red { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); width: 100%; }
.badge-tag.orange { background: rgba(249, 115, 22, 0.1); color: #f97316; border: 1px solid rgba(249, 115, 22, 0.2); width: 100%; justify-content: center; }

/* B2B Customer Reviews Section Styles */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
.review-card {
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-subtle);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent) !important;
  box-shadow: var(--shadow-glow);
}
.review-stars {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 4px;
}
.review-text {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.05);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(197, 168, 128, 0.15);
  flex-shrink: 0;
}
.author-name {
  color: var(--text-white);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.author-title {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .fabrics-hover-popup {
    width: 320px;
    padding: 1.3rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .review-card {
    padding: 2.5rem;
  }
}

/* --- ABOUT PAGE TIMELINES & DETAILS --- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--border-glass);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.timeline-item {
  padding: 1rem 3rem;
  position: relative;
  background-color: inherit;
  width: 50%;
}
.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: var(--primary-dark);
  border: 4px solid var(--accent);
  top: 2rem;
  border-radius: 50%;
  z-index: 1;
}
.timeline-left {
  left: 0;
  text-align: right;
}
.timeline-right {
  left: 50%;
}
.timeline-right::after {
  left: -8px;
}
.timeline-content {
  padding: 2rem;
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
}
.timeline-step {
  font-family: var(--font-headings);
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.timeline-title {
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}
.timeline-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item::after {
    left: 23px;
    right: auto;
  }
  .timeline-left {
    left: 0;
    text-align: left;
  }
  .timeline-right {
    left: 0;
  }
}

/* --- ABOUT PAGE MOQ & INFO --- */
.moq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
.moq-card {
  background: var(--light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}
.moq-icon-box {
  width: 70px;
  height: 70px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  font-size: 1.8rem;
  color: var(--accent-dark);
}
.moq-pcs {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.moq-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.moq-desc {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.moq-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* --- PRODUCTS/CATALOG PAGE --- */
.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.search-wrapper {
  position: relative;
  width: 350px;
  max-width: 100%;
}
.search-input {
  width: 100%;
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  padding: 1.1rem 1.5rem 1.1rem 3.2rem;
  border-radius: var(--border-radius-sm);
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}
.search-input:focus {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
}
.filter-tabs {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 0.8rem 1.6rem;
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  border-radius: var(--border-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  min-height: 400px;
}
.product-card {
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}
.product-image-container {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #191B1F;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.product-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-actions-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 11, 13, 0.9) 0%, transparent 100%);
  display: flex;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}
.product-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--text-white);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-strong);
  transition: var(--transition-fast);
  font-size: 1.1rem;
}
.product-btn:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: scale(1.1);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.3);
  box-shadow: var(--shadow-card);
}
.product-card:hover .product-img {
  transform: scale(1.05);
}
.product-card:hover .product-actions-overlay {
  transform: translateY(0);
}
.product-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.product-title {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.product-code {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: monospace;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 6rem 2rem;
}
.no-results-icon {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.no-results-text {
  font-size: 1.25rem;
  color: var(--text-white);
  font-weight: 600;
}

/* --- FABRIC DETAILS WRAPPER --- */
.fabric-card {
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 4rem;
}
.fabric-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.fabric-content-side h3 {
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}
.fabric-types {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.fabric-type-item {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}
.fabric-type-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}
.fabric-type-gsm {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.fabric-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.fabric-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}
.fabric-feature-item i {
  color: var(--accent);
}

/* --- SERVICES & MANUFACTURING SERVICES PAGE --- */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.service-card {
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 3.5rem 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.service-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(197, 168, 128, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}
.service-title {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 1.2rem;
}
.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.service-card:hover .service-icon-box {
  background: var(--accent);
  color: var(--primary-dark);
}

/* Print techniques grid layout */
.print-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.print-card {
  background: var(--light-card);
  border: 1px solid var(--border-light);
  padding: 1.5rem 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.print-card-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
}
.print-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.print-card:hover .print-card-img {
  transform: scale(1.08);
}
.print-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}
.print-desc {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}
.print-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-light);
  transform: translateY(-5px);
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
}
.contact-info-card {
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(197, 168, 128, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.contact-detail-value {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 1.1rem;
}
.social-icon:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: scale(1.1);
}

/* Contact form glass styling */
.contact-form-card {
  background: var(--light-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-light);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
}
.contact-form-card h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.contact-form-card p {
  color: var(--text-dark-muted);
  margin-bottom: 3rem;
  font-size: 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.form-full-width {
  grid-column: span 2;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}
.form-input {
  width: 100%;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  padding: 1.1rem 1.4rem;
  border-radius: var(--border-radius-sm);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.form-input:focus {
  border-color: var(--accent-dark);
  background: #FFFFFF;
}
textarea.form-input {
  resize: vertical;
  min-height: 150px;
}

/* Map container styling */
.map-container {
  width: 100%;
  height: 480px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
}

/* --- QUICK VIEW PRODUCT MODAL --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 11, 13, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-container {
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  max-width: 1000px;
  width: 100%;
  height: 90vh;
  max-height: 680px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  position: relative;
  transform: scale(0.9) translateY(20px);
  box-shadow: var(--shadow-strong);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}
.modal-close:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: rotate(90deg);
}
.modal-img-wrapper {
  background: #191B1F;
  height: 100%;
  overflow: hidden;
}
.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.modal-cat {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.modal-title {
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}
.modal-code-badge {
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-sm);
  display: inline-block;
  margin-bottom: 2rem;
  width: max-content;
}
.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 1.8rem 0;
  margin-bottom: 2.5rem;
}
.modal-spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.modal-spec-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

@media (max-width: 768px) {
  .modal-container {
    grid-template-columns: 1fr;
    max-height: 95vh;
    height: auto;
    overflow-y: auto;
  }
  .modal-img-wrapper {
    height: 300px;
  }
  .modal-content {
    padding: 2.5rem;
  }
}

/* --- FOOTER REQUIREMENTS --- */
.footer {
  background: #060708;
  border-top: 1px solid var(--border-glass);
  color: var(--text-muted);
}
.footer-top {
  padding: 6rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
}
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
}
.footer-logo-text {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.1em;
}
.footer-logo-text span {
  color: var(--accent);
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-title {
  font-size: 1.1rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-link {
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-block;
}
.footer-link:hover {
  color: var(--accent);
  transform: translateX(5px);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-contact-item i {
  color: var(--accent);
  margin-top: 0.2rem;
}
.footer-bottom {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- BACK TO TOP BUTTON --- */
.scroll-top-btn {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow-strong);
  transition: var(--transition-smooth);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
}
.scroll-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--text-white);
  transform: translateY(-5px);
}

/* --- TOAST SUCCESS NOTIFICATION --- */
.toast-msg {
  position: fixed;
  bottom: 2.5rem;
  left: 2.5rem;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 1rem 2rem;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  box-shadow: var(--shadow-strong);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}
.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* --- SCROLL REVEAL ANIMATIONS (IntersectionObserver JS integration) --- */
.reveal {
  opacity: 0;
  filter: blur(4px); /* soft premium fade-in */
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
}
/* 1. Default Reveal Fade-Up */
.reveal-fade-up {
  transform: translateY(50px);
}
/* 2. Slide In From Left */
.reveal-slide-left {
  transform: translateX(-60px) scale(0.98);
}
/* 3. Slide In From Right */
.reveal-slide-right {
  transform: translateX(60px) scale(0.98);
}
/* 4. Glass Scale-Up */
.reveal-scale {
  transform: scale(0.9) translateY(30px);
}
/* 5. Luxury High-Fashion Skew */
.reveal-skew {
  transform: skewY(2deg) translateY(60px);
}

/* Active Trigger State */
.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1) skew(0);
  filter: blur(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- EXTRA INTERACTIVITY & MICRO-ANIMATIONS --- */
@keyframes floatImg {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.4deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
.intro-image-wrapper img,
.intro-img,
.about-img,
.story-image-box img {
  animation: floatImg 6s ease-in-out infinite;
}

/* Card hover scaling and elegant gold shadows */
.collection-card {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(197, 168, 128, 0.25);
}

.service-card,
.print-card,
.product-card,
.why-card {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover,
.print-card:hover,
.product-card:hover,
.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent) !important;
  box-shadow: var(--shadow-glow);
}

/* Footer logo sync */
.footer-logo-text {
  color: var(--accent) !important;
}
.footer-logo-text span {
  color: var(--text-white) !important;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1200px) {
  .intro-grid, .fabric-grid, .contact-grid {
    gap: 3rem;
  }
  .collections-grid, .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid, .print-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 6rem 0;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .intro-grid, .fabric-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .intro-image-wrapper, .slideshow-container {
    height: 400px;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .moq-grid, .services-list-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .moq-card, .service-card {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 2.0rem;
  }
  .hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .collections-grid, .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .search-wrapper {
    width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-full-width {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.6rem !important;
  }
  .section-title {
    font-size: 1.8rem !important;
  }
  .collections-grid, .products-grid {
    grid-template-columns: 1fr;
  }
  .why-grid, .client-grid, .print-tech-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- STOCK STATUS BADGES & OUT OF STOCK DECORATIONS --- */
.stock-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: #ff5757;
  color: var(--text-white);
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.out-of-stock-card {
  opacity: 0.6;
}
.out-of-stock-card .product-img {
  filter: grayscale(0.7) blur(0.5px);
}
.out-of-stock-card:hover {
  border-color: rgba(255, 87, 87, 0.3) !important;
}

/* --- CUSTOM DYNAMIC GLASS CURSOR (Apparel Stitching Theme) --- */
.custom-cursor {
  width: 22px;
  height: 22px;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-cursor::before,
.custom-cursor::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px dashed var(--accent); /* Elegant dashed sewing stitches! */
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  animation: cursorSewingSpin 8s linear infinite; /* Smooth rotating thread loop */
}
.custom-cursor::before {
  border-right-color: transparent;
  border-bottom-color: transparent;
}
.custom-cursor::after {
  border-left-color: transparent;
  border-top-color: transparent;
}

@keyframes cursorSewingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.custom-cursor-dot {
  width: 4px;
  height: 4px;
  background-color: var(--accent); /* needle tip center point */
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

/* Hover style: snaps together and shears like high-speed sewing scissor cutting! */
.custom-cursor.hover {
  width: 46px;
  height: 46px;
}
.custom-cursor.hover::before {
  border: 2px solid var(--accent-light);
  border-right-color: transparent;
  border-bottom-color: transparent;
  animation: cursorCutLeft 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) infinite alternate;
}
.custom-cursor.hover::after {
  border: 2px solid var(--accent-light);
  border-left-color: transparent;
  border-top-color: transparent;
  animation: cursorCutRight 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) infinite alternate;
}

.custom-cursor.hover ~ .custom-cursor-dot {
  transform: translate(-50%, -50%) scale(1.8);
  background-color: var(--accent-light);
}

@keyframes cursorCutLeft {
  0% { transform: rotate(-30deg) scale(1); }
  100% { transform: rotate(30deg) scale(0.9); }
}
@keyframes cursorCutRight {
  0% { transform: rotate(30deg) scale(1); }
  100% { transform: rotate(-30deg) scale(0.9); }
}

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  z-index: 10000;
  transition: width 0.1s ease-out;
}

@media (min-width: 992px) {
  html, body {
    cursor: none;
  }
  a, button, .btn, .collection-card, .product-card, .service-card, .why-card, .nav-link, .logo-container, .modal-close {
    cursor: none !important;
  }
}

/* --- INTEGRATED FACTORY WORKFLOW TIMELINE --- */
.workflow-stepper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
.workflow-step-card {
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.workflow-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.workflow-step-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-glass);
  background: #15171B;
}
.workflow-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.workflow-step-card:hover .workflow-step-img {
  transform: scale(1.08);
}
.split-img-container {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 4px;
}
.split-img-container .split-img {
  width: calc(50% - 2px);
  height: 100%;
  object-fit: cover;
}
.workflow-step-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--accent);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-glass);
  z-index: 2;
}
.workflow-step-content {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.5rem 0.8rem;
}
.workflow-step-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}
.workflow-step-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .workflow-stepper-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .workflow-stepper-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .workflow-step-img-wrapper {
    height: 180px;
  }
}

/* --- FLOATING WHATSAPP CHAT WIDGET --- */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 9999;
  text-decoration: none;
  font-family: var(--font-body);
}

.whatsapp-widget-content {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 11, 13, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 0.6rem 0.6rem 0.6rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), var(--shadow-subtle);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-widget-text {
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.9;
  transition: var(--transition-fast);
}

.whatsapp-widget-icon-wrapper {
  width: 48px;
  height: 48px;
  background: #25d366;
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  animation: spinIcon 6s infinite linear;
}

@keyframes spinIcon {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  15% { transform: rotate(20deg) scale(1.1); }
  20% { transform: rotate(-20deg) scale(1.1); }
  25% { transform: rotate(10deg) scale(1.05); }
  30% { transform: rotate(-10deg) scale(1.05); }
  35% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

/* Hover States */
.whatsapp-floating-widget:hover .whatsapp-widget-content {
  border-color: #25d366;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3), 0 0 15px rgba(37, 211, 102, 0.2);
  transform: translateY(-5px);
}

.whatsapp-floating-widget:hover .whatsapp-widget-icon-wrapper {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  animation: none; /* stop standard animation on hover */
}

.whatsapp-floating-widget:hover .whatsapp-widget-text {
  color: #25d366;
  transform: translateX(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-floating-widget {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .whatsapp-widget-content {
    padding: 0.4rem;
    gap: 0;
  }
  .whatsapp-widget-text {
    display: none; /* hide text on smaller viewports to prevent screen clutter */
  }
  .whatsapp-widget-icon-wrapper {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   14. FABRICS SHOWCASE & TIMELINE STYLING
   ========================================================================== */

/* Custom workflow timeline cards */
.workflow-timeline {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}
.workflow-timeline-card {
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  transition: var(--transition-smooth);
}
.workflow-timeline-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}
.workflow-timeline-card:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
}
.workflow-timeline-card:nth-child(even) .workflow-image-wrapper {
  order: 2;
}

.workflow-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 380px;
  background: #191B1F;
  box-shadow: var(--shadow-strong);
}
.workflow-img-primary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.workflow-img-details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.workflow-image-wrapper:hover .workflow-img-primary {
  opacity: 0;
  transform: scale(1.05);
}
.workflow-image-wrapper:hover .workflow-img-details {
  opacity: 1;
  transform: scale(1.05);
  pointer-events: auto;
}
/* Mobile toggle overlay hint */
.workflow-inspect-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  pointer-events: none;
  transition: var(--transition-fast);
}
.workflow-image-wrapper:hover .workflow-inspect-badge {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.5);
}

.workflow-info-side h3 {
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
}
.workflow-info-side h3 span {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
}
.workflow-info-side p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.workflow-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.workflow-spec-item {
  border-left: 2px solid var(--accent);
  padding-left: 1.2rem;
}
.workflow-spec-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.workflow-spec-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

/* Fabrics Grid Styles */
.fabrics-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.fabric-grid-card {
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fabric-grid-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.fabric-card-header {
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
}
.fabric-card-title {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  height: 48px; /* Fixed height for header symmetry */
  display: flex;
  align-items: center;
}
.fabric-card-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
.fabric-spec-label {
  color: var(--text-muted);
}
.fabric-spec-value {
  color: var(--text-white);
  font-weight: 600;
}
.fabric-card-specs {
  margin-bottom: 1.8rem;
}
.fabric-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(197, 168, 128, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.2);
  padding: 0.3rem 0.6rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.fabric-action-btn {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  padding: 0.8rem 1.2rem;
}

/* Color Chart Downloads styles */
.charts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.chart-download-card {
  background: rgba(197, 168, 128, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}
.chart-download-card:hover {
  background: rgba(197, 168, 128, 0.05);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.chart-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.chart-info h4 {
  font-size: 0.95rem;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}
.chart-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.chart-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.chart-link:hover {
  color: var(--text-white);
  transform: translateX(3px);
}

/* Fabrics MOQ guidelines */
.moq-guidelines-banner {
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.05) 0%, rgba(10, 11, 13, 0.2) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  margin-top: 5rem;
}
.moq-banner-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}
.moq-banner-left h3 {
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}
.moq-banner-left p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.moq-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.moq-banner-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(10, 11, 13, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.moq-highlight-number {
  font-family: var(--font-headings);
  font-size: 3rem;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.moq-highlight-label {
  font-size: 0.9rem;
  color: var(--text-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Responsive adjustments for Fabric Page */
@media (max-width: 991px) {
  .workflow-timeline-card,
  .workflow-timeline-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
  .workflow-timeline-card:nth-child(even) .workflow-image-wrapper {
    order: 0;
  }
  .fabrics-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .charts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .moq-banner-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .moq-guidelines-banner {
    padding: 2.5rem;
  }
}
@media (max-width: 768px) {
  .fabrics-grid-wrapper {
    grid-template-columns: 1fr;
  }
  .charts-grid {
    grid-template-columns: 1fr;
  }
  .workflow-image-wrapper {
    height: 280px;
  }
  .workflow-info-side h3 {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   B2B UPGRADES & PREMIUM AESTHETIC STYLINGS (AUTO-APPENDED)
   ========================================================================== */

/* 1. Dynamic Hero Slideshow Styles */
.hero-bg-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  filter: brightness(0.22) contrast(1.15);
  transform: scale(1.04);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
  animation: zoomBgActive 20s infinite alternate ease-in-out;
  z-index: 1;
}
@keyframes zoomBgActive {
  0% { transform: scale(1.04); }
  100% { transform: scale(1.12); }
}

/* 2. 5-Column Desktop Stats Grid Overrides */
@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--border-radius-md);
  border: 1px solid transparent;
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border-glass);
  transform: translateY(-5px);
}
.stat-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
  opacity: 0.85;
  transition: transform 0.4s ease;
}
.stat-card:hover .stat-icon {
  transform: scale(1.12) rotate(5deg);
  color: var(--accent-light);
}

/* 3. B2B Product Cards & WhatsApp Inquiry CTA styling */
.product-specs-preview {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
  font-size: 0.82rem;
  text-align: left;
}
.product-specs-preview .spec-item {
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
}
.product-specs-preview .spec-item strong {
  color: var(--accent-light);
  font-weight: 600;
}
.product-card-cta {
  margin-top: 1.2rem;
  width: 100%;
}
.wa-card-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0.75rem !important;
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s ease;
}
.wa-card-btn:hover {
  background-color: #20ba59 !important;
  border-color: #20ba59 !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
  color: var(--primary-dark) !important;
}

/* 4. Luxury Showcase Row (Why Choose Us) */
.why-showcase-container {
  margin-top: 4rem;
}
.why-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-showcase-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  height: 260px;
  box-shadow: var(--shadow-medium);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.why-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.65);
}
.why-showcase-card:hover .why-showcase-img {
  transform: scale(1.08);
  filter: brightness(0.5);
}
.why-showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10, 11, 13, 0.95) 0%, rgba(10, 11, 13, 0.4) 60%, transparent 100%);
  text-align: left;
}
.why-showcase-tag {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 0.3rem;
}
.why-showcase-title {
  color: var(--text-white);
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-headings);
  margin-bottom: 0.2rem;
}
.why-showcase-desc {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .why-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .why-showcase-grid {
    grid-template-columns: 1fr;
  }
  .why-showcase-card {
    height: 220px;
  }
}

/* 5. Infinite Luxury Monochrome Partner Marquee */
.logo-marquee-tape {
  background-color: rgba(10, 11, 13, 0.85);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 2.2rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px);
}
.logo-marquee-tape::before,
.logo-marquee-tape::after {
  content: "";
  height: 100%;
  width: 150px;
  position: absolute;
  z-index: 2;
  top: 0;
  pointer-events: none;
}
.logo-marquee-tape::before {
  left: 0;
  background: linear-gradient(to right, var(--primary-dark) 0%, transparent 100%);
}
.logo-marquee-tape::after {
  right: 0;
  background: linear-gradient(to left, var(--primary-dark) 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: calc(250px * 16);
  animation: logoScroll 30s linear infinite;
  gap: 4rem;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.logo-node {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-node-text {
  font-family: var(--font-display, 'Syne', var(--font-headings));
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0.45;
}
.logo-node-text span {
  color: var(--accent);
}
.logo-node:hover .logo-node-text {
  opacity: 1;
  color: var(--accent-light);
  text-shadow: 0 0 15px rgba(197, 168, 128, 0.4);
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 8)); }
}

/* 6. Pantone Color Swatches Grid (Fabric Page) */
.pantone-section {
  margin-top: 5rem;
  text-align: center;
}
.pantone-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.pantone-card {
  background: var(--secondary-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}
.pantone-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.pantone-color-block {
  height: 140px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pantone-color-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.pantone-info {
  padding: 1.2rem;
  background: var(--secondary-dark);
}
.pantone-name {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.pantone-code {
  font-family: var(--font-monospace, 'Courier New', monospace);
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pantone-label-chip {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .pantone-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   DYNAMIC B2B OFFERS & PROMOTIONS SYSTEM (PREMIUM STYLE DECLARATIONS)
   ========================================================================== */

/* 1. Animations & Keyframes */
@keyframes velsarFadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes velsarBackdropFade {
  from {
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
  }
  to {
    background-color: rgba(6, 6, 6, 0.85);
    backdrop-filter: blur(12px);
  }
}

@keyframes velsarShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* 2. Glassmorphic Modal Dialog */
.velsar-offer-modal {
  border: none;
  background: transparent;
  padding: 0;
  margin: auto;
  max-width: 560px;
  width: 90%;
  border-radius: var(--border-radius-lg);
  overflow: visible;
  outline: none;
  z-index: 10005;
}

.velsar-offer-modal[open] {
  animation: velsarFadeSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.velsar-offer-modal::backdrop {
  background-color: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: velsarBackdropFade 0.4s ease forwards;
}

.velsar-offer-modal-content {
  position: relative;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  color: var(--text-white);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65), 0 0 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.velsar-offer-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.velsar-offer-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  transform: rotate(90deg);
}

/* 3. Section Banner Container */
#dynamic-offer-banner-container {
  width: 100%;
  background: var(--primary-dark);
  padding: 0;
  margin: 0;
  display: block;
}

.velsar-offer-banner {
  background: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.2rem 1rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.velsar-offer-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02) 50%, transparent);
  background-size: 200% 100%;
  animation: velsarShimmer 8s infinite linear;
  pointer-events: none;
}

.velsar-offer-banner-inner {
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 1.5rem;
}

/* 4. Common Design Sub-elements */
.velsar-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.velsar-offer-banner .velsar-offer-badge {
  margin-bottom: 0;
}

.velsar-offer-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.velsar-offer-title {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.8rem;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.velsar-offer-banner .velsar-offer-title {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.velsar-offer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.velsar-offer-banner .velsar-offer-desc {
  font-size: 0.88rem;
  margin-bottom: 0;
  max-width: 600px;
}

.velsar-offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-sm);
  color: var(--primary-dark) !important;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.velsar-offer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: var(--primary-dark) !important;
}

/* 5. Theme Presets (Amber Gold, Streetwear Crimson, Emerald Mint, Cyber Indigo) */

/* SLEEK AMBER GOLD */
.velsar-theme-gold {
  border-color: rgba(197, 168, 128, 0.25) !important;
}
.velsar-theme-gold .velsar-offer-badge {
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.4);
  color: var(--accent);
}
.velsar-theme-gold .velsar-offer-icon-box {
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--accent);
}
.velsar-theme-gold .velsar-offer-cta {
  background: var(--accent);
}
.velsar-theme-gold .velsar-offer-cta:hover {
  background: var(--text-white);
}
.velsar-theme-gold.velsar-offer-modal-content {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65), 0 0 45px rgba(197, 168, 128, 0.15);
}
.velsar-theme-gold.velsar-offer-banner {
  border-top-color: rgba(197, 168, 128, 0.15);
  border-bottom-color: rgba(197, 168, 128, 0.15);
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.8) 0%, rgba(197, 168, 128, 0.03) 50%, rgba(18, 18, 18, 0.8) 100%);
}

/* STREETWEAR CRIMSON */
.velsar-theme-red {
  border-color: rgba(239, 83, 80, 0.25) !important;
}
.velsar-theme-red .velsar-offer-badge {
  background: rgba(239, 83, 80, 0.12);
  border: 1px solid rgba(239, 83, 80, 0.4);
  color: #ef5350;
}
.velsar-theme-red .velsar-offer-icon-box {
  background: rgba(239, 83, 80, 0.08);
  border: 1px solid rgba(239, 83, 80, 0.3);
  color: #ef5350;
}
.velsar-theme-red .velsar-offer-cta {
  background: #ef5350;
}
.velsar-theme-red .velsar-offer-cta:hover {
  background: var(--text-white);
}
.velsar-theme-red.velsar-offer-modal-content {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65), 0 0 45px rgba(239, 83, 80, 0.15);
}
.velsar-theme-red.velsar-offer-banner {
  border-top-color: rgba(239, 83, 80, 0.15);
  border-bottom-color: rgba(239, 83, 80, 0.15);
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.8) 0%, rgba(239, 83, 80, 0.03) 50%, rgba(18, 18, 18, 0.8) 100%);
}

/* EMERALD MINT */
.velsar-theme-emerald {
  border-color: rgba(76, 175, 80, 0.25) !important;
}
.velsar-theme-emerald .velsar-offer-badge {
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #4caf50;
}
.velsar-theme-emerald .velsar-offer-icon-box {
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}
.velsar-theme-emerald .velsar-offer-cta {
  background: #4caf50;
}
.velsar-theme-emerald .velsar-offer-cta:hover {
  background: var(--text-white);
}
.velsar-theme-emerald.velsar-offer-modal-content {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65), 0 0 45px rgba(76, 175, 80, 0.15);
}
.velsar-theme-emerald.velsar-offer-banner {
  border-top-color: rgba(76, 175, 80, 0.15);
  border-bottom-color: rgba(76, 175, 80, 0.15);
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.8) 0%, rgba(76, 175, 80, 0.03) 50%, rgba(18, 18, 18, 0.8) 100%);
}

/* DEEP CYBER INDIGO */
.velsar-theme-indigo {
  border-color: rgba(99, 102, 241, 0.25) !important;
}
.velsar-theme-indigo .velsar-offer-badge {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #6366f1;
}
.velsar-theme-indigo .velsar-offer-icon-box {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #6366f1;
}
.velsar-theme-indigo .velsar-offer-cta {
  background: #6366f1;
}
.velsar-theme-indigo .velsar-offer-cta:hover {
  background: var(--text-white);
}
.velsar-theme-indigo.velsar-offer-modal-content {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65), 0 0 45px rgba(99, 102, 241, 0.15);
}
.velsar-theme-indigo.velsar-offer-banner {
  border-top-color: rgba(99, 102, 241, 0.15);
  border-bottom-color: rgba(99, 102, 241, 0.15);
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.8) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(18, 18, 18, 0.8) 100%);
}

/* 6. Responsive Styles for Banner */
@media (max-width: 991px) {
  .velsar-offer-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    padding: 0.5rem 1rem;
  }
  .velsar-offer-banner .velsar-offer-badge {
    margin: 0 auto 0.8rem auto;
  }
  .velsar-offer-banner .velsar-offer-desc {
    margin: 0.5rem auto 1rem auto;
  }
}

@media (max-width: 576px) {
  .velsar-offer-modal-content {
    padding: 2.2rem 1.5rem;
  }
  .velsar-offer-title {
    font-size: 1.6rem;
  }
  .velsar-offer-banner .velsar-offer-title {
    font-size: 1.2rem;
  }
}
