/* ═══════════════════════════════════════════════════
   PLAZA JALLABIYATH — Static Offline Version
   ═══════════════════════════════════════════════════ */

:root {
  /* Desert Editorial (Warm Colors + Editorial Structure) */
  --gold: #D4AF37; /* Soft Gold */
  --gold-light: #E0C068;
  --gold-dark: #C28275; /* Terracotta / Desert Rose */
  --cream: #FDFCF0; /* Pearl Off-White */
  --cream-dark: #F0EAD6;
  --charcoal: #3E2723; /* Deep Espresso */
  --charcoal-light: #5D4037;
  --text: #3E2723;
  --text-light: #795548;
  --white: #ffffff;
  --shadow: 0 4px 30px rgba(62, 39, 35, 0.06);
  --shadow-lg: 0 20px 60px rgba(62, 39, 35, 0.1);
  --radius: 0px; /* Sharp editorial edges */
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  /* Premium System Font Stacks */
  --font-heading: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  /* Arabic font stacks */
  --font-heading-ar: 'Almarai', sans-serif;
  --font-body-ar: 'Almarai', sans-serif;
}

/* Apply Arabic fonts when page direction is RTL */
[dir="rtl"] {
  --font-heading: var(--font-heading-ar);
  --font-body: var(--font-body-ar);
}

/* Ensure English fonts for LTR direction */
[dir="ltr"] {
  --font-heading: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; cursor: pointer; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Page Routing (Show/Hide) ── */
.page {
  display: none;
  animation: fadeIn 0.8s ease-out;
}
.page--active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── RTL Support ── */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  background: rgba(253, 252, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.header--scrolled,
.header--not-home {
  background: var(--cream);
  box-shadow: var(--shadow);
}
.logo, .nav-links {
  opacity: 1;
  pointer-events: all;
  transition: var(--transition);
}
.logo {
  display: flex;
  align-items: center;
}
.logo img { 
  height: 60px; 
  width: auto;
  transition: var(--transition); 
  mix-blend-mode: multiply;
  filter: contrast(110%) brightness(105%);
}
.logo img:hover { 
  transform: scale(1.05); 
}

.nav-links { display: flex; gap: 35px; align-items: center; }
.nav-links a {
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.close-menu {
  display: none;
}

.lang-toggle {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition);
}
.lang-toggle:hover {
  background: var(--gold);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}
.header--not-home .hamburger span,
.header--scrolled .hamburger span {
  background: var(--charcoal);
}

@media (max-width: 992px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; max-width: 80%; height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 100px 10%;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 1050;
    opacity: 1 !important;
    pointer-events: all !important;
  }
  .nav-links.active { right: 0; }
  [dir="rtl"] .nav-links { right: auto; left: -100%; flex-direction: column; }
  [dir="rtl"] .nav-links.active { left: 0; }
  
  .nav-links a { font-size: 1.2rem; }
  
  .close-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: var(--cream-dark);
    color: var(--charcoal);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 1060;
    transition: var(--transition);
  }
  [dir="rtl"] .close-menu {
    right: auto;
    left: 25px;
  }
  .close-menu:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: rotate(90deg);
  }
  
  .hamburger.active {
    opacity: 0;
    pointer-events: none;
  }
  .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); }
}

/* ── Hero Split Showcase (New Editorial Layout) ── */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  background: var(--cream);
  padding: 120px 8% 80px;
  overflow: hidden;
  position: relative;
  gap: 5%;
}

.hero-content {
  flex: 1;
  max-width: 500px;
  z-index: 10;
  margin-right: auto;
  margin-left: 0;
}

[dir="rtl"] .hero-content {
  text-align: right;
}
[dir="ltr"] .hero-content {
  text-align: left;
}

.hero-brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 20px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 15px;
}

.hero-ctas .cta-button {
  padding: 14px 30px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.hero-ctas .cta-button.secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  box-shadow: none;
}
.hero-ctas .cta-button.secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}

.hero-videos-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1; /* sits behind the hero-content */
  width: 700px;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push videos to the right edge */
  gap: 30px;
  pointer-events: auto; /* allow clicking on videos */
  right: 0;
  left: auto;
}

.hero-video-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1), box-shadow 0.6s ease;
  z-index: 2;
}

.hero-video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}

.hero-video-card:hover .panel-video {
  transform: scale(1.05);
}
.hero-video-card.hero-video-circle {
  width: 300px;
  height: 520px;
  border-radius: 150px;
  margin-top: 0;
}

.hero-video-card.hero-video-box {
  width: 320px;
  height: 100%; /* stretches top-to-bottom of the container */
  border-radius: 0;
  margin-top: 0px;
}

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

.panel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

.panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
  transition: background 0.5s ease;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 24px;
  z-index: 3;
  color: var(--white);
  pointer-events: none;
  transition: transform 0.4s ease;
}

[dir="rtl"] .card-content {
  text-align: right;
}
[dir="ltr"] .card-content {
  text-align: left;
}

.card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 400;
}

.card-link {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
}

/* Elegant Luxury CTA Button styling */
.cta-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  transition: var(--transition);
  box-shadow: none;
}
.cta-button:hover { background: transparent; color: var(--charcoal); transform: none; }

.luxury-cta {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 12px 42px;
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.luxury-cta:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  transform: none;
  box-shadow: none;
}

/* ── Hero Small (About/Contact) ── */
.hero--small {
  height: 40vh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero--small .hero-content {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
}

.hero--small h1 {
  font-size: 3.5rem;
  margin: 0;
}

/* ── About Premium Redesign ── */
.about-premium { 
  padding: 120px 5%; 
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('public/about.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}
.about-container { 
  max-width: 1300px; /* Increased to allow full-width page layout and single-line sentences */
  margin: 0 auto; 
}

.about-subtitle {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
  display: block;
  margin-bottom: 25px;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 40px;
  color: var(--white);
  text-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 2px 4px rgba(0,0,0,0.5);
  font-style: italic;
}
.about-title em { font-style: italic; }

.about-text-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 400;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-item p {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* ── Tailoring Page ── */
.tailoring-services { padding: 100px 5%; background: var(--cream); }
.services-container { max-width: 1200px; margin: 0 auto; }
.services-intro { text-align: center; margin-bottom: 80px; }
.lead-text { font-size: 1.4rem; color: var(--charcoal); max-width: 800px; margin: 0 auto; line-height: 1.6; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  padding: 60px 30px;
  text-align: center;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}
.service-card:hover { transform: translateY(-10px); border-bottom-color: var(--gold); box-shadow: var(--shadow); }
.service-icon { font-size: 2.5rem; margin-bottom: 25px; }
.service-card h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--charcoal); }

/* ── Policy Pages ── */
.policy-content { padding: 100px 5%; background: var(--white); }
.container--narrow { max-width: 900px; margin: 0 auto; }
.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; text-align: left; }
.policy-item h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 20px; color: var(--charcoal); }
.policy-item p { color: var(--text-light); line-height: 1.8; }

.terms-detailed { color: var(--text-light); line-height: 1.8; }
.terms-section { margin-bottom: 40px; }
.terms-section h2 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--charcoal); margin-bottom: 20px; }
.policy-list { list-style: none; padding: 0; }
.policy-list li { position: relative; padding-left: 25px; margin-bottom: 12px; }
.policy-list li::before { content: '•'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }

[dir="rtl"] .policy-grid { text-align: right; }
[dir="rtl"] .policy-list li { padding-left: 0; padding-right: 25px; }
[dir="rtl"] .policy-list li::before { left: auto; right: 0; }

.text-left { text-align: left; }
[dir="rtl"] .text-left { text-align: right; }

/* ── Fabrics Section ── */
.fabric-gallery { padding: 120px 5%; background: var(--cream); }
.section-header { text-align: center; margin-bottom: 80px; }
.section-subtitle { font-family: var(--font-body); color: var(--text-light); max-width: 600px; margin: 20px auto 0; font-size: 1.1rem; }

.fabric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.fabric-item { text-align: center; background: var(--white); padding: 40px 30px; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: var(--transition); }
.fabric-item:hover { transform: translateY(-10px); }
.fabric-swatch { width: 100%; height: 200px; border-radius: 4px; margin-bottom: 30px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.fabric-swatch::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent); }

/* Mimic fabric textures with generated images and premium fallbacks */
.cashmere { background-image: url('public/fabrics/cashmere.png'); }
.chiffon { background-image: url('public/fabrics/chiffon.png'); }
.crepe { background-image: url('public/fabrics/crepe.png'); }
.makmal { background-image: url('public/fabrics/velvet.png'); }
.harrir { background-image: url('public/fabrics/silk.png'); }
.satin { background-image: url('public/fabrics/satin.png'); }
.georgette { background-image: url('public/fabrics/georgette.jpg'); }

.fabric-item h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--charcoal); margin-bottom: 15px; }
.fabric-desc { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; font-style: italic; }

/* ── Redesigned Tailoring Page ── */
.hero-tailoring { 
  height: 100vh; 
  display: flex; 
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--charcoal);
  position: relative;
  overflow: hidden; 
}

.tailoring-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.45));
  z-index: 2;
  pointer-events: none;
}

.hero-video-ambient,
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-video-ambient {
  z-index: 0;
  filter: blur(20px);
  transform: scale(1.1); /* avoids blurred border artifacts */
  opacity: 0.5; /* soft ambient blend */
}

.hero-video {
  z-index: 1;
}

.hero-tailoring-content { 
  max-width: 900px;
  padding: 0 5%; 
  position: relative; 
  z-index: 10; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-tailoring h1 { 
  font-size: 5rem; 
  line-height: 1.1; 
  margin-bottom: 30px; 
  color: var(--white); 
  text-shadow: 0 4px 30px rgba(0,0,0,0.8); 
  font-family: var(--font-heading);
}
.hero-tailoring p { 
  font-size: 1.5rem; 
  color: rgba(255,255,255,0.9); 
  line-height: 1.6; 
  margin-bottom: 45px; 
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.hero-tailoring-image { display: none; }
.hero-tailoring-image img { width: 100%; height: 100%; object-fit: cover; }

.bespoke-section { 
  min-height: 100vh; 
  padding: 120px 5%; 
  background: var(--white); 
  display: flex;
  align-items: center;
  justify-content: center;
}
.bespoke-container { 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.section-label { display: block; font-size: 0.8rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 20px; font-weight: 600; }
.bespoke-text h2 { font-size: 3.5rem; margin-bottom: 35px; color: var(--charcoal); line-height: 1.2; font-family: var(--font-heading); }
.bespoke-text p { font-size: 1.2rem; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }
.bespoke-desc-wrapper { margin-bottom: 60px; }

.process-card { background: var(--cream); padding: 60px; border-radius: 4px; margin: 40px 0; width: 100%; text-align: left; }
[dir="rtl"] .process-card { text-align: right; }
.process-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 30px; }
.process-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.process-list li { display: flex; align-items: flex-start; gap: 15px; }
.process-list span { font-family: var(--font-heading); font-size: 1.2rem; color: var(--gold); font-weight: 600; }
.step-content p { font-size: 0.9rem !important; margin: 0 !important; color: var(--charcoal) !important; font-weight: 500; }

.bespoke-image img { width: 100%; border-radius: 4px; box-shadow: var(--shadow); }

[dir="rtl"] .hero-tailoring-image { order: -1; }
[dir="rtl"] .process-list li { flex-direction: row; }

/* ── Contact Section ── */
.contact-section { padding: 140px 5% 100px; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.shop-picture {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  display: block;
}
.contact-info { display: flex; flex-direction: column; gap: 30px; }

/* Info rows inside contact card */
.info-row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: flex-start;
}
.info-row:last-child { border-bottom: none; }
.info-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--charcoal);
  min-width: 90px;
  padding-top: 2px;
}
.info-value {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}
.info-value a { color: var(--gold); font-weight: 600; }
.info-value a:hover { color: var(--gold-light); text-decoration: underline; }

/* Social reach card */
.social-reach-card { background: var(--charcoal) !important; border-left-color: var(--gold) !important; }
.social-reach-card h3 { color: var(--white); }

.social-reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}
.social-reach-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(197,160,89,0.2);
  transition: var(--transition);
  text-decoration: none;
}
.social-reach-item:hover {
  background: rgba(197,160,89,0.15);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.social-reach-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}
.social-reach-item span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.social-reach-item small {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  word-break: break-all;
}
.info-card {
  padding: 40px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
}
.info-card.dark { background: var(--charcoal); color: var(--white); border-left-color: var(--gold-light); }
.info-card h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 20px; }
.info-card.dark h3 { 
  margin-bottom: 25px; 
  border-bottom: 2px solid var(--gold); 
  display: inline-block; 
  padding-bottom: 5px;
  font-size: 1.4rem;
}
.info-card.dark p {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.7);
}
.info-card.dark p span:first-child { font-weight: 700; color: var(--gold-light); text-transform: uppercase; letter-spacing: 1px; }
.info-card.dark p:last-of-type { border-bottom: none; }
.info-card.dark p:hover { background: rgba(255,255,255,0.03); padding-left: 10px; padding-right: 10px; }
.info-card a { color: var(--gold); font-weight: 600; transition: 0.3s; }
.info-card a:hover { color: var(--gold-light); text-decoration: underline; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 600px;
  /* Ensure iframe fills container */
  display: flex;
  flex-direction: column;
}

.contact-map iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Sticky Sections ── */
.sticky-wrapper { position: relative; }
.sticky-section { display: flex; position: relative; min-height: 200vh; }
.sticky-section--reverse { flex-direction: row-reverse; }

.sticky-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 8%;
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--cream);
  z-index: 5;
}
.sticky-text h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 20px; }
.sticky-text p { font-size: 1.1rem; color: var(--text-light); max-width: 450px; }

.sticky-image-container {
  flex: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--cream); /* aligns background color with the text side */
}
.sticky-image-container img {
  width: 82%;
  height: 80vh;
  max-width: 480px;
  object-fit: contain; /* show full image without zoom/crop */
  background-color: transparent; 
  padding: 0; 
  object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  border-radius: 32px; /* rounded corners */
  box-shadow: 0 20px 50px rgba(0,0,0,0.08); /* premium shadow drop */
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}
.sticky-image-container img.active {
  opacity: 1;
  z-index: 2;
  transform: translate(-50%, -50%) scale(1);
}

/* ── Collections Grid ── */
.collections-preview { padding: 100px 5%; background: var(--white); }
.section-title { font-family: var(--font-heading); font-size: 2.8rem; text-align: center; margin-bottom: 50px; }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.collection-card { 
  position: relative; 
  overflow: hidden; 
  aspect-ratio: 1/2; 
  cursor: pointer; 
  background-color: transparent; 
  border-radius: 24px; /* matching product cards */
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.collection-card img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-card:hover img { transform: scale(1.05); }
.collection-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
}

/* ── Products Page ── */
.products-content { padding: 120px 5% 80px; }
.filter-bar { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 25px;
  background: transparent;
  border: 1.5px solid var(--charcoal);
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-btn.active { background: var(--charcoal); color: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card { 
  aspect-ratio: 3/4; 
  overflow: hidden; 
  cursor: pointer; 
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.product-card img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  padding: 10px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
}
.product-card:hover img { transform: scale(1.05); }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  cursor: pointer;
}
.lightbox img { max-width: 90%; max-height: 90vh; object-fit: contain; }

/* ── Footer ── */
.footer { background: var(--charcoal); color: var(--cream); padding: 100px 5% 40px; }
.footer-inner { 
  display: grid; 
  grid-template-columns: 1.5fr 1fr 1fr; 
  gap: 80px; 
  max-width: 1200px; 
  margin: 0 auto; 
}

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-logo-wrapper {
  width: 140px;
  height: 140px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer-logo { 
  width: 145%; 
  height: 145%;
  object-fit: contain;
  filter: brightness(1.05) contrast(1.05);
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250, 248, 244, 0.7);
  max-width: 400px;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  color: var(--gold-light);
}

.footer-social a svg,
.footer-social a img {
  width: 20px;
  height: 20px;
  fill: currentColor;
  object-fit: contain;
  border-radius: 50%;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-5px);
}

.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-nav a, .footer-contact a {
  font-size: 0.9rem;
  color: rgba(250, 248, 244, 0.7);
  transition: var(--transition);
}

.footer-nav a:hover, .footer-contact a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

[dir="rtl"] .footer-nav a:hover, [dir="rtl"] .footer-contact a:hover {
  transform: translateX(-5px);
}

.footer-bottom { 
  margin-top: 80px; 
  padding-top: 30px; 
  border-top: 1px solid rgba(255,255,255,0.05); 
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(250, 248, 244, 0.4);
}

.footer-legal {
  display: flex;
  gap: 30px;
}

/* ── Floating WhatsApp & Tooltip ── */
.whatsapp-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  display: flex;
  flex-direction: column; /* Stack tooltip above the button */
  align-items: center;    /* Center horizontally */
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.whatsapp-container.whatsapp-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[dir="rtl"] .whatsapp-container {
  right: auto;
  left: 40px;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation: pulse-green 2s infinite;
  pointer-events: auto;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #128c7e;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  background: var(--charcoal);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px); /* Slides upwards into position */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 12px; /* Gap between bubble and button */
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

/* Chat bubble pointing arrow */
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: var(--gold) transparent;
  display: block;
  width: 0;
}

.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px 5px 0;
  border-style: solid;
  border-color: var(--charcoal) transparent;
  display: block;
  width: 0;
  z-index: 1;
}

.whatsapp-tooltip.active {
  opacity: 1;
  transform: translateY(0);
  animation: tooltipPulse 2.5s infinite;
}

@keyframes tooltipPulse {
  0% { box-shadow: 0 8px 20px rgba(0,0,0,0.15), 0 0 0 0 rgba(197, 160, 89, 0.4); }
  70% { box-shadow: 0 8px 20px rgba(0,0,0,0.15), 0 0 0 8px rgba(197, 160, 89, 0); }
  100% { box-shadow: 0 8px 20px rgba(0,0,0,0.15), 0 0 0 0 rgba(197, 160, 89, 0); }
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .whatsapp-container {
    bottom: 20px;
    right: 20px;
  }
  [dir="rtl"] .whatsapp-container {
    left: 20px;
    right: auto;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .whatsapp-tooltip {
    padding: 6px 12px;
    font-size: 0.72rem;
    margin-bottom: 8px;
  }
}

.footer-legal a:hover {
  color: var(--white);
}

/* ── Scrolling Marquee ── */
.marquee-container {
  width: 100%;
  background-color: var(--charcoal);
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  animation: marquee-scroll-rtl 40s linear infinite;
}

[dir="ltr"] .marquee-content {
  animation: marquee-scroll 40s linear infinite;
}

.marquee-content span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0 30px;
}

.marquee-content span.dot {
  padding: 0;
  color: var(--gold);
}

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

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

/* ── Responsive Styling (Tablets & Mobile) ── */

/* ── Tablet & Small Screens (max-width: 992px) ── */
@media (max-width: 992px) {
  /* Footer & Layout */
  .footer-inner { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 50px 20px; 
    text-align: center; 
  }
  .footer-inner .footer-section:first-child { 
    grid-column: span 2; 
  }
  .footer-desc { margin: 0 auto; }
  .footer-bottom-inner { flex-direction: column; gap: 20px; }
  .collection-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .sticky-section { flex-direction: column; min-height: auto; }
  .sticky-text { position: relative; height: auto; padding: 50px 6% 30px; text-align: center; }
  .sticky-text h2 { font-size: 2.2rem; }
  .sticky-text p { margin: 0 auto; }
  .sticky-image-container {
    position: relative;
    height: auto;
    padding: 10px 8% 20px;
    background: var(--cream);
    box-sizing: border-box;
    display: flex; /* scrollable flex slider */
    overflow-x: auto; /* horizontal scroll overflow */
    scroll-snap-type: x mandatory; /* snap scrolling support */
    scrollbar-width: none; /* hide scrollbars */
    gap: 20px;
    align-items: stretch;
  }
  .sticky-image-container::-webkit-scrollbar {
    display: none; /* hide scrollbar Chrome/Safari */
  }
  .sticky-image-container img {
    position: relative;
    flex: 0 0 38%; /* elegant peek layout: shows next card slightly on the side */
    scroll-snap-align: center; /* snap-to center */
    height: auto;
    aspect-ratio: 2 / 3;
    top: auto;
    left: auto;
    transform: none !important;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    object-fit: cover; /* uniform card fill on mobile/tablet to ensure 1 size */
    background-color: transparent; 
    padding: 0; 
    object-position: center;
    opacity: 1 !important; /* show all images in the slider on mobile */
    display: block !important; /* show in flex row flow */
    transition: opacity 0.5s ease;
  }
  .hero h1 { font-size: 2.5rem; }

  /* Contact Section */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-map {
    min-height: 450px;
  }

  /* Products Page */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Tailoring Page */
  .hero-tailoring h1 {
    font-size: 3.2rem;
  }
  .hero-tailoring p {
    font-size: 1.2rem;
  }
  .process-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-card {
    padding: 30px;
  }
  .hero-split {
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    height: auto;
    padding: 120px 5% 80px;
    gap: 15px !important;
    text-align: center;
  }
  .marquee-container {
    position: relative;
    bottom: auto;
    left: auto;
    order: 4;
    margin-top: 5px;
    margin-bottom: 5px;
    z-index: 10;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  .hero-content {
    display: contents;
  }
  .hero-brand-tag {
    order: 1;
    margin: 0 auto;
  }
  .hero-title {
    order: 2;
    margin: 0 auto;
  }
  .hero-videos-container {
    order: 3;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: 2;
    width: 100%;
    height: 600px;
    opacity: 1 !important;
    pointer-events: auto !important;
    margin-top: 5px;
    margin-bottom: 20px;
    display: block !important;
    overflow: visible !important;
  }
  .hero-subtitle {
    display: none !important;
  }
  .hero-ctas {
    order: 6;
    margin-top: 30px;
    justify-content: center;
    position: relative;
    z-index: 10;
  }
  .hero-videos-container .card-content {
    display: none !important;
  }
  .hero-video-card.hero-video-circle {
    position: absolute !important;
    left: 5% !important;
    bottom: -20px !important;
    top: auto !important;
    width: 260px !important;
    max-width: none !important;
    height: 400px !important;
    border-radius: 130px !important;
    z-index: 3 !important;
    border: 8px solid var(--cream) !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
    margin-top: 0;
  }
  .hero-video-card.hero-video-box {
    position: absolute !important;
    right: 5% !important;
    top: 0 !important;
    width: 75% !important;
    max-width: none !important;
    height: 600px !important;
    border-radius: 0 !important;
    z-index: 2 !important;
    border: none !important;
    box-shadow: 0 30px 65px rgba(0,0,0,0.15) !important;
    margin-top: 0;
  }
}

/* ── Mobile Devices (max-width: 768px) ── */
@media (max-width: 768px) {
  /* About Page Stats */
  .about-stats {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
  }

  /* Tailoring Bespoke Section */
  .bespoke-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
  .hero-split {
    justify-content: flex-start;
    min-height: auto;
    padding: 110px 5% 60px;
    gap: 40px;
  }
  .hero-videos-container {
    height: 600px;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .hero-video-card.hero-video-circle {
    position: absolute !important;
    left: 5% !important;
    bottom: -15px !important;
    top: auto !important;
    width: 215px !important;
    max-width: none !important;
    height: 335px !important;
    border-radius: 107px !important;
    border: 6px solid var(--cream) !important;
    z-index: 3 !important;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15) !important;
  }
  .hero-video-card.hero-video-box {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    width: 80% !important;
    max-width: none !important;
    height: 600px !important;
    border-radius: 0 !important;
    border: none !important;
  }
  .card-content {
    padding: 15px 12px;
  }
  .card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .card-link {
    font-size: 0.65rem;
  }
  /* Tailoring Mobile Layout: Text above & below the video */
  .hero-tailoring {
    height: auto !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 100px 5% 50px !important;
    box-sizing: border-box;
    gap: 0 !important;
  }
  .hero-video-ambient,
  .tailoring-overlay {
    display: none !important;
  }
  .hero-tailoring .hero-video {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    max-height: 40vh !important;
    object-fit: contain !important;
    order: 2 !important;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    margin-top: 20px !important;
    margin-bottom: 30px !important;
  }
  .hero-tailoring-content {
    display: contents !important;
  }
  .hero-tailoring h1 {
    order: 1 !important;
    font-size: 2.2rem !important;
    margin: 25px 0 10px 0 !important;
    text-shadow: none !important;
  }
  .hero-tailoring p {
    order: 3 !important;
    font-size: 1rem !important;
    margin: 0 0 25px 0 !important;
    text-shadow: none !important;
    max-width: 600px;
    color: rgba(255,255,255,0.85) !important;
  }
  .hero-actions {
    order: 4 !important;
    margin: 0 !important;
  }
  .hero-tailoring .cta-button {
    background: transparent !important;
    color: var(--white) !important;
    border: 1.5px solid var(--gold) !important;
    transition: all 0.3s ease;
  }
  .hero-tailoring .cta-button:hover {
    background: var(--gold) !important;
    color: var(--charcoal) !important;
  }

  /* Footer Mobile/Tablet Layout: Text right of logo */
  .brand-section {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-areas: 
      "logo text"
      "social social";
    align-items: center;
    gap: 10px 20px;
    text-align: left;
  }
  [dir="rtl"] .brand-section {
    grid-template-columns: 1fr 100px;
    grid-template-areas: 
      "text logo"
      "social social";
    text-align: right;
  }
  .brand-section .footer-logo-wrapper {
    grid-area: logo;
    margin: 0 !important;
    width: 90px;
    height: 90px;
    border-radius: 8px;
  }
  .brand-section .footer-logo {
    width: 145%;
    height: 145%;
  }
  .brand-section .footer-desc {
    grid-area: text;
    margin: 0 !important;
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .brand-section .footer-social {
    grid-area: social;
    justify-content: center;
    margin-top: 15px;
  }
}

/* ── Small Mobile Devices (max-width: 576px) ── */
@media (max-width: 576px) {
  /* Contact Section */
  .contact-section {
    padding: 100px 4% 60px;
  }
  .info-card {
    padding: 25px 20px;
  }
  .info-row {
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
  }
  .info-label {
    min-width: auto;
    font-size: 0.8rem;
  }
  .info-value {
    font-size: 0.9rem;
  }
  .social-reach-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contact-map {
    min-height: 350px;
  }

  /* Products Page */
  .products-content {
    padding: 100px 4% 60px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .filter-bar {
    flex-wrap: wrap;
    gap: 8px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  /* Tailoring Page */
  .hero-tailoring h1 {
    font-size: 2.2rem;
  }
  .hero-tailoring p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .cta-button {
    padding: 14px 30px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
  .bespoke-section {
    padding: 40px 4% 60px;
  }
  .bespoke-text h2 {
    font-size: 2rem;
  }
  .bespoke-text p {
    font-size: 1rem;
  }

  /* Fabric Gallery */
  .fabric-gallery {
    padding: 80px 4%;
  }
  .fabric-grid {
    gap: 20px;
  }
  .fabric-item {
    padding: 30px 20px;
  }

  .hero-split {
    padding: 100px 5% 60px;
    gap: 30px;
  }
  .hero-videos-container {
    height: 540px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .hero-video-card.hero-video-circle {
    position: absolute !important;
    left: 5% !important;
    bottom: -10px !important;
    top: auto !important;
    width: 170px !important;
    max-width: none !important;
    height: 265px !important;
    border-radius: 85px !important;
    border: 5px solid var(--cream) !important;
    z-index: 3 !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
  }
  .hero-video-card.hero-video-box {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    width: 82% !important;
    max-width: none !important;
    height: 540px !important;
    border-radius: 0 !important;
    border: none !important;
  }
  .card-content {
    padding: 10px 8px;
  }
  .card-content h3 {
    font-size: 0.95rem;
    margin-bottom: 2px;
  }
  .card-link {
    font-size: 0.6rem;
  }
  /* Mobile collections grid card height adjustment */
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .collection-card {
    aspect-ratio: 1/2;
    border-radius: 16px;
  }
  .collection-card img {
    padding: 0;
  }
  .collection-overlay {
    padding: 15px 6px;
  }
  .collection-overlay h3 {
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
  }
  .sticky-image-container {
    height: auto;
    padding: 10px 16px 20px;
    gap: 15px;
  }
  .sticky-image-container img {
    flex: 0 0 46%;
    height: auto;
    aspect-ratio: 2 / 3;
    padding: 0;
    border-radius: 12px;
  }

}


