/* ═══════════════════════════════════════════════════════════════
   DULHAN FAMILY — Homepage Specific Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── ORN SECTION DIVIDER ── */
.orn-section {
  position: relative;
}
.orn-section::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), rgba(201,144,42,0.4), var(--gold), transparent);
  margin: 0;
}

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--ivory);
  margin-top: var(--total-nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Three.js canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* Corner ornaments */
.hero-corner {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero-corner svg { width: 180px; height: 180px; }
.hero-corner-tl { top: 0; left: 0; }
.hero-corner-tr { top: 0; right: 0; }

/* Content wrapper */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

/* Hero text panel */
.hero-text { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center;
  gap: 0; 
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.hero-eyebrow-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-top: 100px;
  margin-bottom: 1.2rem;
  gap: 50px;
}
.hero-title-hindi {
  font-family: var(--ff-hindi);
  font-size: clamp(6rem, 11vw, 10rem);
  color: var(--maroon-deep);
  line-height: 0.95;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 10;
  text-shadow: 0 4px 16px rgba(92, 26, 26, 0.15);
}
.hero-title-family {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  opacity: 0.85;
}

.hero-tagline-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-tagline-line {
  flex: 1;
  max-width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.hero-tagline {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  white-space: nowrap;
}

.hero-sub {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--txt-3);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}
.hero-cta-btn {
  min-width: 200px;
}

/* Stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; }
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 3px;
}
.hero-stat-divider {
  color: var(--gold);
  font-size: 0.65rem;
  opacity: 0.6;
}

/* Hero image frame */
.hero-image-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arch {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  z-index: 2;
}
.hero-arch svg {
  width: 100%;
  height: 100%;
}

.hero-image-inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  overflow: hidden;
  background: var(--ivory-3);
  box-shadow: var(--shadow-xl), 0 0 80px rgba(92,26,26,0.12);
}
.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}
.hero-image-inner:hover img { transform: scale(1.05); }
.hero-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(26,10,0,0.4) 0%, transparent 100%);
  pointer-events: none;
}
.hero-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.2rem;
  background: rgba(250,244,228,0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.hero-img-badge-icon { font-size: 1.6rem; }
.hero-img-badge strong { display: block; font-size: 0.82rem; color: var(--ink); }
.hero-img-badge span  { font-size: 0.68rem; color: var(--txt-4); }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
  opacity: 0.5;
  animation: scroll-fade 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-grow 2s ease-in-out infinite;
}
.hero-scroll-indicator span {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
@keyframes scroll-fade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}
@keyframes scroll-grow {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════
   OUTLETS SECTION
   ═══════════════════════════════════ */
.outlets-section {
  padding: 6rem 0;
  background: var(--bg);
  position: relative;
}
.outlets-dots-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,144,42,0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.4;
}

.outlets-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.outlet-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: block;
  cursor: pointer;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  aspect-ratio: 4/5;
  text-decoration: none;
}
.outlet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.outlet-card-img-wrap {
  position: absolute;
  inset: 0;
}
.outlet-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.outlet-card:hover .outlet-card-img-wrap img { transform: scale(1.06); }

.outlet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(58,15,15,0.95) 0%,
    rgba(58,15,15,0.6) 40%,
    rgba(58,15,15,0.15) 70%,
    transparent 90%
  );
}
.sarees-overlay {
  background: linear-gradient(to top,
    rgba(26,10,0,0.95) 0%,
    rgba(26,10,0,0.55) 40%,
    rgba(26,10,0,0.15) 70%,
    transparent 90%
  );
}

/* Ornamental corner on cards */
.outlet-card-orn {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.outlet-card-orn.tl { top: 0; left: 0; }
.outlet-card-orn.br { bottom: 0; right: 0; }

/* Card body (text) */
.outlet-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.outlet-number {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.75;
}
.outlet-name {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
  margin: 0;
}
.outlet-name em {
  font-style: italic;
  color: var(--gold-light);
}
.outlet-desc {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(250,244,228,0.7);
  line-height: 1.6;
  max-width: 340px;
}
.outlet-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.3rem 0;
}
.outlet-cat {
  padding: 0.2rem 0.65rem;
  background: rgba(250,244,228,0.12);
  border: 1px solid rgba(250,244,228,0.22);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  font-size: 0.66rem;
  color: rgba(250,244,228,0.82);
}
.outlet-cat:hover { background: rgba(201,144,42,0.25); border-color: rgba(201,144,42,0.4); }

.outlet-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(201,144,42,0.4);
  border-radius: var(--r-pill);
  width: fit-content;
  transition: var(--t-base);
}
.outlet-card:hover .outlet-cta {
  background: rgba(201,144,42,0.2);
  border-color: rgba(201,144,42,0.7);
  gap: 0.8rem;
}

/* ═══════════════════════════════════
   COLLECTIONS / PRODUCTS
   ═══════════════════════════════════ */
.collections-section {
  padding: 6rem 0;
  background: var(--surface-2);
}

/* ═══════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════ */
.trust-strip {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 50%, var(--maroon-deep) 100%);
  padding: 2.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-item-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(201,144,42,0.2);
}
.trust-item-block:last-child { border-right: none; }
.trust-icon { font-size: 2rem; flex-shrink: 0; }
.trust-info { display: flex; flex-direction: column; }
.trust-info strong { font-size: 0.85rem; font-weight: 700; color: var(--gold-light); }
.trust-info span  { font-size: 0.72rem; color: rgba(240,215,160,0.6); }

/* ═══════════════════════════════════
   PROMO BANNERS
   ═══════════════════════════════════ */
.banners-section { padding: 5rem 0; background: var(--bg); }
.banners-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}
.banner-right-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
}
.banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.banner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.banner-lehenga { min-height: 480px; }
.banner-small  { min-height: 220px; }
.banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.banner-card:hover img { transform: scale(1.06); }
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(26,10,0,0.95) 0%, rgba(26,10,0,0.6) 45%, transparent 100%);
}
.banner-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  justify-content: center;
}
.banner-card.banner-small .banner-content { padding: 2rem 2.5rem; }

.banner-divider {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 140px;
  margin: 0.2rem 0 0.8rem;
}
.banner-divider .line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.banner-divider .icon {
  font-size: 0.6rem;
  color: var(--gold);
}

.banner-content h3 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ivory);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.banner-card.banner-small .banner-content h3 { font-size: clamp(1.5rem, 2.5vw, 1.9rem); }
.banner-content p {
  font-size: 0.9rem;
  color: rgba(250,244,228,0.7);
  line-height: 1.6;
  max-width: 320px;
}
.banner-cta {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.75rem 1.8rem;
  background: rgba(80, 20, 20, 0.9);
  color: var(--ivory);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: var(--t-base);
  width: fit-content;
}
.banner-card:hover .banner-cta {
  background: var(--maroon-deep);
  color: var(--ivory);
}

/* ═══════════════════════════════════
   STORY / ABOUT
   ═══════════════════════════════════ */
.story-section {
  padding: 7rem 0;
  background: var(--ivory-2);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.story-images {
  position: relative;
}
.story-img-main {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
}
.story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.story-img-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: var(--ivory);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-brand);
  border: 3px solid rgba(201,144,42,0.3);
}
.story-badge-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
}
.story-badge-txt {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,244,228,0.7);
  line-height: 1.4;
  margin-top: 3px;
}
.story-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 52%;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 5px solid var(--bg);
  box-shadow: var(--shadow-lg);
}
.story-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.story-orn-rosette {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  opacity: 0.4;
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(360deg); } }

.story-text { display: flex; flex-direction: column; gap: 0; }
.story-para {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--txt-3);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.story-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.story-stat { text-align: center; flex: 1; }
.story-stat-num {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--maroon);
  display: block;
  line-height: 1;
}
.story-stat-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--txt-4);
  margin-top: 4px;
  display: block;
}
.story-stat-div {
  width: 1px;
  height: 50px;
  background: var(--border-2);
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════ */
.testimonials-section {
  padding: 6rem 0;
  background: var(--bg);
}
.testimonials-swiper { padding-bottom: 3rem !important; }
.testimonials-swiper .swiper-slide { height: auto; display: flex; }
.testimonials-swiper .testimonial-card { width: 100%; }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--t-base);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-quote {
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--brand-light);
  line-height: 0.5;
  opacity: 0.5;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-text {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--txt-2);
  line-height: 1.75;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.88rem; color: var(--ink); }
.testimonial-meta { font-size: 0.7rem; color: var(--txt-4); margin-top: 2px; }
.testimonial-meta .stars { color: var(--gold-light); }
.testimonials-pagination .swiper-pagination-bullet {
  background: var(--border-2) !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
}
.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--maroon) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ═══════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--ink) 50%, var(--maroon-deep) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.newsletter-bg-orn {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.newsletter-bg-orn svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.newsletter-content { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.newsletter-orn {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.newsletter-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--ivory);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.newsletter-title em { color: var(--gold-light); }
.newsletter-sub {
  color: rgba(250,244,228,0.6);
  font-size: 0.92rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(250,244,228,0.07);
  border: 1px solid rgba(201,144,42,0.3);
  border-radius: var(--r-pill);
  overflow: hidden;
  transition: var(--t-fast);
}
.newsletter-form:focus-within {
  border-color: rgba(201,144,42,0.7);
  box-shadow: 0 0 0 3px rgba(201,144,42,0.15);
}
.newsletter-form input {
  flex: 1;
  padding: 0.95rem 1.4rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ivory);
  font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: rgba(250,244,228,0.4); }
.newsletter-form .btn-gold {
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.78rem;
  white-space: nowrap;
}
.newsletter-privacy { font-size: 0.7rem; color: rgba(250,244,228,0.3); margin-top: 1rem; }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem 4rem; }
  .hero-image-frame { max-width: 380px; margin: 0 auto; }
  .header-arch { display: none; }
  .outlets-cards { gap: 1.2rem; }
  .banners-grid { grid-template-columns: 1fr; }
  .banner-right-stack { grid-template-rows: unset; grid-template-columns: 1fr 1fr; }
  .banner-lehenga { min-height: 380px; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-img-secondary { width: 44%; bottom: -1.5rem; right: -1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; --announce-h: 30px; }
  .hamburger { display: flex; }
  .nav-links, .nav-search { display: none; }
  .hero-title-hindi { font-size: clamp(3rem, 10vw, 5rem); }
  .outlets-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item-block { border-right: none; border-bottom: 1px solid rgba(201,144,42,0.15); }
  .trust-item-block:nth-child(even) { border-right: none; }
  .banners-grid { grid-template-columns: 1fr; }
  .banner-right-stack { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-img-badge { left: 0; top: 1rem; }
  .story-stats { flex-direction: column; gap: 1rem; }
  .story-stat-div { width: 80%; height: 1px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-corner svg { width: 100px; height: 100px; }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; }
  .hero-cta-btn { width: 100%; }
  .banner-right-stack { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item-block { border: none; border-bottom: 1px solid rgba(201,144,42,0.1); }
  .product-grid-4 { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-corner { display: none; }
  .hero-stats-row { gap: 0.6rem; }
  .hero-stat-num { font-size: 1.1rem; }
  .hero-stat-lbl { font-size: 0.58rem; }
  .outlet-card-body { padding: 1.5rem; }
  .outlet-name { font-size: 1.8rem; }
  .outlet-desc { font-size: 0.8rem; }
  .outlets-cards { max-width: 100%; }
  .banner-lehenga { min-height: 280px; }
  .banner-small { min-height: 160px; }
  .banner-content { padding: 1.5rem; }
  .banner-content h3 { font-size: 1.4rem; }
  .section-head { margin-bottom: 2rem; }
  .section-head h2 { font-size: 1.6rem; }
}

@media (max-width: 360px) {
  .hero-title-hindi { font-size: 2.6rem; }
  .hero-title-family { font-size: 1.6rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-cta-btn { font-size: 0.8rem; padding: 0.75rem 1.2rem; }
  .hero-stats-row { flex-wrap: wrap; justify-content: center; gap: 1rem 0.5rem; }
}
