/* ═══════════════════════════════════════════════════════════════
   KRIDHA CLOTH HOUSE — LUXURY INDIAN ETHNIC & BOUTIQUE DESIGN SYSTEM
   Founder: Nisha Sharma
   Theme: Royal Velvet Crimson, Warm Boutique Shelf Cream, Heritage Gold
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* ── Color Palette ── */
  --primary-crimson: #54061a;
  --primary-ruby: #be123c;
  --crimson-hover: #730a25;
  --primary-gold: #d4af37;
  --gold-accent: #f59e0b;
  --gold-dark: #b45309;
  --gold-light: #fef3c7;
  --gold-border: rgba(212, 175, 55, 0.35);

  --bg-page: #faf6f2;
  --bg-shelf: #fcf8f5;
  --bg-shelf-border: #ebdcd5;
  --bg-silk: #fff1f2;
  --bg-card: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-dark: #120206;

  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --border-color: #ede2db;
  --border-light: #f5ece7;

  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;

  /* ── Shadows & Radius ── */
  --shadow-sm: 0 2px 6px rgba(84, 6, 26, 0.04);
  --shadow-md: 0 8px 22px rgba(84, 6, 26, 0.08);
  --shadow-lg: 0 16px 36px rgba(84, 6, 26, 0.12);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.3);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* ── Typography ── */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container-width: 1280px;
  --header-height: 74px;
}

/* ── Global Resets ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.main-content {
  flex: 1;
}

/* ── Top Announcement Bar ── */
.top-announcement-bar {
  background: linear-gradient(135deg, #2b030d, #4c0519);
  color: #fef3c7;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-notice {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #86efac;
  font-weight: 700;
  transition: color 0.2s ease;
}

.top-wa-btn:hover {
  color: #ffffff;
}

/* ── Main Site Header ── */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  color: var(--primary-crimson);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
  box-shadow: var(--shadow-sm);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-crimson);
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── Header Search Bar ── */
.header-search-form {
  flex: 1;
  max-width: 440px;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrap .search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  font-size: 18px;
  pointer-events: none;
}

.header-search-input {
  width: 100%;
  padding: 9px 50px 9px 40px;
  background: #fdf8f6;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  color: var(--text-dark);
  transition: all 0.25s ease;
  outline: none;
}

.header-search-input:focus {
  background: #ffffff;
  border-color: var(--primary-ruby);
  box-shadow: 0 0 0 4px rgba(190, 18, 60, 0.1);
}

.search-submit-btn {
  position: absolute;
  right: 4px;
  background: linear-gradient(135deg, var(--primary-crimson), var(--primary-ruby));
  color: #ffffff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-submit-btn:hover {
  opacity: 0.95;
  transform: scale(1.05);
}

/* ── Header Navigation (Desktop) ── */
.main-nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  transition: color 0.2s ease;
  padding: 6px 0;
  position: relative;
}

.nav-link .material-icons {
  font-size: 18px;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-ruby);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-ruby);
  border-radius: 2px;
}

.header-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.header-wa-btn:hover {
  background: #1eb956;
  transform: translateY(-1px);
}

.mobile-header-actions {
  display: none;
}

/* ── Mobile Navigation Drawer ── */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 290px;
  background: #ffffff;
  z-index: 10000;
  box-shadow: 4px 0 24px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  background: linear-gradient(135deg, #350410, #54061a);
  color: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer-list {
  list-style: none;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.2s ease;
}

.mobile-drawer-link:hover {
  background: var(--bg-silk);
  color: var(--primary-ruby);
}

.mobile-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
  background: #fdf8f6;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════════════
   1. EDITORIAL LUXURY HERO SLIDER
   ═══════════════════════════════════════════════════════════════ */
.luxury-hero-section {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}

.luxury-hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.hero-slide:nth-child(1) { background-position: center 25%; }
.hero-slide:nth-child(2) { background-position: center 15%; }
.hero-slide:nth-child(3) { background-position: center 20%; }

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 2, 6, 0.92) 0%, rgba(14, 2, 6, 0.72) 48%, rgba(14, 2, 6, 0.2) 100%);
}

.hero-slide-container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-slide-content {
  max-width: 580px;
  color: #ffffff;
  padding: 40px 0;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fde68a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-slide-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-slide-sub {
  font-size: 1.05rem;
  color: #ffe4e6;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-slide-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d4af37, #b45309);
  color: #1a0800;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
  transition: all 0.25s ease;
  border: 1px solid rgba(254, 243, 199, 0.4);
}

.btn-hero-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.btn-hero-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.btn-hero-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
}

.hero-slider-arrow:hover {
  background: rgba(212, 175, 55, 0.85);
  color: #1a0800;
  border-color: #fef3c7;
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.hero-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.hero-dot.active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--primary-gold);
  border-color: #fef3c7;
}

.luxury-pillars-bar {
  background: linear-gradient(135deg, #1f030a, #380413);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 16px 0;
  color: #ffffff;
}

.pillars-flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 10px;
}

.pillar-icon {
  font-size: 24px;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.pillar-text {
  display: flex;
  flex-direction: column;
}

.pillar-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fde68a;
  line-height: 1.2;
}

.pillar-desc {
  font-size: 0.76rem;
  color: #ffe4e6;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORY FILTER PILLS STRIP
   ═══════════════════════════════════════════════════════════════ */
.category-filter-strip {
  padding: 24px 0 10px;
}

.category-pills-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

.category-pills-scroll::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.cat-pill .material-icons {
  font-size: 18px;
  color: var(--primary-ruby);
}

.cat-pill:hover {
  background: var(--bg-silk);
  border-color: var(--primary-ruby);
  color: var(--primary-crimson);
}

.cat-pill.active {
  background: linear-gradient(135deg, var(--primary-crimson), #730a25);
  color: #ffffff;
  border-color: var(--primary-crimson);
  box-shadow: 0 4px 14px rgba(84, 6, 26, 0.25);
}

.cat-pill.active .material-icons {
  color: #fde68a;
}

/* ═══════════════════════════════════════════════════════════════
   STORE SHELF SECTION & PRODUCT CARDS (Inspired by Reference Design)
   ═══════════════════════════════════════════════════════════════ */
.shelf-section {
  padding: 24px 0 36px;
}

.store-shelf-card {
  background: var(--bg-shelf);
  border: 1px solid var(--bg-shelf-border);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}

.shelf-header-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 14px;
}

.shelf-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.shelf-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-crimson), var(--primary-ruby));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  margin-top: 2px;
}

.shelf-subtitle {
  font-size: 0.76rem;
  color: var(--primary-ruby);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
}

.shelf-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-crimson);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.shelf-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.shelf-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-crimson);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid var(--bg-shelf-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.shelf-view-all-btn:hover {
  background: var(--primary-crimson);
  color: #ffffff;
  border-color: var(--primary-crimson);
}

/* ── Shelf Product Card (Crisp White Card on Cream Shelf) ── */
.shelf-product-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.shelf-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-ruby);
}

.shelf-product-card .card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, var(--primary-crimson), var(--primary-ruby));
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.card-wishlist-btn:hover {
  color: #e11d48;
  transform: scale(1.08);
}

.card-wishlist-btn .material-icons {
  font-size: 18px;
}

.shelf-img-box {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  background: #faf5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.shelf-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.shelf-product-card:hover .shelf-product-img {
  transform: scale(1.04);
}

.shelf-no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--text-light);
}

.shelf-card-details {
  padding: 14px 6px 4px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shelf-cat-label {
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.shelf-product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.shelf-product-name:hover {
  color: var(--primary-ruby);
}

.shelf-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
  margin-top: auto;
}

.shelf-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-crimson);
}

.shelf-tax {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.shelf-actions-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-shelf-whatsapp {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #ffffff;
  padding: 9px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.btn-shelf-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-shelf-whatsapp .material-icons {
  font-size: 16px;
}

.btn-shelf-view {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-silk);
  border: 1px solid rgba(190, 18, 60, 0.2);
  color: var(--primary-crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-shelf-view:hover {
  background: var(--primary-crimson);
  color: #ffffff;
}

.btn-shelf-view .material-icons {
  font-size: 18px;
}

/* ── Shelf Bottom Trust Strip ── */
.shelf-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--bg-shelf-border);
}

.shelf-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: var(--radius-md);
}

.shelf-trust-icon {
  font-size: 24px;
  color: var(--primary-crimson);
  flex-shrink: 0;
}

.shelf-trust-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--primary-crimson);
  line-height: 1.2;
}

.shelf-trust-item span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ── Owl Carousel Shelf Controls ── */
.shelf-carousel .owl-nav button.owl-prev,
.shelf-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: var(--primary-crimson) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: 1px solid var(--border-color) !important;
  z-index: 10;
  cursor: pointer;
}

.shelf-carousel .owl-nav button.owl-prev { left: -14px; }
.shelf-carousel .owl-nav button.owl-next { right: -14px; }

.shelf-carousel .owl-nav button.owl-prev.disabled,
.shelf-carousel .owl-nav button.owl-next.disabled {
  opacity: 0.35 !important;
  cursor: default !important;
  pointer-events: none;
}

.shelf-carousel .owl-nav button:hover {
  background: var(--primary-crimson) !important;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .shelf-carousel .owl-nav button.owl-prev,
  .shelf-carousel .owl-nav button.owl-next {
    width: 36px;
    height: 36px;
    top: 36%;
    display: flex !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.22) !important;
  }
  .shelf-carousel .owl-nav button.owl-prev { left: 4px; }
  .shelf-carousel .owl-nav button.owl-next { right: 4px; }
}

.shelf-carousel .owl-dots {
  margin-top: 18px;
  text-align: center;
}

.shelf-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px 5px;
  background: #d1c4be !important;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.2s ease;
}

.shelf-carousel .owl-dot.active span {
  width: 22px;
  border-radius: var(--radius-pill);
  background: var(--primary-crimson) !important;
}

/* ═══════════════════════════════════════════════════════════════
   2. DEDICATED CATALOG PAGE (/products) & THREE-COLUMN LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.collection-hero {
  background: linear-gradient(135deg, #2b030d 0%, #54061a 100%);
  color: #ffffff;
  padding: 36px 0 40px;
  border-bottom: 2px solid var(--primary-gold);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.breadcrumb-nav a {
  color: var(--primary-crimson);
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
  color: var(--primary-ruby);
  text-decoration: underline;
}

.breadcrumb-sep {
  font-size: 14px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
}

.breadcrumb-current {
  color: var(--text-dark);
  font-weight: 700;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 576px) {
  .breadcrumb-nav {
    font-size: 0.8rem;
    gap: 4px;
    margin-bottom: 12px;
  }
  .breadcrumb-current {
    max-width: 150px;
  }
}

.collection-hero-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.collection-hero-desc {
  font-size: 0.95rem;
  color: #ffe4e6;
  max-width: 680px;
}

.store-main-layout {
  padding: 30px 20px 50px;
}

/* ── Active Search Query Banner ── */
.active-search-banner {
  background: #fff1f2;
  border: 1.5px solid #fecdd3;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.clear-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-crimson);
  font-size: 0.85rem;
  font-weight: 700;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid #fecdd3;
}

/* ── Catalog Filter Bar ── */
.catalog-filter-bar {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.filter-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-count-badge {
  font-size: 0.78rem;
  background: var(--bg-silk);
  color: var(--primary-crimson);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.category-chips-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.category-chips-scroll::-webkit-scrollbar {
  display: none;
}

.chip-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: #fdf8f6;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-body);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.chip-item:hover {
  background: var(--bg-silk);
  border-color: var(--primary-ruby);
  color: var(--primary-crimson);
}

.chip-item.active {
  background: linear-gradient(135deg, var(--primary-crimson), #730a25);
  color: #ffffff;
  border-color: var(--primary-crimson);
}

.catalog-filter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

.filter-field {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-body);
}

.filter-select,
.filter-input-num {
  padding: 6px 12px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  background: #ffffff;
  color: var(--text-dark);
  outline: none;
}

.filter-input-num {
  width: 80px;
}

.filter-select:focus,
.filter-input-num:focus {
  border-color: var(--primary-ruby);
}

.filter-btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--primary-crimson), var(--primary-ruby));
  color: #ffffff;
  border: none;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn-apply:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.filter-btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 6px 12px;
}

/* ── 3-Column Catalog Layout ── */
.three-col-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 24px;
  align-items: start;
}

.side-column {
  display: flex;
  flex-direction: column;
}

.side-sticky-box {
  position: sticky;
  top: 90px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.side-box-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-crimson);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.side-product-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.side-card:hover {
  background: #ffffff;
  border-color: var(--primary-ruby);
  box-shadow: var(--shadow-sm);
}

.side-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.side-card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.side-card-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-card-price {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-crimson);
}

.side-buy-link {
  font-size: 0.74rem;
  color: var(--primary-ruby);
  font-weight: 700;
  margin-top: 2px;
}

.center-catalog-area {
  display: flex;
  flex-direction: column;
}

/* ── Standard Product Card (Used on Catalog & Detail Pages) ── */
.products-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-ruby);
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--primary-crimson), var(--primary-ruby));
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.fk-img-container,
.product-img-container {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  background: #faf7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.fk-product-img,
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.product-card:hover .fk-product-img,
.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--text-light);
}

.product-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat-tag {
  font-size: 0.74rem;
  color: var(--primary-ruby);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.product-title:hover {
  color: var(--primary-ruby);
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
  margin-top: auto;
}

.current-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-crimson);
}

.card-actions-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.btn-buy-action {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--primary-crimson), var(--primary-ruby));
  color: #ffffff;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.2px;
  line-height: 1;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-buy-action svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.btn-buy-action:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.btn-buy-action.btn-whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.btn-buy-action.btn-whatsapp:hover {
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-yt-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-yt-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.btn-yt-icon:hover {
  background: #dc2626;
  color: #ffffff;
  transform: translateY(-1px);
}

/* ── Pagination ── */
.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.pg-btn,
.pg-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.pg-num.active {
  background: var(--primary-crimson);
  color: #ffffff;
  border-color: var(--primary-crimson);
}

.pg-btn:hover,
.pg-num:hover:not(.active) {
  border-color: var(--primary-ruby);
  background: var(--bg-silk);
}

/* ── Catalog Loader Overlay ── */
.catalog-loader-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 246, 242, 0.88);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.catalog-loader-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.catalog-loader-spinner {
  background: #ffffff;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-color);
}

.spinner-icon {
  animation: spin 1s linear infinite;
  color: var(--primary-crimson);
}

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

/* ═══════════════════════════════════════════════════════════════
   3. PRODUCT DETAIL PAGE (/product/:slug)
   ═══════════════════════════════════════════════════════════════ */
.product-detail-section {
  padding: 30px 20px 60px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.pdp-gallery-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdp-gallery-main {
  width: 100%;
  height: 480px;
  background: #faf7f5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.pdp-thumb-btn {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  background: #ffffff;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.pdp-thumb-btn.active,
.pdp-thumb-btn:hover {
  border-color: var(--primary-ruby);
}

.pdp-info-column {
  display: flex;
  flex-direction: column;
}

.pdp-badge-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.pdp-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-crimson);
  margin-bottom: 14px;
  line-height: 1.25;
}

.pdp-price-box {
  background: var(--bg-silk);
  border: 1px solid rgba(190, 18, 60, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pdp-price-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-crimson);
}

.pdp-actions-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pdp-btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-crimson), var(--primary-ruby));
  color: #ffffff;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.pdp-btn-buy.whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.pdp-btn-buy:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.pdp-btn-yt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
}

.pdp-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.pdp-trust-item .material-icons {
  font-size: 22px;
  color: var(--primary-crimson);
}

/* ── Quality & Trust Features Box ── */
.pdp-features-list {
  list-style: none;
  padding: 16px 18px;
  margin-top: 20px;
  background: #fdfbf9;
  border: 1px solid rgba(84, 6, 26, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

.pdp-features-list li .material-icons,
.pdp-features-list li svg {
  font-size: 20px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.pdp-features-list li .material-icons {
  color: var(--primary-crimson);
}

/* ═══════════════════════════════════════════════════════════════
   4. YOUTUBE LOOKBOOK SHOWCASE & COLLECTIONS
   ═══════════════════════════════════════════════════════════════ */
.yt-group-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 10px;
}

.yt-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000000;
}

.yt-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-products-side {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.yt-side-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.yt-side-title {
  font-weight: 700;
  color: var(--primary-crimson);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   5. ABOUT CURATOR & FOUNDER (Nisha Sharma)
   ═══════════════════════════════════════════════════════════════ */
.about-curator-preview {
  padding: 50px 0;
}

.curator-preview-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.curator-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--primary-gold);
}

.curator-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.curator-badge-gold {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: linear-gradient(135deg, #d4af37, #b45309);
  color: #1a0800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.curator-info-wrap {
  display: flex;
  flex-direction: column;
}

.curator-sub {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-ruby);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.curator-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-crimson);
  margin-bottom: 14px;
  line-height: 1.15;
}

.curator-story {
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 22px;
}

.curator-contact-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.curator-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.curator-pill svg,
.about-contact-pill svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.curator-pill.wa-pill {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}
.curator-pill.wa-pill:hover {
  background: #16a34a;
  color: #ffffff;
}

.curator-pill.fb-pill {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
.curator-pill.fb-pill:hover {
  background: #1d4ed8;
  color: #ffffff;
}

.curator-pill.insta-pill {
  background: #fdf2f8;
  color: #db2777;
  border: 1px solid #fbcfe8;
}
.curator-pill.insta-pill:hover {
  background: #db2777;
  color: #ffffff;
}

.curator-pill.yt-pill {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.curator-pill.yt-pill:hover {
  background: #dc2626;
  color: #ffffff;
}

.curator-pill.email-pill {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-crimson);
  font-weight: 700;
  font-size: 0.92rem;
  transition: gap 0.2s ease;
}
.btn-read-more:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════════
   5. REVAMPED ABOUT US PAGE (Exact Match to Design Mockup)
   ═══════════════════════════════════════════════════════════════ */
.about-v2-hero {
  padding: 60px 0 70px;
  background: var(--bg-page);
}

.about-v2-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-v2-hero-text {
  display: flex;
  flex-direction: column;
}

.about-v2-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-v2-tag-line {
  display: inline-block;
  width: 44px;
  height: 1.5px;
  background: var(--primary-gold);
}

.about-v2-title {
  font-family: var(--font-serif);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--primary-crimson);
  line-height: 1.14;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.about-v2-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

.about-v2-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-about-wine {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4c0519, #6e0924);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(76, 5, 25, 0.25);
  transition: all 0.25s ease;
}

.btn-about-wine:hover {
  background: linear-gradient(135deg, #6e0924, #9f1239);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 5, 25, 0.35);
  color: #ffffff;
}

.about-v2-img-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(84, 6, 26, 0.12);
  border: 1px solid var(--border-color);
  background: #faf5f2;
}

.about-v2-hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* ── Middle Section: Our Story & 4 Pillars ── */
.about-v2-story {
  padding: 70px 0 80px;
  background: var(--bg-shelf);
  border-top: 1px solid var(--bg-shelf-border);
  border-bottom: 1px solid var(--bg-shelf-border);
}

.about-v2-story-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.about-v2-round-frame-box {
  display: flex;
  justify-content: center;
  position: relative;
}

.about-v2-round-img-wrap {
  position: relative;
  width: 330px;
  height: 330px;
}

.about-v2-round-img {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 12px 36px rgba(84, 6, 26, 0.15);
}

.about-v2-floating-badge {
  position: absolute;
  top: 10px;
  right: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #1a0208;
  border: 3px solid var(--primary-gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}

.about-v2-badge-seal {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.about-v2-story-content {
  display: flex;
  flex-direction: column;
}

.about-v2-story-heading {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-crimson);
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-v2-story-p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 28px;
}

.about-v2-pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.about-v2-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.about-v2-pillar-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.about-v2-pillar-icon-wrap .material-icons {
  font-size: 20px;
}

.about-v2-pillar-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-crimson);
  line-height: 1.2;
}

.about-v2-pillar-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Bottom Section: Heritage Strip (Wear Your Story) ── */
.about-v2-heritage-strip {
  background: linear-gradient(135deg, #150207 0%, #2e040f 100%);
  color: #ffffff;
  padding: 56px 0 60px;
  border-top: 3px solid var(--primary-gold);
}

.heritage-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 34px;
}

.heritage-strip-subtitle {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fde68a;
  text-transform: uppercase;
  display: block;
}

.heritage-strip-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 4px;
}

.heritage-script-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--primary-gold);
  display: block;
}

.heritage-divider-ornament {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.heritage-divider-ornament .ornament-line {
  width: 40px;
  height: 1px;
  background: var(--primary-gold);
}

.about-contact-pills-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.about-contact-pill.wa {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.about-contact-pill.wa:hover {
  background: #15803d;
  color: #ffffff;
}

.about-contact-pill.fb {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
.about-contact-pill.fb:hover {
  background: #1d4ed8;
  color: #ffffff;
}

.about-contact-pill.insta {
  background: #fdf2f8;
  color: #be185d;
  border: 1px solid #fbcfe8;
}
.about-contact-pill.insta:hover {
  background: #be185d;
  color: #ffffff;
}

.about-contact-pill.yt {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.about-contact-pill.yt:hover {
  background: #dc2626;
  color: #ffffff;
}

.about-contact-pill.email {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
}

.about-contact-pill.gold {
  background: linear-gradient(135deg, #d4af37, #b45309);
  color: #1a0800;
}
.about-contact-pill.gold:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* ── Mobile Responsive for About v2 ── */
@media (max-width: 768px) {
  .about-v2-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-v2-title {
    font-size: 2.1rem;
  }

  .about-v2-hero-img {
    height: 320px;
  }

  .about-v2-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-v2-round-img-wrap {
    width: 260px;
    height: 260px;
  }

  .about-v2-round-img {
    width: 260px;
    height: 260px;
  }

  .about-v2-floating-badge {
    width: 90px;
    height: 90px;
    right: -10px;
  }

  .about-v2-story-heading {
    font-size: 1.7rem;
  }

  .about-v2-pillars-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-v2-pillar {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .heritage-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .heritage-strip-title {
    font-size: 1.7rem;
  }

  .heritage-script-text {
    font-size: 1.8rem;
  }

  .about-contact-pills-row {
    flex-direction: column;
    align-items: stretch;
  }

  .about-contact-pill {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   6. SARTHI FLOATING WHATSAPP WIDGET
   ═══════════════════════════════════════════════════════════════ */
.sarthi-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sarthi-fab:hover { transform: scale(1.08); }
.sarthi-fab.hidden { opacity: 0; pointer-events: none; transform: scale(0.7); }

.sarthi-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid #25D366;
  opacity: 0;
  animation: sarthiPulseOut 2.2s ease infinite;
}

.sarthi-pulse-ring-2 {
  inset: -12px;
  animation-delay: 0.7s;
}

@keyframes sarthiPulseOut {
  0% { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

.sarthi-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #25D366;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.sarthi-badge-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #25D366;
  border: 2.5px solid #ffffff;
}

.sarthi-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9991;
  width: 330px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.94);
  transform-origin: bottom right;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
}

.sarthi-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sarthi-panel-header {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #ffffff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sarthi-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sarthi-panel-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.5);
}

.sarthi-panel-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.sarthi-panel-status {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 5px;
}

.sarthi-online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a7f3d0;
  animation: liveBlinkPulse 1.8s infinite;
}

.sarthi-close-btn {
  background: rgba(255,255,255,0.18);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sarthi-close-btn .material-icons { font-size: 18px; }

.sarthi-panel-body {
  padding: 16px 18px;
  background: #f0f2f5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sarthi-chat-bubble {
  background: #ffffff;
  border-radius: 12px 12px 12px 2px;
  padding: 12px 14px;
  font-size: 0.87rem;
  color: var(--text-dark);
  line-height: 1.55;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.sarthi-chat-bubble p + p { margin-top: 6px; }

.sarthi-bubble-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 5px;
  font-weight: 600;
}

.sarthi-panel-footer {
  padding: 14px 18px;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
}

.sarthi-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   7. SITE FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #150207;
  color: #f1e7e4;
  padding: 60px 0 0;
  border-top: 3px solid var(--primary-gold);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #fde047;
  margin-bottom: 12px;
}

.footer-bio {
  font-size: 0.88rem;
  color: #fce7f3;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social-row {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-social-btn.fb:hover {
  background: #1877F2;
  color: #ffffff;
  border-color: #1877F2;
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.4);
}

.footer-social-btn.insta:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #ffffff;
  border-color: #d6249f;
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(214, 36, 159, 0.4);
}

.footer-social-btn.yt:hover {
  background: #FF0000;
  color: #ffffff;
  border-color: #FF0000;
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.4);
}

.footer-social-btn.wa:hover {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fde047;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

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

.footer-nav-link {
  font-size: 0.88rem;
  color: #ffe4e6;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-nav-link:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #ffe4e6;
  margin-bottom: 14px;
}

.footer-contact-item .material-icons {
  font-size: 20px;
  color: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  background: #0d0104;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.82rem;
  color: #fda4af;
}

.footer-bottom a {
  color: #fde047;
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   8. RESPONSIVE OVERHAUL (Mobile & Tablet Compatibility)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .luxury-hero-slider { height: 500px; }
  .hero-slide-title { font-size: 2.6rem; }
  .pillars-flex { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .three-col-wrapper { grid-template-columns: 1fr; }
  .side-column { display: none; }
  .products-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .shelf-trust-strip { grid-template-columns: repeat(2, 1fr); }
  .curator-preview-card { grid-template-columns: 300px 1fr; gap: 28px; padding: 28px; }
}

@media (max-width: 768px) {
  .top-announcement-bar { display: none; }

  .site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .container {
    padding: 0 12px;
    max-width: 100%;
  }

  .header-inner {
    height: 56px;
    padding: 0;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .mobile-menu-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 4px;
    flex-shrink: 0;
  }

  .brand-logo-wrap {
    gap: 8px;
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .brand-text-block {
    min-width: 0;
    overflow: hidden;
  }

  .brand-name {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.15;
  }

  .brand-sub {
    font-size: 0.54rem;
    letter-spacing: 0.4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
  }

  .header-search-form,
  .main-nav {
    display: none;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
  }

  .mobile-action-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-crimson);
    flex-shrink: 0;
  }

  .mobile-action-icon .material-icons {
    font-size: 20px;
  }

  /* ── Hero on Mobile ── */
  .luxury-hero-slider {
    height: 480px;
    min-height: 440px;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-slide {
    background-position: center 10%;
  }

  .hero-slide-overlay {
    background: linear-gradient(to top, rgba(14, 2, 6, 0.96) 0%, rgba(14, 2, 6, 0.75) 55%, rgba(14, 2, 6, 0.3) 100%);
  }

  .hero-slide-container {
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .hero-slide-content {
    max-width: 100%;
    padding: 20px 0;
    text-align: left;
  }

  .hero-slide-title {
    font-size: 2.1rem;
    margin-bottom: 10px;
  }

  .hero-slide-sub {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .hero-slider-arrow {
    display: none;
  }

  .pillars-flex {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .pillar-item { padding: 4px 6px; }
  .pillar-icon { font-size: 20px; }
  .pillar-title { font-size: 0.8rem; }
  .pillar-desc { font-size: 0.68rem; }

  /* ── Store Shelf Container on Mobile ── */
  .store-shelf-card {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .shelf-header-bar {
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .shelf-title {
    font-size: 1.35rem;
  }

  .shelf-desc {
    font-size: 0.82rem;
  }

  .shelf-view-all-btn {
    font-size: 0.78rem;
    padding: 5px 12px;
  }

  /* ── Shelf Product Card on Mobile ── */
  .shelf-product-card {
    padding: 8px;
    border-radius: 14px;
  }

  .shelf-img-box {
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .shelf-product-name {
    font-size: 0.88rem;
  }

  .shelf-price {
    font-size: 1.1rem;
  }

  .btn-shelf-whatsapp {
    font-size: 0.75rem;
    padding: 8px 8px;
  }

  .btn-shelf-view {
    width: 32px;
    height: 32px;
  }

  .shelf-trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
  }

  .shelf-trust-item {
    padding: 8px 10px;
    gap: 8px;
  }

  .shelf-trust-icon {
    font-size: 20px;
  }

  .shelf-trust-item strong {
    font-size: 0.78rem;
  }

  .shelf-trust-item span {
    font-size: 0.68rem;
  }

  /* ── Catalog & PDP on Mobile ── */
  .products-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 24px;
  }

  .pdp-gallery-main {
    height: 340px;
  }

  .pdp-title {
    font-size: 1.5rem;
  }

  .yt-group-card {
    grid-template-columns: 1fr;
  }

  .curator-preview-card {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }

  .curator-img {
    height: 280px;
  }

  .curator-name {
    font-size: 1.7rem;
  }

  .curator-story {
    font-size: 0.92rem;
  }

  .about-founder-grid {
    grid-template-columns: 1fr;
  }

  .about-founder-photo {
    height: 320px;
  }

  .about-contact-list {
    grid-template-columns: 1fr;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .hero-slide-title { font-size: 1.85rem; }
  .hero-slide-actions { flex-direction: column; align-items: stretch; }
  .btn-hero-gold, .btn-hero-glass { justify-content: center; width: 100%; text-align: center; }

  .pillars-flex { grid-template-columns: 1fr; gap: 8px; }

  .sarthi-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 90px;
  }

  .sarthi-fab {
    right: 16px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
  .sarthi-avatar { width: 54px; height: 54px; }
}