/* ============================================================
   SHANIEL BESPOKE TAILOR — HOME PAGE CSS v3.0
   Ultra HDR Luxury Dark Theme — Cinematic Gold Accents
   ============================================================ */

/* Fix horizontal scrollbar */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: none;
  overflow: hidden;
  background: #000;
  /* Push content below fixed header (~134px tall) */
  padding-top: 0;
}

/* ── MOBILE: hero height like LK Tailor ── */
@media (max-width: 768px) {
  .hero {
    height: 58vh !important;
    min-height: 400px !important;
    max-height: 560px !important;
  }
}

/* ── SLIDES ───────────────────────────────────────────────── */
.hero-slider { position: relative; height: 100%; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; align-items: center; justify-content: center;
  will-change: opacity, transform;
  filter: saturate(0.85) hue-rotate(-15deg) brightness(0.95);
}

/* ── MOBILE: image top se start ho, stand crop ho jaye ── */
@media (max-width: 768px) {
  .hero-slide {
    background-position: top center !important;
  }
  .hero-slide::after {
    background-position: top center !important;
  }
}

/* Ken-Burns zoom on active */
.hero-slide::after {
  content: '';
  position: absolute; inset: -8%;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: saturate(0.85) hue-rotate(-15deg) brightness(0.95);
}
.hero-slide.active::after {
  transform: scale(1);
}

/* Multi-layer gradient overlay — lightened */
.hero-slide::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.30) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.10) 45%, transparent 70%);
}

.hero-slide.active { opacity: 1; }

/* ── CONTENT PANEL ────────────────────────────────────────── */
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 950px;
  /* 134px = fixed header clearance so text shows below header */
  padding: 134px clamp(24px, 6vw, 88px) 0;
  color: #fff;
  text-align: center;
}

/* Animated entrance for active slide */
.hero-slide .hero-content > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slide.active .hero-content > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.hero-slide.active .hero-content > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.hero-slide.active .hero-content > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.hero-slide.active .hero-content > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }

/* Heading with gold accent line */
.hero-content h1 {
  color: #fff;
  font-weight: 300;
  font-size: clamp(2rem, 5.5vw, 4rem);
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: 0.18em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  font-family: var(--font-serif);
}
.hero-content h1 strong {
  font-weight: 500;
  color: #fff;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(201, 169, 110, 0.3);
}

/* Gold accent divider — white on hero */
.hero-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  margin: 0 auto 24px;
  box-shadow: none;
}

/* Buttons row */
.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.hero-btns .btn-primary {
  background: linear-gradient(135deg, rgba(201,169,110,0.95) 0%, rgba(168,138,79,0.95) 100%);
  border: 2px solid rgba(201,169,110,0.7);
  color: #0f0c08;
  padding: 16px 52px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(201,169,110,0.35), 0 0 20px rgba(201,169,110,0.15);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-btns .btn-primary:hover {
  background: linear-gradient(135deg, rgba(219,191,135,1) 0%, rgba(201,169,110,1) 100%);
  border-color: rgba(219,191,135,0.9);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(201,169,110,0.5), 0 0 40px rgba(201,169,110,0.2);
  color: #0f0c08;
}

/* ── SIDE NAVIGATION ARROWS ───────────────────────────────── */
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37,99,168,0.3);
  color: #fff;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  outline: none;
}
.hero-prev { left: clamp(16px, 3vw, 40px); }
.hero-next { right: clamp(16px, 3vw, 40px); }
.hero-prev:hover, .hero-next:hover {
  background: linear-gradient(135deg, var(--primary), var(--gold-700));
  border-color: transparent;
  color: #0f0c08;
  box-shadow: 0 6px 24px rgba(201,169,110,0.45);
  transform: translateY(-50%) scale(1.08);
}

/* Arrow icons */
.hero-prev::before { content: '←'; font-size: 1.2rem; }
.hero-next::before { content: '→'; font-size: 1.2rem; }
.hero-prev, .hero-next { font-size: 0; } /* hide old HTML arrows */

/* ── BOTTOM CONTROLS BAR ──────────────────────────────────── */
.hero-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(24px, 5vw, 72px) 36px;
  gap: 20px;
  pointer-events: none;
}
.hero-controls > * { pointer-events: all; }

/* Slide counter */
.hero-counter {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}
.hero-counter strong { color: rgba(255, 255, 255, 0.9); font-size: 0.9rem; }

/* Dots */
.hero-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dots .dot {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.hero-dots .dot::after {
  content: '';
  position: absolute;
  inset: 0;
  left: -100%;
  background: var(--primary);
  transition: left 0s;
  border-radius: var(--radius);
}
.hero-dots .dot.active {
  background: rgba(255, 255, 255, 0.2);
  width: 28px;
}
.hero-dots .dot.active::after {
  left: 0;
  transition: left 5s linear; /* matches autoplay */
}

/* ── PROGRESS BAR ─────────────────────────────────────────── */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 12;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  width: 100%;
}
.hero-progress-fill {
  height: 100%;
  background: rgba(255,255,255,0.5);
  width: 0%;
  transition: width 5s linear;
}

/* ── SCROLL INDICATOR ─────────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 38px;
  right: clamp(24px, 5vw, 60px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255, 255, 255, 0.1));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ── SLIDE COUNT BADGE (top-right corner) ─────────────────── */
.hero-slide-num {
  position: absolute;
  top: 28px;
  right: clamp(24px, 4vw, 56px);
  z-index: 10;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}
.hero-slide-num strong {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- MARQUEE STRIP ---------- */
.marquee-strip {
  background: rgba(10,15,25,0.85);
  padding: 12px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-inner span {
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 32px;
  flex-shrink: 0;
}
.marquee-inner span::before { content: '✦'; margin-right: 32px; opacity: 0.6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.why-us { padding: 100px 0; background: var(--bg-white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.why-card {
  text-align: center; padding: 44px 32px;
  border: 1px solid rgba(201,169,110,0.15);
  background: linear-gradient(145deg, #ffffff 0%, #fdfcfa 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(201,169,110,0.06);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.05) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
}
.why-card:hover { border-color: rgba(201,169,110,0.35); box-shadow: 0 16px 48px rgba(201,169,110,0.12), 0 0 0 1px rgba(201,169,110,0.2); transform: translateY(-8px); }
.why-card:hover::before { opacity: 1; }
.why-icon { width: 64px; height: 64px; margin: 0 auto 22px; color: var(--primary); }
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.why-card p { font-size: 0.87rem; color: var(--text-light); margin: 0; line-height: 1.85; }

/* ---------- WHO WE ARE ---------- */
.who-we-are { padding: 96px 0; background: var(--bg-cream); }

/* ---------- WHAT WE DO ---------- */
.what-we-do { padding: 96px 0; background: var(--bg-white); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.service-card { position: relative; overflow: hidden; aspect-ratio: 3/4; display: block; }
.service-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease; }
.service-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 60%); }
.service-card:hover .service-img { transform: scale(1.07); }
.service-info { position: absolute; bottom: 24px; left: 20px; right: 20px; color: #fff; }
.service-info h3 { font-size: 1.15rem; color: #fff; margin-bottom: 5px; }
.service-info p { font-size: 0.78rem; color: rgba(255,255,255,0.75); margin: 0; }
.service-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem;
  opacity: 0; transition: var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; background: var(--primary); border-color: var(--primary); color: #000; }

/* ---------- CITY TOURS STRIP ---------- */
.city-tours { padding: 96px 0; background: linear-gradient(135deg, #0d1a28 0%, #1a334a 100%); }
.cities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.city-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(74,144,217,0.2);
  padding: 28px 18px; text-align: center;
  color: #fff; transition: var(--transition);
  border-radius: var(--radius); cursor: pointer;
}
.city-card:hover { background: rgba(74,144,217,0.1); border-color: var(--primary); transform: translateY(-3px); }
.city-flag { font-size: 2.2rem; margin-bottom: 10px; }
.city-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 5px; }
.city-card span { font-size: 0.72rem; color: rgba(255,255,255,0.50); display: block; line-height: 1.6; }

/* ---------- HOW IT WORKS ---------- */
.how-it-works { padding: 96px 0; background: var(--bg-cream); }
.steps-grid { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; text-align: center; padding: 0 16px; }
.step-num {
  font-family: var(--font-serif); font-size: 3rem;
  color: var(--primary); opacity: 0.35; line-height: 1; margin-bottom: 12px;
}
.step-icon {
  width: 52px; height: 52px;
  background: var(--primary); color: #000;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 14px; font-size: 1.2rem;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.83rem; color: var(--text-light); }
.step-arrow { font-size: 1.4rem; color: var(--primary-light); padding-top: 22px; flex-shrink: 0; }

/* ---------- APPOINTMENT PREVIEW ---------- */
.appointment-preview { padding: 96px 0; background: var(--bg-white); }
.appt-features { margin: 18px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.appt-features li { font-size: 0.9rem; color: var(--text-body); display: flex; align-items: center; gap: 10px; }
.appt-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* Mini Calendar */
.mini-calendar { background: var(--bg-white); border: 1px solid var(--border); box-shadow: var(--shadow-md); padding: 24px; border-radius: var(--radius); }
.mini-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mini-cal-title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--text-dark); }
.mini-cal-nav { background: none; border: 1px solid var(--border); width: 30px; height: 30px; cursor: pointer; color: var(--text-dark); transition: var(--transition); font-size: 0.85rem; border-radius: var(--radius); }
.mini-cal-nav:hover { background: var(--primary); color: #000; border-color: var(--primary); }
.mini-cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: 6px; }
.mini-cal-day-name { text-align: center; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); padding: 4px 0; }
.mini-cal-dates { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.mini-cal-date { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; cursor: pointer; transition: var(--transition); color: var(--text-body); border-radius: var(--radius); }
.mini-cal-date:hover:not(.empty):not(.disabled) { background: var(--primary); color: #000; }
.mini-cal-date.today { font-weight: 700; color: var(--primary); }
.mini-cal-date.available { background: rgba(74,144,217,0.12); }
.mini-cal-date.disabled { color: var(--border); cursor: default; }
.mini-cal-date.selected { background: var(--primary) !important; color: #000 !important; }
.mini-cal-date.empty { cursor: default; }
.mini-cal-footer { margin-top: 14px; text-align: center; font-size: 0.75rem; color: var(--text-light); }

/* ---------- FABRIC BRANDS ---------- */
.fabric-brands { padding: 80px 0; background: var(--bg-cream); }
.brands-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.brand-card { border: 1px solid var(--border); padding: 28px 18px; text-align: center; transition: var(--transition); display: block; color: inherit; background: var(--bg-white); border-radius: var(--radius); }
.brand-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); background: var(--bg-cream); }
.brand-logo-placeholder { font-family: var(--font-serif); font-size: 1.05rem; color: var(--text-dark); font-weight: 500; margin-bottom: 8px; min-height: 38px; display: flex; align-items: center; justify-content: center; }
.brand-card span { font-size: 0.73rem; color: var(--text-light); line-height: 1.5; }

/* ---------- FEATURED PRODUCTS ---------- */
.featured-products { padding: 96px 0; background: var(--bg-light); }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* Product card image — show suit left half, hide branding right */
.featured-products .product-img {
  overflow: hidden;
  height: 340px;
  background: #f8f9fa;
  position: relative;
  display: block;
}
.featured-products .product-img img {
  position: absolute;
  left: 0; top: 0;
  width: 175%;
  height: auto;
  min-height: 100%;
  object-fit: unset;
  display: block;
  transition: transform 0.35s ease;
}
.featured-products .product-card:hover .product-img img {
  transform: scale(1.04);
}
@media (max-width: 900px) {
  .featured-products .product-img { height: 260px; }
}
@media (max-width: 640px) {
  .featured-products .product-img { height: 220px; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .featured-products .product-img { height: 180px; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ---------- LOOKBOOK PREVIEW ---------- */
.lookbook-preview { padding: 96px 0; background: #0a0a0a; }
.lookbook-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1.2fr; gap: 6px; align-items: stretch; }
.lookbook-col { display: grid; grid-template-rows: 1fr 1fr; gap: 6px; }
.lookbook-item { position: relative; overflow: hidden; }
/* Support both background-div and <img> approach */
.lookbook-item > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #111;
}
.lookbook-img { width: 100%; height: 100%; min-height: 260px; background-size: contain; background-repeat: no-repeat; background-position: center; background-color: #111; transition: transform 0.7s ease; }
.lookbook-item:hover .lookbook-img { transform: scale(1.06); }
.lookbook-item:hover > img { transform: scale(1.04); transition: transform 0.6s ease; }
.lookbook-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 24px; opacity: 0; transition: var(--transition); z-index: 2; }
.lookbook-item:hover .lookbook-overlay { opacity: 1; }
.lookbook-overlay span { color: #fff; font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 12px; }
.lookbook-overlay a { padding: 8px 18px; border: 1px solid var(--primary); color: var(--primary); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; transition: var(--transition); }
.lookbook-overlay a:hover { background: var(--primary); color: #000; }

/* ---------- TESTIMONIALS HOME ---------- */
.testimonials-home { padding: 96px 0; background: var(--bg-cream); }
.testimonials-slider { position: relative; overflow: hidden; min-height: 180px; }
.testimonial-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; text-align: center; padding: 0 80px; }
.testimonial-slide.active { opacity: 1; position: relative; }
.testimonial-slide p { font-family: var(--font-serif); font-size: 1.28rem; color: var(--text-dark); font-style: italic; line-height: 1.75; margin-bottom: 24px; }
.client-info { display: flex; align-items: center; justify-content: center; gap: 14px; }
.client-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #000; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; }
.client-info strong { display: block; font-size: 0.9rem; }
.client-info span { font-size: 0.78rem; color: var(--text-light); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }

/* ---------- BLOG PREVIEW ---------- */
.blog-preview { padding: 96px 0; background: var(--bg-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { border: 1px solid var(--border); transition: var(--transition); background: var(--bg-white); border-radius: var(--radius); overflow: hidden; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card a { display: block; color: inherit; }
.blog-img { height: 210px; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-content { padding: 22px; }
.blog-cat { display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.blog-content h3 { font-size: 1.02rem; margin-bottom: 8px; color: var(--text-dark); line-height: 1.45; }
.blog-content p { font-size: 0.84rem; color: var(--text-light); margin-bottom: 10px; }
.blog-date { font-size: 0.73rem; color: var(--text-muted); }

/* ---------- NEWSLETTER ---------- */
.newsletter { padding: 72px 0; background: linear-gradient(135deg, var(--bg-cream) 0%, #faf8f3 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.newsletter-text h2 { font-size: 2rem; margin-bottom: 8px; color: var(--text-dark); }
.newsletter-text p { color: var(--text-light); margin: 0; }
.newsletter-form { display: flex; flex: 1; max-width: 460px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 1.5px solid var(--border); background: var(--bg-white); font-family: var(--font-sans); font-size: 0.9rem; outline: none; border-radius: var(--radius) 0 0 var(--radius); }
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form .btn-primary { white-space: nowrap; border-radius: 0 var(--radius) var(--radius) 0; }

/* ---------- FOOTER ---------- */
.site-footer { background: #0a0a0a; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 48px; padding: 72px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .footer-logo { font-family: var(--font-serif); font-size: 1.6rem; color: #fff; letter-spacing: 0.2em; margin-bottom: 6px; }
.footer-brand .footer-logo-sub { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.footer-brand p { font-size: 0.84rem; line-height: 1.8; margin-bottom: 20px; color: rgba(255,255,255,0.55); }
.social-links { display: flex; gap: 9px; }
.social-links a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.55); transition: var(--transition); border-radius: var(--radius); }
.social-links a:hover { border-color: var(--primary); color: var(--primary); background: rgba(74,144,217,0.1); }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-col address p { font-size: 0.83rem; margin-bottom: 6px; color: rgba(255,255,255,0.55); }
.footer-col address a { color: rgba(255,255,255,0.55); }
.footer-col address a:hover { color: var(--primary); }
.footer-hours { margin-top: 16px; }
.footer-hours strong { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 6px; font-family: var(--font-sans); }
.footer-hours span { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.seo-city-links { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.seo-city-links h5 { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 12px; }
.city-links-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.city-links-grid a { font-size: 0.72rem; color: rgba(255,255,255,0.35); padding: 4px 10px; border: 1px solid rgba(255,255,255,0.08); transition: var(--transition); border-radius: var(--radius); }
.city-links-grid a:hover { color: var(--primary); border-color: rgba(201,169,110,0.3); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-legal a:hover { color: var(--primary); }

/* ---------- RESPONSIVE HERO -------------------------------- */
@media (max-width: 768px) {
  /* ~55vh like LK Tailor — header visible upar, slider neeche */
  .hero { height: 62vh !important; min-height: 420px !important; max-height: 580px !important; }
  /* padding-top = header height (~86px) + some breathing room */
  .hero-content { padding: 100px clamp(16px, 5vw, 32px) 0 !important; }
  .hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero-btns { flex-direction: column; gap: 10px; align-items: center; }
  .hero-btns .btn-primary { padding: 14px 40px; font-size: 0.75rem; }
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }
  .hero-prev, .hero-next { width: 36px; height: 36px; }
  .hero-scroll { display: none; }
  .hero-slide-num { display: none; }
}
@media (max-width: 480px) {
  .hero { height: 60vh !important; min-height: 400px !important; }
  .hero-content { padding: 95px 16px 0 !important; }
  .hero-content h1 { font-size: clamp(1.4rem, 8vw, 2rem); }
  .hero-prev, .hero-next { display: none; }
}

/* ---------- GENERAL RESPONSIVE ----------------------------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .brands-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .cities-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .lookbook-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .steps-grid { flex-direction: column; gap: 28px; }
  .step-arrow { display: none; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: stretch; }
  .newsletter-form { max-width: 100%; flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius); }
  .newsletter-form .btn-primary { border-radius: var(--radius); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial-slide { padding: 0 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
}

/* ── FOOTER TEXT BOLD WHITE OVERRIDE ────────────────────── */
.city-links-grid a {
  color: #ffffff !important;
  font-weight: 700 !important;
  border-color: rgba(255,255,255,0.35) !important;
}
.city-links-grid a:hover {
  background: rgba(74,144,217,0.15) !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}
.seo-city-links h5 {
  color: #ffffff !important;
  font-weight: 800 !important;
}
.footer-bottom p {
  color: #ffffff !important;
  font-weight: 700 !important;
}
.footer-legal a {
  color: #ffffff !important;
  font-weight: 700 !important;
}
.footer-legal a:hover { color: var(--primary) !important; }

/* ── HERO — FORCE ALL GOLD/YELLOW TO WHITE ────────────────────
   Override --primary gold color inside the hero section
   ──────────────────────────────────────────────────────────── */
.hero *,
.hero-slide *,
.hero-content * {
  --primary: #ffffff !important;
  --primary-light: rgba(255,255,255,0.8) !important;
  --primary-dark: rgba(255,255,255,0.6) !important;
}
.hero-content h1,
.hero-content h1 strong,
.hero-content p,
.hero-content .hero-subtitle {
  color: #ffffff !important;
}
.hero-btns .btn-primary {
  background: rgba(255,255,255,0.15) !important;
  border: 2px solid rgba(255,255,255,0.85) !important;
  color: #ffffff !important;
  letter-spacing: 0.12em;
}
.hero-btns .btn-primary:hover {
  background: rgba(255,255,255,0.28) !important;
  border-color: #fff !important;
}
/* Dots white */
.hero-dots .dot {
  background: rgba(255,255,255,0.25) !important;
}
.hero-dots .dot.active {
  background: rgba(255,255,255,0.2) !important;
}
.hero-dots .dot.active::after {
  background: rgba(255,255,255,0.9) !important;
}
/* Progress bar white */
.hero-progress-fill {
  background: rgba(255,255,255,0.55) !important;
}
/* Arrow buttons */
.hero-prev, .hero-next {
  border-color: rgba(255,255,255,0.4) !important;
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
}
.hero-prev:hover, .hero-next:hover {
  background: rgba(255,255,255,0.2) !important;
  border-color: rgba(255,255,255,0.8) !important;
}

/* ── HERO MOBILE BRAND (logo + text inside slider) ──────────
   Desktop: hidden — header already shows logo
   Mobile:  visible inside slider top area
   ──────────────────────────────────────────────────────────── */
.hero-mobile-brand {
  display: none; /* hidden on desktop */
}

@media (max-width: 960px) {
  /* Show logo block inside slider on mobile */
  .hero-mobile-brand {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .hero-mobile-logo {
    width: auto;
    max-width: 180px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto 8px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  }
  .hero-mobile-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 4vw, 1.4rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  }
  .hero-mobile-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-top: 4px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }

  /* Hero content padding adjusted for mobile logo inside */
  .hero-content {
    padding-top: 95px !important;
  }

  /* Make slider image background slightly smaller on mobile */
  .hero-slide {
    background-size: cover !important;
    background-position: center 20% !important;
  }
}

@media (max-width: 480px) {
  .hero-content { padding-top: 88px !important; }
  .hero-mobile-logo { max-height: 80px !important; max-width: 150px !important; }
  .hero-mobile-tagline { font-size: clamp(0.9rem, 4vw, 1.2rem); letter-spacing: 0.18em; }
}

/* ============================================================
   SHANIEL HOMEPAGE — ULTRA HDR PREMIUM UPGRADE
   Compact, attractive, professional luxury design
   ============================================================ */

/* ── INTRO SECTION — compact ─────────────────────────────── */
.shaniel-intro {
  padding: 70px 0 !important;
  background: linear-gradient(180deg, #fdfaf5 0%, #fff 100%) !important;
  position: relative;
  overflow: hidden;
}
.shaniel-intro::before {
  content: 'SHANIEL';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(201,169,110,0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: 0.1em;
}

/* Intro 3-cards grid */
.shaniel-intro-grid {
  gap: 20px !important;
}
.shaniel-intro-grid > div {
  padding: 28px 22px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(201,169,110,0.12) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04) !important;
  transition: all 0.4s ease !important;
  position: relative;
  overflow: hidden;
}
.shaniel-intro-grid > div::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, #C9A96E, #a88a4f);
  transition: height 0.4s ease;
}
.shaniel-intro-grid > div:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 48px rgba(201,169,110,0.14) !important;
  border-color: rgba(201,169,110,0.35) !important;
}
.shaniel-intro-grid > div:hover::before { height: 100%; }
.shaniel-intro-grid > div img { max-height: 80px !important; }
.shaniel-intro-grid > div > div[style*="height:140px"] {
  height: 80px !important;
  margin-bottom: 14px !important;
}

/* ── STATS STRIP — premium dark gold ─────────────────────── */
.home-stats-strip {
  background: linear-gradient(135deg, #0d0a05 0%, #1a1208 50%, #0d0a05 100%);
  padding: 48px 0;
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.home-stat-item {
  padding: 20px;
  border-right: 1px solid rgba(201,169,110,0.12);
}
.home-stat-item:last-child { border-right: none; }
.home-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #C9A96E;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.home-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── COLLECTIONS GRID — compact ──────────────────────────── */
.collections-grid > a {
  border-radius: 12px !important;
  border: 1px solid rgba(201,169,110,0.1) !important;
  overflow: hidden !important;
  transition: all 0.35s ease !important;
  background: #fff !important;
}
.collections-grid > a:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 40px rgba(201,169,110,0.15) !important;
  border-color: rgba(201,169,110,0.4) !important;
}
.collections-grid .col-card-img {
  height: 180px !important;
  transition: transform 0.4s ease !important;
}
.collections-grid > a:hover .col-card-img {
  transform: scale(1.05) !important;
}

/* ── TRUST BADGES — premium ───────────────────────────────── */
.trust-badges-strip {
  background: linear-gradient(135deg, #fdfaf5, #fff);
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

/* ── CITY CARDS — premium upgrade ─────────────────────────── */
.city-tours {
  padding: 70px 0 !important;
  background: linear-gradient(135deg, #0d0a05 0%, #1a1208 50%, #0d0a05 100%) !important;
}
.cities-grid {
  gap: 12px !important;
}
.city-card {
  border-radius: 12px !important;
  padding: 22px 14px !important;
  background: rgba(201,169,110,0.04) !important;
  border: 1px solid rgba(201,169,110,0.12) !important;
  transition: all 0.35s ease !important;
  position: relative;
  overflow: hidden;
}
.city-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, #C9A96E, #dbbf87);
  transition: width 0.35s ease;
}
.city-card:hover {
  background: rgba(201,169,110,0.1) !important;
  border-color: rgba(201,169,110,0.4) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 40px rgba(201,169,110,0.12) !important;
}
.city-card:hover::after { width: 80%; }
.city-flag { font-size: 1.8rem !important; margin-bottom: 8px !important; }
.city-card h3 {
  font-size: clamp(0.72rem, 2vw, 0.95rem) !important;
  line-height: 1.2 !important;
  color: #fff !important;
  word-break: break-word;
  hyphens: auto;
}
.city-card span { font-size: 0.68rem !important; color: rgba(255,255,255,0.45) !important; }

/* ── FEATURED PRODUCTS — compact cards ───────────────────── */
.featured-products {
  padding: 70px 0 !important;
  background: linear-gradient(180deg, #fdfaf5 0%, #fff 100%) !important;
}
.featured-products .product-card {
  border-radius: 12px !important;
  border: 1px solid rgba(201,169,110,0.1) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
  transition: all 0.4s ease !important;
}
.featured-products .product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 50px rgba(201,169,110,0.15) !important;
  border-color: rgba(201,169,110,0.4) !important;
}
.featured-products .product-img {
  height: 260px !important;
  background: #f8f5f0 !important;
}

/* ── LOOKBOOK PREVIEW — compact ───────────────────────────── */
.lookbook-preview {
  padding: 70px 0 !important;
  background: linear-gradient(135deg, #0d0a05, #1a1208) !important;
}
.lookbook-grid {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lookbook-item {
  min-height: 240px;
}
.lookbook-overlay a {
  border-color: #C9A96E !important;
  color: #C9A96E !important;
  border-radius: 3px;
}
.lookbook-overlay a:hover {
  background: #C9A96E !important;
  color: #1a0f00 !important;
}

/* ── CONTACT SECTION — compact ───────────────────────────── */
.home-contact-section {
  padding: 70px 0 !important;
  background: linear-gradient(180deg, #fdfaf5 0%, #fff 100%) !important;
}

/* ── SECTION HEADERS — compact ───────────────────────────── */
.section-header { margin-bottom: 36px !important; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem) !important; }

/* ── MARQUEE — gold accents ───────────────────────────────── */
.marquee-strip {
  background: linear-gradient(135deg, #0d0a05, #1a1208) !important;
  border-top: 1px solid rgba(201,169,110,0.1) !important;
  border-bottom: 1px solid rgba(201,169,110,0.1) !important;
}
.marquee-inner span {
  color: rgba(201,169,110,0.7) !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.24em !important;
}
.marquee-inner span::before {
  color: rgba(201,169,110,0.3) !important;
}

/* ── HOW IT WORKS — compact ──────────────────────────────── */
.how-it-works { padding: 70px 0 !important; }

/* ── MOBILE RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
  .shaniel-intro { padding: 48px 0 !important; }
  .shaniel-intro-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .home-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .home-stat-item:nth-child(2) { border-right: none !important; }
  .home-stat-item:nth-child(3) { border-top: 1px solid rgba(201,169,110,0.12) !important; border-right: 1px solid rgba(201,169,110,0.12) !important; }
  .home-stat-item:nth-child(4) { border-top: 1px solid rgba(201,169,110,0.12) !important; border-right: none !important; }
  .cities-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .lookbook-item { min-height: 180px; }
  .featured-products .product-img { height: 200px !important; }
  .city-tours { padding: 48px 0 !important; }
  .featured-products { padding: 48px 0 !important; }
  .lookbook-preview { padding: 48px 0 !important; }
}
@media (max-width: 480px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .city-card { padding: 16px 10px !important; }
  .city-flag { font-size: 1.5rem !important; }
  .home-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
