/*
Theme Name: WT HTML Tejoo Fashions
Theme URI: https://tejoo.splabs.space
Description: Bespoke Luxury Editorial WordPress Theme for Tejoo Fashions Redesign. Inspired by Indian luxury fashion houses (Torani, Raw Mango, Anita Dongre). Zero bloat, fast, ultra-responsive B2B showcase.
Author: Simply Plugged
Version: 4.4.0
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --color-maroon: #8B1A2B;
  --color-maroon-dark: #5C0E1B;
  --color-maroon-light: #A52A3E;
  --color-ivory: #FDF8F2;
  --color-ivory-dark: #F3E8DC;
  --color-gold: #C9A84C;
  --color-gold-light: #E5C875;
  --color-charcoal: #222222;
  --color-muted: #666666;
  --color-offwhite: #FAFAF7;
  --color-white: #FFFFFF;
  --color-border: #E6DCD2;

  /* STRICT UNIFIED TYPOGRAPHY TOKENS (Cormorant Garamond + Jost) */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 10px rgba(139, 26, 43, 0.04);
  --shadow-md: 0 10px 30px rgba(139, 26, 43, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.14);

  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.65s cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 100px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-offwhite);
  color: var(--color-charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* GLOBAL TYPOGRAPHY UNIFICATION - STRICT SERIF FOR ALL HEADINGS */
h1, h2, h3, h4, h5, h6,
.section-heading,
.font-serif {
  font-family: var(--font-serif) !important;
  font-weight: 400;
}

body, p, span, a, li, button, input, textarea, label,
.body-text, .overline, .pill-tag, .nav-links a, .btn, .stat-label {
  font-family: var(--font-sans);
}

.overline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: var(--font-serif) !important;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 400 !important;
  color: var(--color-charcoal);
  line-height: 1.15;
}

.section-heading em {
  font-style: italic;
  font-family: var(--font-serif) !important;
  color: var(--color-maroon);
}

.body-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.pill-tag {
  display: inline-block;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  background-color: var(--color-ivory-dark);
  color: var(--color-maroon);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-maroon {
  background-color: var(--color-maroon);
  color: var(--color-white);
}

.btn-maroon:hover {
  background-color: var(--color-maroon-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-maroon);
  color: var(--color-maroon);
  transform: translateY(-2px);
}

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

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* FAST FLUID DIRECTIONAL SCROLL REVEAL ANIMATIONS (BIDIRECTIONAL SCROLL UP & DOWN) */
.reveal-on-scroll,
.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-down {
  opacity: 0;
  transform: translateY(-35px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed,
.reveal-up.revealed,
.reveal-down.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-zoom.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* Header & Global Nav */
.header-top {
  background-color: var(--color-maroon);
  color: var(--color-ivory);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-info {
  display: flex;
  gap: 2rem;
}

.global-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

/* ELEGANT MODERATE LOGO SIZE (50px) */
.brand-logo-img {
  height: 50px !important;
  width: auto !important;
  max-height: 58px !important;
  object-fit: contain !important;
  display: block;
  transition: transform var(--transition-fast);
}

.brand-logo-img:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-charcoal);
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-maroon);
  transition: width var(--transition-normal);
}

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

.nav-links a.active {
  color: var(--color-maroon);
}

/* Homepage: transparent header over full-screen hero */
.has-hero-overlay .header-top {
  display: none;
}

.has-hero-overlay .global-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(180deg, rgba(15, 8, 10, 0.55) 0%, rgba(15, 8, 10, 0.18) 70%, transparent 100%);
  backdrop-filter: none;
  border-bottom: none;
  padding: 1.1rem 3.5rem 1.35rem;
}

.has-hero-overlay .global-nav.is-scrolled {
  background: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 3.5rem;
}

.has-hero-overlay .global-nav .nav-links a {
  color: rgba(253, 248, 242, 0.95);
}

.has-hero-overlay .global-nav .nav-links a::after {
  background-color: var(--color-gold-light);
}

.has-hero-overlay .global-nav .nav-links a:hover,
.has-hero-overlay .global-nav .nav-links a.active {
  color: #ffffff;
}

.has-hero-overlay .global-nav.is-scrolled .nav-links a {
  color: var(--color-charcoal);
}

.has-hero-overlay .global-nav.is-scrolled .nav-links a::after {
  background-color: var(--color-maroon);
}

.has-hero-overlay .global-nav.is-scrolled .nav-links a:hover,
.has-hero-overlay .global-nav.is-scrolled .nav-links a.active {
  color: var(--color-maroon);
}

.has-hero-overlay .mobile-menu-btn {
  color: #ffffff;
}

.has-hero-overlay .global-nav.is-scrolled .mobile-menu-btn {
  color: var(--color-maroon);
}

.has-hero-overlay .brand-logo-img {
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

.has-hero-overlay .global-nav.is-scrolled .brand-logo-img {
  filter: none;
}

/* FULL-SCREEN CINEMATIC HERO SLIDESHOW */
.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 480px;
  margin-top: 0;
  overflow: hidden;
  background-color: #0f080a;
  border-bottom: 1px solid var(--color-border);
}

.hero-slideshow-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
  overflow: hidden;
  background-color: #0f080a;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-fullscreen .hero-slide picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-fullscreen .hero-slide img,
.hero-fullscreen .hero-slide picture img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center top;
  display: block;
  transform: none;
  will-change: auto;
}

.mobile-hero-caption {
  display: none;
}

.hero-slide-caption {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.5rem);
  bottom: clamp(4.5rem, 8vh, 5.5rem);
  z-index: 4;
  max-width: min(560px, 88vw);
  padding: 1.15rem 1.5rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(15, 8, 10, 0.62);
  border: 1px solid rgba(201, 168, 76, 0.35);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-slide.active .hero-slide-caption {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-caption-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f0d78a;
  margin-bottom: 0.55rem;
}

.hero-caption-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 400 !important;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: none;
}

.hero-caption-title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 8, 10, 0.35) 0%, transparent 18%, transparent 62%, rgba(15, 8, 10, 0.5) 100%);
}

.hero-brand-logo {
  position: absolute;
  top: clamp(1.5rem, 4vh, 2.75rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: block;
  line-height: 0;
  opacity: 0.96;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-brand-logo img {
  height: clamp(52px, 7vh, 78px);
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
}

.hero-brand-logo:hover {
  opacity: 1;
  transform: translateX(-50%) scale(1.02);
}

.hero-slide-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 8, 10, 0.32);
  backdrop-filter: blur(8px);
}

.hero-slide-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(253, 248, 242, 0.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s ease;
}

.hero-slide-dots button.active {
  width: 26px;
  border-radius: var(--radius-pill);
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.hero-slide-dots button:hover:not(.active) {
  background: rgba(253, 248, 242, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.active img,
  .hero-slide.active picture img {
    animation: none;
    transform: none;
  }
  .hero-slide {
    transition-duration: 0.01ms;
  }
  .hero-slide-caption {
    transition-duration: 0.01ms;
    opacity: 1;
    transform: none;
  }
}

/* DYNAMIC INFINITE MARQUEE TICKER */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background-color: var(--color-maroon);
  padding: 0.5rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
}

.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee 36s linear infinite;
}

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

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans) !important;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-ivory);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.marquee-item .dot {
  color: var(--color-gold-light);
  font-size: 0.45rem;
  opacity: 0.9;
}

/* DYNAMIC RUNNING WHOLESALE INSPIRATION GALLERY (MOBILE-OPTIMIZED MARQUEE TRACK) */
.running-gallery-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0.5rem 0;
}

.running-gallery-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}

.track-left {
  animation: runningGalleryLeft 38s linear infinite;
}

.running-gallery-container:hover .running-gallery-track {
  animation-play-state: paused;
}

@keyframes runningGalleryLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.running-gallery-card {
  position: relative;
  width: 280px;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background-color: #F8F4EF;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.running-gallery-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.running-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center 15% !important;
  transition: transform 0.6s ease;
}

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

.running-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(92, 14, 27, 0.92) 0%, rgba(0, 0, 0, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.25rem;
  color: var(--color-ivory);
}

.running-card-overlay span {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-light);
  margin-bottom: 0.25rem;
}

.running-card-overlay h4 {
  font-family: var(--font-serif) !important;
  font-size: 1.2rem;
  color: var(--color-ivory);
  line-height: 1.2;
}

/* COLLECTIONS PAGE DESKTOP 2-COLUMN LAYOUT */
.collection-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid var(--color-border);
}

.collection-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ABOUT PAGE ARTISAN HUB FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  min-width: 0;
  padding: 1.5rem 1.35rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-icon-svg {
  display: block;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.feature-title {
  margin-bottom: 0.5rem;
  color: var(--color-maroon);
  font-family: var(--font-serif) !important;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
}

.feature-body {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* VIEW & SHOWCASE (4 REELS IN 1 ROW ON LAPTOP) */
.reels-section {
  background-color: #FFFFFF;
  color: var(--color-charcoal);
  padding: 5.5rem 3.5rem;
  border-bottom: 1px solid var(--color-border);
}

.reels-title-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reels-title-wrap h2 {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.reels-row-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.reel-item-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reel-video-box {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #111111;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.reel-video-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.reel-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BRAND PORTFOLIO STRIP (directly after hero) */
.brand-portfolio-section {
  padding: 6rem 3.5rem 6.5rem;
  border-bottom: 1px solid var(--color-border);
}

.brand-portfolio-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.brand-portfolio-intro .section-heading {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  margin-top: 0.35rem;
}

.brand-portfolio-intro .body-text {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.brand-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.brand-logo-card {
  background: var(--color-white);
  padding: 2rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.brand-logo-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
}

.brand-logo-card img {
  max-height: 56px;
  width: auto;
  margin: 0 auto 0.65rem;
  display: block;
  object-fit: contain;
}

.brand-logo-card h4 {
  font-size: 0.95rem;
  color: var(--color-maroon);
  line-height: 1.2;
}

.brand-logo-card p {
  font-size: 0.65rem;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

/* B2B COLLECTIONS CAROUSEL TRACK (DESKTOP & MOBILE HORIZONTAL CAROUSEL) */
.section-padding {
  padding: 6.5rem 3.5rem;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-maroon);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
  background-color: var(--color-maroon);
  color: var(--color-white);
  border-color: var(--color-maroon);
}

.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }

.collections-carousel-track {
  display: flex;
  flex-wrap: nowrap !important;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 2rem 0.5rem;
  scrollbar-width: none;
}

.collections-carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card-item {
  flex: 0 0 320px !important;
  width: 320px !important;
  min-width: 320px !important;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.carousel-card-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.product-img {
  position: relative;
  height: 380px;
  overflow: hidden;
  background-color: #F8F4EF;
}

.product-img-inner,
.category-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center !important;
  object-fit: cover !important;
  object-position: top center !important;
  transition: transform var(--transition-slow);
}

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

.product-label-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background-color: rgba(250, 250, 247, 0.95);
  color: var(--color-maroon);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: var(--font-sans);
}

.product-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: var(--color-white);
}

.product-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-family: var(--font-sans);
}

.product-name {
  font-family: var(--font-serif) !important;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 1.35rem;
  line-height: 1.55;
  font-weight: 300;
  font-family: var(--font-sans);
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--color-ivory-dark);
}

.product-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-maroon);
  font-family: var(--font-sans);
}

/* INTERACTIVE CATEGORY TAB SWITCHER */
.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.7rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-charcoal);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--color-maroon);
  color: var(--color-white);
  border-color: var(--color-maroon);
}

/* TEJOO B2B ADVANTAGES (light ivory panel, 3D cards) */
.tejoo-b2b-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 3.5rem 6rem;
  background: linear-gradient(135deg, #5c0f1c 0%, #8B1A2B 42%, #6d1524 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  perspective: 1200px;
}

.tejoo-b2b-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(201, 168, 76, 0.4) 18px, rgba(201, 168, 76, 0.4) 19px),
    repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(255, 255, 255, 0.15) 18px, rgba(255, 255, 255, 0.15) 19px);
  pointer-events: none;
  z-index: 1;
}

.tejoo-b2b-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 38%) 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.tejoo-b2b-intro-col {
  position: sticky;
  top: 6rem;
}

.tejoo-b2b-ornament {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #f0d78a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tejoo-b2b-diamond {
  color: rgba(253, 248, 242, 0.7);
  font-size: 0.5rem;
  line-height: 1;
}

.tejoo-b2b-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem) !important;
  font-weight: 400 !important;
  line-height: 1.08 !important;
  color: #fdf8f2;
  margin-bottom: 1.25rem;
}

.tejoo-b2b-title em {
  color: #f0d78a;
  font-style: italic;
}

.tejoo-b2b-lead {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: rgba(253, 248, 242, 0.88);
  margin-bottom: 2rem;
}

.tejoo-b2b-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.tejoo-b2b-highlights li {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(253, 248, 242, 0.9);
  padding-left: 1.1rem;
  border-left: 3px solid #C9A84C;
}

.tejoo-b2b-highlights strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: #f0d78a;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.tejoo-b2b-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.tejoo-b2b-item {
  position: relative;
  padding: 1.85rem 1.65rem 1.65rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(253, 248, 242, 0.97) 0%, rgba(248, 240, 230, 0.92) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 28px rgba(0, 0, 0, 0.22);
  transform-style: preserve-3d;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease;
  will-change: transform;
}

.tejoo-b2b-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #C9A84C 0%, #8B1A2B 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tejoo-b2b-item:hover::before {
  transform: scaleY(1);
}

.tejoo-b2b-item.revealed {
  animation: tejooB2bEnter 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.tejoo-b2b-item:nth-child(1).revealed { animation-delay: 0.05s; }
.tejoo-b2b-item:nth-child(2).revealed { animation-delay: 0.12s; }
.tejoo-b2b-item:nth-child(3).revealed { animation-delay: 0.19s; }
.tejoo-b2b-item:nth-child(4).revealed { animation-delay: 0.26s; }
.tejoo-b2b-item:nth-child(5).revealed { animation-delay: 0.33s; }
.tejoo-b2b-item:nth-child(6).revealed { animation-delay: 0.4s; }

@keyframes tejooB2bEnter {
  from {
    opacity: 0;
    transform: translateY(28px) rotateX(12deg) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

.tejoo-b2b-item:hover {
  border-color: rgba(201, 168, 76, 0.75);
  transform: translateY(-10px) rotateX(4deg) scale(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 24px 48px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(201, 168, 76, 0.2);
}

.tejoo-b2b-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
  color: rgba(139, 26, 43, 0.14);
  margin-bottom: 0.65rem;
  transition: color 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.tejoo-b2b-item:hover .tejoo-b2b-num {
  color: rgba(201, 168, 76, 0.45);
  transform: translateX(4px);
}

.tejoo-b2b-item-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-weight: 500;
  color: var(--color-maroon);
  margin-bottom: 0.55rem;
  line-height: 1.25;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.tejoo-b2b-item:hover .tejoo-b2b-item-title {
  transform: translateX(4px);
}

.tejoo-b2b-item-body {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.65;
  color: #5a4a48;
}

/* 6-CARD GAPLESS CREATIVE EDITORIAL COLLAGE BENTO GRID */
.atelier-collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.collage-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  background-color: #F8F4EF;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.collage-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: transform 0.6s ease;
  display: block;
}

.collage-item:hover img {
  transform: scale(1.07);
}

.collage-item-hero {
  grid-column: span 2;
  grid-row: span 2;
}

.collage-item-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.collage-item-wide {
  grid-column: span 2;
  grid-row: span 1;
}

/* ELEGANT SMALL TOP PILL BADGE */
.collage-badge {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  z-index: 5;
  background-color: rgba(250, 250, 247, 0.94);
  color: var(--color-maroon);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

/* ELEGANT GRADIENT BOTTOM CAPTION */
.collage-caption {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(0deg, rgba(15, 8, 10, 0.88) 0%, rgba(0, 0, 0, 0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.5rem;
  transition: opacity 0.35s ease;
}

/* WHOLESALE B2B INQUIRY FORM (LAPTOP 2-COLUMN LEFT-RIGHT SIDE BY SIDE) */
.wholesale-section {
  display: grid !important;
  grid-template-columns: 1.1fr 1.2fr !important;
  gap: 4.5rem !important;
  align-items: center !important;
}

.form-box {
  background-color: var(--color-white);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.form-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-charcoal);
  font-family: var(--font-sans);
}

.form-control {
  padding: 0.9rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-offwhite);
  color: var(--color-charcoal);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-maroon);
  background-color: var(--color-white);
}


/* CONTACT PAGE TWO-COLUMN GRID */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* WHOLESALE FORM INTRO + BENEFITS */
.wholesale-intro-text {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.wholesale-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.wholesale-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.5;
}

.wholesale-benefit-check {
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.wholesale-wa-cta {
  margin-top: 2rem;
  padding: 1.35rem 1.25rem;
  background: var(--color-ivory-dark);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.wholesale-wa-cta-title {
  font-family: var(--font-serif) !important;
  font-size: 1.15rem;
  color: var(--color-maroon);
  margin-bottom: 0.35rem;
}

.wholesale-wa-cta-text {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.wholesale-wa-cta-link {
  color: var(--color-maroon);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: underline;
}

.form-box-title {
  font-family: var(--font-serif) !important;
  font-size: 1.75rem;
  color: var(--color-maroon);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* LOOKBOOK GALLERY GRID (LAPTOP 4 COLUMNS) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.gallery-item {
  position: relative;
  height: 440px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #F8F4EF;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: top center !important;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(92, 14, 27, 0.85) 0%, rgba(0, 0, 0, 0) 65%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
  color: var(--color-white);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* STATS STRIP (LAPTOP 4 COLUMNS) */
.stats-strip {
  background-color: var(--color-maroon-dark);
  color: var(--color-ivory);
  padding: 3.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 0 1rem;
  border-right: 1px solid rgba(201, 168, 76, 0.25);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-serif) !important;
  font-size: 3rem;
  font-weight: 500;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-ivory);
  opacity: 0.9;
  font-family: var(--font-sans);
}

/* FOOTER & SOCIAL LINKS */
.site-footer {
  background-color: #161012;
  color: var(--color-ivory);
  padding: 5.5rem 3.5rem 2.5rem 3.5rem;
  border-top: 3px solid var(--color-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

.footer-col h4 {
  font-family: var(--font-serif) !important;
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #B5A8A0;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  font-family: var(--font-sans);
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #888888;
  font-family: var(--font-sans);
}

.social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-gold-light);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--color-gold);
  color: var(--color-maroon-dark);
  transform: translateY(-3px);
}

/* TABLET / iPad OPTIMIZATIONS (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .header-top {
    padding: 0.45rem 2rem;
    font-size: 0.68rem;
  }

  .header-top-info {
    gap: 1.25rem;
  }

  .global-nav {
    padding: 0.65rem 2rem;
  }

  .has-hero-overlay .global-nav {
    padding: 0.85rem 2rem 1.1rem;
  }

  .has-hero-overlay .global-nav.is-scrolled {
    padding: 0.65rem 2rem;
  }

  /* Full-screen hero on tablet */
  .hero-fullscreen {
    height: 100vh;
    height: 100svh;
    min-height: 420px;
  }

  .tejoo-b2b-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tejoo-b2b-intro-col {
    position: static;
  }

  .hero-slide-caption {
    bottom: 4rem;
  }

  .hero-caption-title {
    font-size: clamp(1.6rem, 4vw, 2.35rem);
  }

  .hero-slide-dots {
    bottom: 1.25rem;
  }

  .brand-portfolio-section {
    padding: 5rem 2rem 5.25rem;
  }

  .brand-portfolio-intro {
    margin-bottom: 2.5rem;
  }

  .section-padding {
    padding: 4.5rem 2rem;
  }

  .reels-section {
    padding: 4rem 2rem;
  }

  .reels-row-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
    padding: 2.75rem 1.5rem;
    gap: 1.25rem;
  }

  .stat-item {
    border-right: 1px solid rgba(201, 168, 76, 0.25);
    border-bottom: none;
    padding-bottom: 0;
  }

  .stat-item:last-child {
    border-right: none;
  }

  .stat-num {
    font-size: 2.35rem;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .tejoo-b2b-section {
    padding: 4.5rem 2rem;
  }

  .tejoo-b2b-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }

  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }

  .atelier-collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
    gap: 1rem;
    max-width: 100%;
  }

  .collage-item-hero {
    grid-column: span 2;
    grid-row: span 2;
  }

  .collage-item-tall {
    grid-column: span 1;
    grid-row: span 2;
  }

  .collage-item-wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .collage-caption h3 {
    font-size: 1.15rem !important;
  }

  .wholesale-section {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
    align-items: start !important;
  }

  .form-box {
    padding: 2.25rem;
  }

  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  .collection-row {
    gap: 3rem;
    padding-bottom: 3.5rem;
  }

  .category-header {
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .tab-navigation {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .tab-btn {
    padding: 0.6rem 1.15rem;
    font-size: 0.72rem;
  }

  .carousel-card-item {
    flex: 0 0 270px !important;
    width: 270px !important;
    min-width: 270px !important;
  }

  .product-img {
    height: 330px;
  }

  .running-gallery-card {
    width: 240px;
    height: 320px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }

  .gallery-item {
    height: 320px;
  }

  .site-footer {
    padding: 4rem 2rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-col-address {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 0.25rem;
  }

  .marquee-item {
    font-size: 0.68rem;
    gap: 0.6rem;
  }

  .brand-portfolio-section {
    padding: 5rem 2rem 5.25rem;
  }

  .brand-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}

.inquiry-modal-open {
  overflow: hidden;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.inquiry-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.inquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 11, 8, 0.72);
  backdrop-filter: blur(5px);
}

.inquiry-modal-panel {
  position: relative;
  width: min(100%, 760px);
  max-height: min(92dvh, 820px);
  overflow-y: auto;
  padding: 2.5rem;
  background: var(--color-offwhite);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.inquiry-modal-panel .section-heading {
  margin: 0.35rem 2rem 0.5rem 0;
}

.inquiry-modal-panel .body-text {
  margin-bottom: 1.5rem;
}

.inquiry-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: transparent;
  color: var(--color-maroon);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.inquiry-modal-close:hover,
.inquiry-modal-close:focus-visible {
  background: var(--color-maroon);
  color: var(--color-ivory);
}

.inquiry-submit {
  width: 100%;
}

@media (max-width: 768px) {
  .inquiry-modal {
    align-items: end;
    padding: 0;
  }

  .inquiry-modal-panel {
    width: 100%;
    max-height: 94dvh;
    padding: 2.25rem 1.1rem 1.5rem;
    border-radius: 1.1rem 1.1rem 0 0;
  }

  .inquiry-modal-panel .form-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .inquiry-modal-panel .form-full {
    grid-column: auto;
  }
}

/* HIGH-PRECISION MOBILE OPTIMIZATIONS (<768px) */

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip !important;
  }

  .has-hero-overlay .global-nav {
    width: 100dvw;
    max-width: 100dvw;
    right: auto;
    box-sizing: border-box;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .has-hero-overlay .global-nav .brand-logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .has-hero-overlay .global-nav .brand-logo-img {
    max-width: min(180px, 62vw) !important;
  }

  .has-hero-overlay .global-nav .mobile-menu-btn {
    display: block !important;
    flex: 0 0 auto;
    min-width: 44px;
    min-height: 44px;
  }

  .hero-fullscreen .hero-slide img,
  .hero-fullscreen .hero-slide picture img {
    object-position: center center;
  }

  .drawer-overlay {
    width: 100dvw;
    right: auto;
  }

  .mobile-drawer {
    visibility: hidden;
    width: min(85dvw, 360px);
    right: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-drawer.open {
    visibility: visible;
    right: 0;
    transform: translateX(0);
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 2.5rem 1rem;
    gap: 1.25rem 0.75rem;
  }

  .stats-strip .stat-item {
    min-width: 0;
    padding: 0 0.5rem 1.25rem;
    border-right: 1px solid rgba(201, 168, 76, 0.25);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  }

  .stats-strip .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stats-strip .stat-item:nth-last-child(-n + 2) {
    padding-bottom: 0;
    border-bottom: none;
  }

  .stats-strip .stat-num {
    font-size: 2rem;
  }

  .stats-strip .stat-label {
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.1em;
  }

  /* RUNNING GALLERY MOBILE (<768px) */
  .running-gallery-card {
    width: 220px !important;
    height: 300px !important;
  }

  .process-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* TEJOO B2B ADVANTAGES MOBILE */
  .tejoo-b2b-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .tejoo-b2b-intro-col {
    position: static;
  }

  .tejoo-b2b-section {
    padding: 3.5rem 1.25rem;
  }

  .tejoo-b2b-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem) !important;
  }

  .tejoo-b2b-lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .tejoo-b2b-highlights {
    gap: 0.7rem;
  }

  .tejoo-b2b-highlights li {
    font-size: 0.92rem;
  }

  .tejoo-b2b-highlights strong {
    font-size: 1.35rem;
  }

  .tejoo-b2b-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    width: 100%;
  }

  .tejoo-b2b-item {
    padding: 1.35rem 1.15rem;
    width: 100%;
  }

  .tejoo-b2b-item-title {
    font-size: 1.2rem;
  }

  .tejoo-b2b-item-body {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .tejoo-b2b-num {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  /* WHOLESALE FORM MOBILE STACK */
  .wholesale-section {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    align-items: stretch !important;
  }

  .wholesale-intro .section-heading {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }

  .wholesale-intro-text {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.96rem;
  }

  .wholesale-benefits li {
    font-size: 0.9rem;
  }

  .wholesale-wa-cta {
    margin-top: 1.5rem;
    padding: 1.15rem 1rem;
  }

  .contact-page-grid {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
  }

  .form-box-title {
    font-size: 1.45rem !important;
    margin-bottom: 1.15rem !important;
  }

  .form-control {
    padding: 0.85rem 1rem;
    font-size: 16px;
    min-height: 48px;
  }

  textarea.form-control {
    min-height: 110px;
  }

  .form-group label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .btn {
    min-height: 48px;
    padding: 0.85rem 1.5rem;
  }

  /* PAGE HERO HEADERS */
  .page-hero {
    padding-top: 3.5rem !important;
    padding-bottom: 3rem !important;
  }

  .page-hero .section-heading {
    font-size: clamp(1.75rem, 7.5vw, 2.35rem);
  }

  .page-hero .body-text {
    font-size: 0.96rem;
  }


  .marquee-container {
    padding: 0.4rem 0;
  }

  .marquee-item {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    gap: 0.5rem;
  }

  /* CREATIVE COLLAGE GRID MOBILE UNIFORM GAPLESS 2-COLUMN (<768px) */
  .atelier-collage-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: auto !important;
    gap: 0.85rem !important;
  }

  /* RESET ALL CELL SPANS ON MOBILE TO ELIMINATE ANY WHITE SPACE GAPS */
  .collage-item-hero,
  .collage-item-tall,
  .collage-item-wide,
  .collage-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 240px !important;
  }

  .collage-badge {
    top: 0.65rem !important;
    left: 0.65rem !important;
    font-size: 0.58rem !important;
    padding: 0.2rem 0.55rem !important;
  }

  .collage-caption {
    padding: 0.85rem !important;
  }

  .collage-caption h3 {
    font-size: 1.05rem !important;
  }

  /* TOP ANNOUNCEMENT BAR COMPACT REDUCE SPACING & LINE SPACING */
  .header-top {
    padding: 0.35rem 0.75rem !important;
    font-size: 0.65rem !important;
    line-height: 1.35 !important;
    flex-direction: column;
    gap: 0.15rem;
    text-align: center;
  }
  .header-top-info {
    flex-direction: column;
    gap: 0.1rem;
  }
  .global-nav {
    padding: 0.75rem 1.25rem;
  }
  .brand-logo-img {
    height: 42px !important;
  }

  /* FULL-SCREEN HERO MOBILE */
  .hero-fullscreen {
    height: 100vh;
    height: 100svh;
    min-height: 360px;
  }

  .hero-slide-caption {
    left: 1.25rem;
    bottom: 3.75rem;
    max-width: calc(100% - 2.5rem);
  }

  .hero-caption-tag {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .hero-caption-title {
    font-size: 1.65rem;
  }

  .hero-slide-dots {
    bottom: 1rem;
    padding: 0.35rem 0.65rem;
  }

  .hero-slide-dots button {
    width: 6px;
    height: 6px;
  }

  .hero-slide-dots button.active {
    width: 20px;
  }

  /* SECTION PADDING */
  .section-padding {
    padding: 3.5rem 1.25rem;
  }

  .brand-portfolio-section {
    padding: 4.5rem 1.25rem 4.75rem;
  }

  .brand-portfolio-intro {
    margin-bottom: 2.25rem;
  }

  .brand-portfolio-intro .section-heading {
    font-size: 1.75rem;
  }

  .brand-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .brand-logo-card {
    padding: 1.25rem 0.75rem;
  }

  .brand-logo-card img {
    max-height: 38px;
  }

  .brand-logo-card h4 {
    font-size: 0.85rem;
  }

  /* CATEGORY CARDS GRID MOBILE */
  .category-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* COLLECTIONS PAGE MOBILE STRICT STACKING: IMAGE ALWAYS ORDER 1 (TOP), TEXT ALWAYS ORDER 2 (BOTTOM) */
  .collection-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    padding-bottom: 3rem !important;
  }

  .collection-img-col {
    order: 1 !important;
    width: 100% !important;
  }

  .collection-text-col {
    order: 2 !important;
    width: 100% !important;
  }

  /* ABOUT US 2-COLUMN GRID FIX FOR MOBILE (TOP TEXT, BOTTOM IMAGE) */
  .about-heritage-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .about-heritage-img {
    width: 100% !important;
    height: 380px !important;
    margin-top: 1rem !important;
  }

  /* SUB-LABEL DUAL CARDS MOBILE */
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }

  /* CATEGORY HEADER & TAB NAVIGATION COMPACT HORIZONTAL SCROLL */
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .tab-navigation {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem !important;
    justify-content: flex-start !important;
    padding-bottom: 0.5rem !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .tab-navigation::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex: 0 0 auto !important;
    padding: 0.55rem 1.2rem !important;
    font-size: 0.72rem !important;
  }

  /* B2B CAROUSEL CARDS MOBILE (HORIZONTAL SCROLLING CAROUSEL) */
  .collections-carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 1.25rem !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    padding: 0.5rem 0.25rem 1.5rem 0.25rem !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-card-item {
    flex: 0 0 280px !important;
    width: 280px !important;
    min-width: 280px !important;
  }

  .carousel-nav-btn {
    display: none;
  }

  .product-img {
    height: 320px;
  }

  .product-info {
    padding: 1.25rem;
  }

  .product-name {
    font-size: 1.25rem !important;
  }

  .product-desc {
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
    line-height: 1.45;
  }

  /* REELS ROW MOBILE (2 BY 2 GRID) */
  .reels-row-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .reels-section {
    padding: 3rem 1.25rem;
  }

  /* FEATURES & FORM */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.25rem 1.1rem;
  }

  .feature-icon-svg {
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .feature-title {
    font-size: 1.2rem;
  }

  .feature-body {
    font-size: 0.9rem;
  }
  .form-box {
    padding: 2rem 1.25rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-full {
    grid-column: span 1;
  }

  /* GALLERY GRID MOBILE */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }
  .gallery-item {
    height: 260px !important;
  }

  /* MOBILE FOOTER: NAVIGATION (COL 1) & CATEGORIES (COL 2) SIDE-BY-SIDE, STORE ADDRESS FULL WIDTH BELOW */
  .site-footer {
    padding: 3.5rem 1.25rem 2rem 1.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem 1.25rem !important;
  }
  .footer-col-brand {
    grid-column: span 2 !important;
  }
  .footer-col-nav {
    grid-column: span 1 !important;
  }
  .footer-col-cat {
    grid-column: span 1 !important;
  }
  .footer-col-address {
    grid-column: span 2 !important;
    width: 100% !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }
  .footer-links li {
    margin-bottom: 0.6rem;
  }
  .footer-links a {
    font-size: 0.85rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
@media (hover: none) and (pointer: coarse) {
  .tejoo-b2b-item:hover {
    transform: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 8px 28px rgba(0, 0, 0, 0.22);
    border-color: rgba(201, 168, 76, 0.35);
  }
}


@media (max-width: 768px) {
  .hero-slide .desktop-hero-caption {
    display: none;
  }

  .hero-slide .mobile-hero-caption {
    display: block;
  }
}
