/* ==========================================================================
   🔱 DOUBLE TRISHUL FOODS — REFINED LUXURY LAYOUTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. SECTION BACKGROUNDS & RHYTHM (Ultra-Light Organic Palette)
   -------------------------------------------------------------------------- */
.bg-canvas {
  background-color: var(--dt-canvas) !important;
  color: var(--dt-text-body);
}

.bg-canvas-alt {
  background-color: var(--dt-canvas-alt) !important;
  color: var(--dt-text-body);
}

.bg-white {
  background-color: #FFFFFF !important;
  color: var(--dt-text-body);
}

.bg-cream {
  background-color: var(--dt-canvas);
  color: var(--dt-text-body);
}

.bg-cream-alt {
  background-color: var(--dt-canvas-alt);
  color: var(--dt-text-body);
}

.bg-sand {
  background-color: var(--dt-canvas-alt);
  color: var(--dt-text-body);
}

.bg-red-gradient {
  background: var(--dt-brand-gradient);
  color: #FFFFFF;
}

.bg-gold-gradient {
  background: var(--dt-gold-gradient);
  color: #1F1812;
}

/* Balanced Section Spacing */
.section-py {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
}

.section-py-md {
  padding-top: var(--section-py-md);
  padding-bottom: var(--section-py-md);
  position: relative;
}

.section-py-sm {
  padding-top: var(--section-py-sm);
  padding-bottom: var(--section-py-sm);
  position: relative;
}

/* Container Constraint */
.dt-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* --------------------------------------------------------------------------
   2. HERO SLIDER LAYOUT (Full-Cover Vibrant Image + Crisp Luxury Typography)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 720px;
  height: 82vh;
  max-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFFFFF;
}

.hero-swiper {
  width: 100%;
  height: 100%;
  min-height: 720px;
  max-height: 820px;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  transform: none !important;
  transition: none !important;
}

.swiper-slide-active .hero-bg {
  transform: none !important;
}

/* Dark cinematic gradient overlay — banner stays vibrant, text pops */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 15, 10, 0.88) 0%,
    rgba(20, 15, 10, 0.72) 40%,
    rgba(20, 15, 10, 0.35) 72%,
    rgba(20, 15, 10, 0.10) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: #FFFFFF;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-content .dt-section-eyebrow {
  background: rgba(197, 155, 39, 0.22) !important;
  color: #F5C042 !important;
  border: 1px solid rgba(245, 192, 66, 0.45) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  border-radius: 999px;
}

.hero-content .dt-hindi-tagline {
  color: #E6B648;
  margin-bottom: 0.4rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
  color: #FFFFFF;
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-content h1 .text-red {
  color: #FF6B6B !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-content h1 em {
  color: #FF6B6B;
  font-style: italic;
}

.hero-content p,
.hero-content p.text-muted,
.hero-content .text-muted,
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.90) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  margin-bottom: 1.5rem;
  line-height: 1.65;
  max-width: 520px;
}

/* Hero Progress Indicators (Sleek, Razor-Sharp & Minimal) */
.hero-controls {
  position: absolute;
  bottom: 3.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-max);
  padding: 0 1.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-indicators {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  pointer-events: auto;
}

.hero-indicator-item {
  width: 36px;
  height: 3px;
  background: rgba(255, 255, 255, 0.30);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: width 0.3s ease, background 0.3s ease;
}

.hero-indicator-item:hover {
  background: rgba(255, 255, 255, 0.50);
}

.hero-indicator-item.active {
  width: 48px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-indicator-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--dt-red);
  border-radius: 4px;
}

.hero-indicator-item.active .hero-indicator-bar {
  animation: heroBarProgress 5s linear forwards;
}

@keyframes heroBarProgress {
  from { width: 0%; }
  to { width: 100%; }
}

.hero-slide-counter {
  font-family: var(--font-stat);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   3. QUICK TRUST HIGHLIGHTS BAR (Under Hero)
   -------------------------------------------------------------------------- */
.dt-quick-trust-bar {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  border: 1px solid rgba(197, 155, 39, 0.2);
  box-shadow: var(--shadow-card);
  padding: 1.25rem 1.5rem;
  margin-top: -30px;
  position: relative;
  z-index: 20;
}

.dt-trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.dt-trust-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--dt-gold-light);
  border: 1px solid var(--dt-border-gold);
  color: var(--dt-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   4. STATS STRIP (Warm Light Luxury Strip)
   -------------------------------------------------------------------------- */
.dt-stats-section {
  position: relative;
  background: #FFFFFF;
  border-top: 1px solid rgba(197, 155, 39, 0.15);
  border-bottom: 1px solid rgba(197, 155, 39, 0.15);
  padding: 3rem 0;
}

.dt-stat-col {
  text-align: center;
  position: relative;
  padding: 0.75rem;
}

.dt-stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(115, 99, 87, 0.15);
}

.dt-stat-hindi {
  font-family: var(--font-hindi);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dt-red);
  margin-top: 0.25rem;
}

.dt-stat-label {
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dt-muted);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   5. PAGE INNER HERO (For Sub-pages)
   -------------------------------------------------------------------------- */
.dt-inner-hero {
  position: relative;
  padding: 7rem 0 3.5rem 0;
  background: #1F1812;
  color: var(--dt-cream);
  text-align: center;
  overflow: hidden;
}

.dt-inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(184, 29, 36, 0.25) 0%, rgba(31, 24, 18, 0.95) 75%);
  z-index: 0;
}

.dt-inner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.dt-inner-hero-content p,
.dt-inner-hero-content .dt-section-desc {
  color: rgba(255, 255, 255, 0.90) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  font-size: 1.05rem;
  line-height: 1.65;
}

.dt-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.6);
  margin-top: 0.75rem;
}

.dt-breadcrumbs a {
  color: var(--dt-gold);
}


/* Dedicated Heritage Pillars Section */
.dt-hero-pillars-wrap {
  margin-top: -38px;
  position: relative;
  z-index: 20;
}

/* Product Detail Page Top Spacing (Clean, No Huge Void Gap) */
.dt-product-page-main {
  padding-top: 85px;
}
