/* ==========================================================================
   🔱 DOUBLE TRISHUL FOODS — HERITAGE LUXURY DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FLOATING PILL NAVBAR (Solid Luxury Hairline Border)
   -------------------------------------------------------------------------- */
.dt-navbar-wrapper {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0 1rem;
  pointer-events: none;
}

.dt-navbar {
  pointer-events: auto;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.35rem 1.4rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(197, 155, 39, 0.25);
  box-shadow: 0 4px 20px rgba(44, 34, 26, 0.05);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.dt-navbar.scrolled {
  top: 8px;
  background: rgba(255, 255, 255, 0.99);
  border-color: rgba(184, 29, 36, 0.35);
  box-shadow: 0 8px 25px rgba(44, 34, 26, 0.08);
}

.dt-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.dt-nav-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.dt-nav-logo:hover img {
  transform: scale(1.04);
}

.dt-nav-badge {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.dt-nav-badge img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.dt-nav-badge:hover img {
  transform: scale(1.04);
}

.dt-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dt-nav-link {
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--dt-text-heading);
  text-decoration: none;
  position: relative;
  padding: 0.35rem 0.15rem;
  display: inline-block;
  transition: color 0.25s ease;
}

.dt-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--dt-red);
  border-radius: 0 !important;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dt-nav-link:hover,
.dt-nav-link.active {
  color: var(--dt-red);
}

.dt-nav-link:hover::after,
.dt-nav-link.active::after {
  transform: scaleX(1);
}

.dt-nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dt-btn-nav {
  padding: 0.5rem 1.25rem !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  border-radius: 50px !important;
  line-height: 1.3 !important;
  gap: 0.4rem !important;
  box-shadow: 0 3px 10px rgba(184, 29, 36, 0.2);
}

.dt-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dt-text-heading);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.2rem;
  line-height: 1;
}

/* ==========================================================================
   MOBILE RIGHT-SIDE DRAWER (Ultra-Luxury Theme #FCFAF7)
   ========================================================================== */
.dt-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 34, 26, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.dt-mobile-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.dt-mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 300px;
  max-width: 84vw;
  height: 100vh;
  background: #FFFFFF;
  color: var(--dt-text-heading);
  box-shadow: -10px 0 40px rgba(44, 34, 26, 0.15);
  border-left: 1px solid rgba(197, 155, 39, 0.2);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.25rem;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s ease;
  overflow: hidden;
}

.dt-mobile-overlay.active {
  transform: translateX(0);
  visibility: visible;
}

/* 1. Drawer Header */
.dt-drawer-header {
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(197, 155, 39, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.dt-drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dt-drawer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.dt-drawer-badge {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.dt-mobile-close {
  background: #FAF6EE;
  border: 1px solid rgba(197, 155, 39, 0.25);
  color: var(--dt-text-heading);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(44, 34, 26, 0.04);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.dt-mobile-close:hover {
  background: var(--dt-red);
  color: #FFFFFF;
  border-color: var(--dt-red);
  transform: rotate(90deg);
}

/* 2. Menu Links (Clean Line Separated Directly Below Header) */
.dt-mobile-menu {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dt-mobile-menu li {
  margin: 0;
  border-bottom: 1px solid rgba(197, 155, 39, 0.14);
}

.dt-mobile-menu li:last-child {
  border-bottom: none;
}

.dt-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.25rem;
  color: var(--dt-text-heading);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  background: transparent;
  transition: all 0.2s ease;
}

.dt-mobile-link-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.dt-mobile-icon {
  font-size: 1.25rem;
  color: var(--dt-red);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  transition: transform 0.2s ease;
}

.dt-mobile-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: inherit;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.dt-mobile-arrow {
  font-size: 1.15rem;
  color: rgba(125, 112, 101, 0.35);
  transition: transform 0.2s ease, color 0.2s ease;
}

.dt-mobile-link:hover,
.dt-mobile-link.active {
  background: transparent;
  color: var(--dt-red);
}

.dt-mobile-link:hover .dt-mobile-title,
.dt-mobile-link.active .dt-mobile-title {
  color: var(--dt-red);
  font-weight: 700;
}

.dt-mobile-link:hover .dt-mobile-arrow,
.dt-mobile-link.active .dt-mobile-arrow {
  color: var(--dt-red);
  transform: translateX(4px);
}

/* 3. Drawer Footer Actions */
.dt-drawer-footer {
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(197, 155, 39, 0.18);
  flex-shrink: 0;
}

.dt-drawer-footer-note {
  font-size: 0.68rem;
  color: var(--dt-text-muted);
  text-align: center;
  font-weight: 600;
  margin-top: 0.45rem;
}

/* --------------------------------------------------------------------------
   2. BUTTONS & CTAS
   -------------------------------------------------------------------------- */
.dt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-lift);
  text-decoration: none;
  white-space: nowrap;
}

.dt-btn-primary {
  background-color: var(--dt-red);
  color: #FFFFFF;
}

.dt-btn-primary:hover {
  background-color: var(--dt-red-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.dt-btn-secondary {
  background-color: #FFFFFF;
  color: var(--dt-text-heading);
  border: 1.5px dashed var(--dt-gold-border);
}

.dt-btn-secondary:hover {
  background-color: var(--dt-canvas-alt);
  color: var(--dt-text-heading);
  transform: translateY(-2px);
}

.dt-btn-gold {
  background: var(--dt-gold-gradient);
  color: #1E1712;
  font-weight: 700;
}

.dt-btn-gold:hover {
  color: #1E1712;
  transform: translateY(-2px);
}

.dt-btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  font-weight: 700;
}

.dt-btn-whatsapp:hover {
  background-color: #1EBE5D;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.dt-btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.8) 80%
  );
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.dt-btn-shimmer:hover::after {
  transform: rotate(30deg) translateX(100%);
}

/* --------------------------------------------------------------------------
   3. HERITAGE PILLAR CARDS (Solid Red Hover with White Icon)
   -------------------------------------------------------------------------- */
.dt-pillar-card {
  background: #FFFFFF !important;
  border-radius: 18px;
  padding: 1.35rem 1.2rem;
  border: 1.5px dashed var(--dt-gold-border);
  box-shadow: 0 10px 30px rgba(44, 34, 26, 0.07);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: var(--transition-lift);
  height: 100%;
}

.dt-pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--dt-red);
  box-shadow: 0 14px 35px rgba(184, 29, 36, 0.12);
}

.dt-pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--dt-red);
}

.dt-pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--dt-gold-light);
  border: 1.5px dashed var(--dt-gold-border);
  color: var(--dt-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.dt-pillar-icon i {
  color: inherit !important;
  transition: color 0.25s ease;
}

.dt-pillar-card:hover .dt-pillar-icon {
  background: var(--dt-red) !important;
  color: #FFFFFF !important;
  border-color: var(--dt-red) !important;
  transform: scale(1.06);
}

.dt-pillar-card:hover .dt-pillar-icon i {
  color: #FFFFFF !important;
}

/* --------------------------------------------------------------------------
   4. HOME PAGE TAB FILTERS & PRODUCT SHOWCASE SLIDER
   -------------------------------------------------------------------------- */
.dt-home-tab-pill {
  padding: 0.4rem 1.05rem;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  border: 1.5px dashed var(--dt-gold-border);
  color: var(--dt-text-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.dt-home-tab-pill:hover,
.dt-home-tab-pill.active {
  background: var(--dt-red);
  border-color: var(--dt-red);
  color: #FFFFFF;
}

.dt-home-product-swiper,
.dt-home-recipe-swiper,
.dt-testimonial-swiper,
.dt-product-swiper {
  padding: 8px 4px 24px 4px !important;
  margin: -8px -4px -24px -4px !important;
  overflow: hidden;
  width: 100%;
}

.dt-home-product-swiper .swiper-wrapper,
.dt-home-recipe-swiper .swiper-wrapper,
.dt-testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

.dt-home-product-swiper .swiper-slide,
.dt-home-recipe-swiper .swiper-slide,
.dt-testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

.dt-showcase-card {
  background: #FFFFFF !important;
  border-radius: var(--radius-card);
  border: 1.5px dashed var(--dt-gold-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-lift);
  width: 100%;
  height: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.dt-showcase-card:hover {
  transform: translateY(-4px);
  border-color: var(--dt-red);
  box-shadow: 0 16px 32px rgba(184, 29, 36, 0.08);
}

.dt-showcase-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: radial-gradient(circle at center, #FFFFFF 0%, #FAF7F2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0;
  border: none;
  border-bottom: 1.5px dashed var(--dt-gold-border);
  border-top-left-radius: calc(var(--radius-card) - 1px);
  border-top-right-radius: calc(var(--radius-card) - 1px);
  overflow: hidden;
  transition: background 0.3s ease;
}

.dt-showcase-thumb img,
.dt-showcase-img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
  padding: 0 !important;
  margin: 0 !important;
  border-top-left-radius: calc(var(--radius-card) - 1px);
  border-top-right-radius: calc(var(--radius-card) - 1px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dt-showcase-card:hover .dt-showcase-thumb img {
  transform: scale(1.06);
}

.dt-showcase-thumb-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dt-text-heading);
  letter-spacing: 0.04em;
  margin-top: 0.65rem;
  margin-bottom: 0.2rem;
  text-align: center;
}

.dt-showcase-thumb-sub {
  font-size: 0.775rem;
  color: var(--dt-text-muted);
  text-align: center;
}

.dt-showcase-badge {
  position: absolute;
  top: 0.95rem;
  left: 0.95rem;
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.32rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--dt-red);
  color: #FFFFFF;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(184, 29, 36, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.02em;
}

.dt-showcase-badge.is-primary {
  background: var(--dt-red);
  color: #FFFFFF;
  border: none;
}

.dt-showcase-badge.is-gold {
  background: var(--dt-red);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184, 29, 36, 0.28);
}

.dt-showcase-icon {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1.5px dashed var(--dt-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dt-red);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.dt-showcase-icon i {
  color: inherit !important;
  transition: color 0.25s ease;
}

.dt-showcase-card:hover .dt-showcase-icon {
  transform: scale(1.08);
  background: var(--dt-red) !important;
  border-color: var(--dt-red) !important;
  color: #FFFFFF !important;
}

.dt-showcase-card:hover .dt-showcase-icon i {
  color: #FFFFFF !important;
}

.dt-showcase-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dt-showcase-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dt-gold-dark);
  margin-bottom: 0.25rem;
}

.dt-showcase-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dt-text-heading);
  margin-bottom: 0.35rem;
}

.dt-showcase-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.dt-size-badge {
  font-family: var(--font-num);
  font-size: 0.725rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  background: var(--dt-canvas-alt);
  color: var(--dt-text-body);
  border-radius: var(--radius-pill);
  border: 1px dashed var(--dt-gold-border);
}

.dt-showcase-footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1.5px dashed var(--dt-gold-border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dt-showcase-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--dt-text-muted);
}

/* --------------------------------------------------------------------------
   5. IMAGE PLACEHOLDER BOX (Heritage Craftsmanship - Dashed Border)
   -------------------------------------------------------------------------- */
.dt-img-placeholder-box {
  background: #FFFFFF;
  border: 2px dashed var(--dt-gold);
  border-radius: 20px;
  aspect-ratio: 16 / 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dt-img-placeholder-box i {
  font-size: 3.5rem;
  color: var(--dt-gold-dark);
  margin-bottom: 0.75rem;
}

.dt-img-placeholder-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dt-text-heading);
  margin-bottom: 0.25rem;
}

.dt-img-placeholder-sub {
  font-size: 0.8rem;
  color: var(--dt-text-muted);
  max-width: 320px;
}

/* --------------------------------------------------------------------------
   6. PURE GRAIN WISDOM (Solid Red Hover with White Icon)
   -------------------------------------------------------------------------- */
.dt-anatomy-card {
  background: var(--dt-canvas);
  border-radius: var(--radius-card);
  border: 1.5px dashed var(--dt-gold-border);
  padding: 1.85rem 1.6rem;
  transition: var(--transition-lift);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dt-anatomy-card:hover {
  transform: translateY(-4px);
  border-color: var(--dt-red);
}

.dt-anatomy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.15rem;
}

.dt-anatomy-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--dt-gold-light);
  border: 1.5px dashed var(--dt-gold-border);
  color: var(--dt-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.25s ease;
}

.dt-anatomy-icon i {
  color: inherit !important;
  transition: color 0.25s ease;
}

.dt-anatomy-card:hover .dt-anatomy-icon {
  background: var(--dt-red) !important;
  color: #FFFFFF !important;
  border-color: var(--dt-red) !important;
  transform: scale(1.06);
}

.dt-anatomy-card:hover .dt-anatomy-icon i {
  color: #FFFFFF !important;
}

.dt-anatomy-pill {
  display: inline-flex;
  align-items: center;
  width: auto;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--dt-canvas-alt);
  border: 1px dashed var(--dt-gold-border);
  color: var(--dt-text-body);
  font-family: var(--font-num);
  font-size: 0.775rem;
  font-weight: 700;
}

.dt-anatomy-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--dt-text-heading);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dt-anatomy-hindi-badge {
  font-family: var(--font-hindi);
  font-size: 0.85rem;
  color: var(--dt-red);
  font-weight: 600;
}

.dt-anatomy-desc {
  font-size: 0.875rem;
  color: var(--dt-text-muted);
  line-height: 1.65;
  margin-bottom: 1.15rem;
}

.dt-anatomy-nutrients {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dt-anatomy-nutrients li {
  font-size: 0.8rem;
  color: var(--dt-text-body);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.dt-anatomy-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1.5px dashed var(--dt-gold-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.775rem;
  font-weight: 700;
  color: #198754;
}

.dt-grain-integrity-strip {
  background: #FFFFFF;
  border: 1.5px dashed var(--dt-gold);
  border-radius: var(--radius-card);
  padding: 1.15rem 1.5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. THE PURITY STANDARD (Comparison Cards - Dashed Border)
   -------------------------------------------------------------------------- */
.dt-quality-card {
  background: var(--dt-canvas);
  border-radius: var(--radius-card);
  padding: 1.85rem 1.6rem;
  border: 1.5px dashed var(--dt-gold-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-lift);
}

.dt-quality-card:hover {
  transform: translateY(-4px);
  border-color: var(--dt-red);
}

.dt-quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--dt-gold-light);
  color: var(--dt-gold-dark);
  border: 1.5px dashed var(--dt-gold-border);
  font-size: 0.775rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  align-self: flex-start;
  transition: all 0.25s ease;
}

.dt-quality-badge i {
  color: inherit !important;
}

.dt-quality-card:hover .dt-quality-badge {
  background: var(--dt-red) !important;
  color: #FFFFFF !important;
  border-color: var(--dt-red) !important;
}

/* --------------------------------------------------------------------------
   8. FARM TO TABLE JOURNEY (4-Step Craft Cards - Dashed Border)
   -------------------------------------------------------------------------- */
.dt-craft-step {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 1.65rem 1.35rem;
  border: 1.5px dashed var(--dt-gold-border);
  height: 100%;
  transition: var(--transition-lift);
  display: flex;
  flex-direction: column;
  position: relative;
}

.dt-craft-step:hover {
  transform: translateY(-4px);
  border-color: var(--dt-red);
}

.dt-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dt-red);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-num);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px var(--dt-red-light);
  transition: all 0.3s ease;
}

.dt-craft-step:hover .dt-step-num,
.dt-step-process-card:hover .dt-step-num {
  transform: scale(1.1);
  background: var(--dt-gold-dark) !important;
  color: #FFFFFF !important;
}

/* --------------------------------------------------------------------------
   9. BRAND OWNERS / LEADERSHIP (Portrait Photo Box - Dashed Border)
   -------------------------------------------------------------------------- */
.dt-owner-card {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  border: 1.5px dashed var(--dt-gold-border);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-lift);
  height: 100%;
}

.dt-owner-card:hover {
  transform: translateY(-4px);
  border-color: var(--dt-red);
}

.dt-owner-photo-box {
  width: 100%;
  aspect-ratio: 4 / 4;
  max-height: 320px;
  background: linear-gradient(135deg, #F3ECE1 0%, #FAF7F2 100%);
  border: 1.5px dashed var(--dt-gold-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.15rem;
  transition: all 0.25s ease;
}

.dt-owner-photo-box i {
  font-size: 3.5rem;
  color: var(--dt-gold-dark);
  margin-bottom: 0.25rem;
  transition: all 0.25s ease;
}

.dt-owner-card:hover .dt-owner-photo-box {
  background: var(--dt-red) !important;
  border-color: var(--dt-red) !important;
}

.dt-owner-card:hover .dt-owner-photo-box i,
.dt-owner-card:hover .dt-owner-photo-label {
  color: #FFFFFF !important;
  transform: scale(1.04);
}

.dt-owner-photo-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dt-text-heading);
  transition: color 0.25s ease;
}

.dt-owner-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--dt-text-heading);
  margin-bottom: 0.25rem;
}

.dt-owner-role-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dt-red);
  background: var(--dt-red-light);
  border: 1.5px dashed rgba(184, 29, 36, 0.25);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 0.65rem;
}

.dt-owner-intro {
  font-size: 0.85rem;
  color: var(--dt-text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. EQUAL HEIGHT TESTIMONIAL SLIDER WITH TOP-RIGHT CONTROLS
   -------------------------------------------------------------------------- */
.dt-testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

.dt-review-card {
  background: #FFFFFF !important;
  border-radius: var(--radius-card);
  border: 1.5px dashed var(--dt-gold-border);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  transition: var(--transition-lift);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.dt-review-card:hover {
  transform: translateY(-3px);
  border-color: var(--dt-red);
  box-shadow: 0 16px 32px rgba(184, 29, 36, 0.08);
}

.dt-review-card::before {
  content: '“';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(197, 155, 39, 0.18);
  pointer-events: none;
}

.dt-stars {
  color: var(--dt-gold);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.dt-review-quote {
  font-family: var(--font-display);
  font-size: 0.975rem;
  color: var(--dt-text-heading);
  line-height: 1.6;
  margin-bottom: 1.15rem;
  flex-grow: 1;
  font-style: italic;
}

.dt-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1.5px dashed var(--dt-gold-border);
}

.dt-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--dt-gold-light);
  border: 1.5px dashed var(--dt-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dt-red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.dt-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dt-text-heading);
}

.dt-author-location {
  font-size: 0.775rem;
  color: var(--dt-gold-dark);
  font-weight: 600;
}

.dt-slider-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1.5px dashed var(--dt-gold-border);
  color: var(--dt-text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dt-slider-nav-btn:hover {
  background: var(--dt-red);
  border-color: var(--dt-red);
  color: #FFFFFF;
}

.swiper-pagination-bullet-active {
  background: var(--dt-red) !important;
  width: 20px !important;
  border-radius: var(--radius-pill) !important;
}

/* --------------------------------------------------------------------------
   11. WIDE SLEEK CTA BANNER (Full Container Width · Low Height)
   -------------------------------------------------------------------------- */
.dt-cta-banner-wrapper {
  background: #FFFFFF;
  border: 2px dashed var(--dt-gold);
  border-radius: 20px;
  padding: 1.85rem 2rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   12. INTERACTIVE RECIPE MODAL (Fixed Overlay & Zero Document Flow Spill)
   -------------------------------------------------------------------------- */
.dt-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 23, 18, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.dt-modal-overlay.active {
  display: flex;
}

.dt-modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  border: 2px dashed var(--dt-gold);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.dt-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--dt-canvas-alt);
  border: 1px dashed var(--dt-gold-border);
  color: var(--dt-text-heading);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dt-modal-close:hover {
  background: var(--dt-red);
  color: #FFFFFF;
  border-color: var(--dt-red);
}

/* --------------------------------------------------------------------------
   13. E-COMMERCE PRODUCTS & PRODUCT DETAIL SPECIFICS
   -------------------------------------------------------------------------- */
.dt-ecommerce-pill-nav {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: none;
}

.dt-ecommerce-pill-nav::-webkit-scrollbar {
  display: none;
}

.dt-ecommerce-pill {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  border: 1.5px dashed var(--dt-gold-border);
  color: var(--dt-text-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.dt-ecommerce-pill:hover,
.dt-ecommerce-pill.active {
  background: var(--dt-red);
  border-color: var(--dt-red);
  color: #FFFFFF;
}

.dt-product-hero-box {
  min-height: 480px;
  width: 100%;
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  background: radial-gradient(circle at center, #FFFFFF 0%, #FAF6F0 100%);
  border: 1.5px dashed var(--dt-gold-border);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 14px 40px rgba(0,0,0,0.03);
}

.dt-product-hero-box:hover {
  border-color: var(--dt-red);
  box-shadow: 0 18px 45px rgba(184, 29, 36, 0.08);
}

.dt-product-hero-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed var(--dt-gold);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.8rem;
  color: var(--dt-red);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(184, 29, 36, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dt-product-hero-box:hover .dt-product-hero-icon {
  transform: scale(1.08) rotate(3deg);
}

.dt-product-gallery-thumb {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  border: 1.5px dashed var(--dt-gold-border);
  cursor: pointer;
  background: #FAF7F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dt-red);
  transition: var(--transition-fast);
}

.dt-product-gallery-thumb:hover,
.dt-product-gallery-thumb.active {
  border-color: var(--dt-red);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px var(--dt-red-light);
  transform: translateY(-2px);
}

/* ==========================================================================
   E-COMMERCE MULTI-IMAGE GALLERY SHOWCASE (Thumbnails Outside on Left)
   ========================================================================== */
.dt-ecom-outer-wrap {
  display: flex;
  gap: 0.95rem;
  align-items: stretch;
  width: 100%;
  margin-bottom: 1rem;
}

.dt-ecom-thumbs-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  width: 80px;
}

.dt-ecom-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  border: 2px solid rgba(197, 160, 89, 0.35);
  background: #FFFFFF;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  position: relative;
}

.dt-ecom-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.dt-ecom-thumb:hover {
  border-color: var(--dt-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(184, 29, 36, 0.15);
}

.dt-ecom-thumb.active {
  border-color: var(--dt-red);
  box-shadow: 0 0 0 3px rgba(184, 29, 36, 0.25), 0 8px 20px rgba(184, 29, 36, 0.15);
  background: #FFFDF9;
}

.dt-ecom-thumb.active::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--dt-red);
  border: 1.5px solid #FFF;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.dt-hero-showcase-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1.15rem;
  z-index: 2;
}

.dt-hero-meta-badge {
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 700;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  background: var(--dt-red);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 12px rgba(184, 29, 36, 0.22);
  letter-spacing: 0.02em;
}

.dt-hero-meta-badge.is-primary {
  background: var(--dt-red);
  color: #FFFFFF;
}

.dt-hero-meta-badge i {
  font-size: 0.9rem;
}

.dt-product-hero-box {
  min-height: auto;
  width: 100%;
  flex: 1;
  padding: 1.35rem;
  background: radial-gradient(circle at center, #FFFFFF 0%, #FAF6F0 100%);
  border: 1.5px dashed var(--dt-gold-border);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 14px 40px rgba(0,0,0,0.03);
}

.dt-product-hero-box:hover {
  border-color: var(--dt-red);
  box-shadow: 0 18px 45px rgba(184, 29, 36, 0.08);
}

.dt-ecom-main-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  max-height: 600px;
  background: radial-gradient(circle at center, #FFFFFF 0%, #FAF7F2 100%);
  border: 1px solid rgba(200, 157, 66, 0.2);
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.dt-ecom-main-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 14px;
  display: block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.dt-ecom-main-frame:hover .dt-ecom-main-img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .dt-ecom-outer-wrap {
    flex-direction: column-reverse;
  }
  .dt-ecom-thumbs-col {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .dt-ecom-thumb {
    width: 64px;
    height: 64px;
  }
  .dt-ecom-main-frame {
    height: 420px;
    min-height: 420px;
  }
}

/* 4-Step Cold Milling Journey Cards */
.dt-step-process-card {
  background: #FFFFFF;
  border: 1.5px dashed var(--dt-gold-border);
  border-radius: var(--radius-card);
  padding: 1.85rem 1.65rem;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dt-step-process-card:hover {
  transform: translateY(-6px);
  border-color: var(--dt-red);
  box-shadow: 0 14px 35px rgba(184, 29, 36, 0.08);
}

/* Comparison Table */
.dt-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1.5px dashed var(--dt-gold-border);
}

.dt-comparison-table th,
.dt-comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--dt-gold-border);
}

.dt-comparison-table thead th {
  background: var(--dt-canvas-alt);
  font-weight: 700;
  color: var(--dt-text-dark);
}

.dt-comparison-table tr:last-child td {
  border-bottom: none;
}

/* --------------------------------------------------------------------------
   14. RECIPE CARDS (Dashed Border)
   -------------------------------------------------------------------------- */
.dt-recipe-card {
  background: #FFFFFF !important;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1.5px dashed var(--dt-gold-border);
  transition: var(--transition-lift);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.dt-recipe-card:hover {
  transform: translateY(-4px);
  border-color: var(--dt-red);
  box-shadow: 0 16px 32px rgba(184, 29, 36, 0.08);
}

.dt-recipe-thumb {
  aspect-ratio: 16 / 10;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.25rem;
  border-bottom: 1.5px dashed var(--dt-gold-border);
}

.dt-recipe-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dt-recipe-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dt-text-heading);
  margin-bottom: 0.35rem;
}

/* --------------------------------------------------------------------------
   15. FAQ ACCORDION (Dashed Border)
   -------------------------------------------------------------------------- */
.dt-faq-item {
  background: var(--dt-canvas);
  border-radius: 14px;
  border: 1.5px dashed var(--dt-gold-border);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dt-faq-item:hover {
  border-color: var(--dt-red);
}

.dt-faq-item.active {
  border-color: var(--dt-red);
  background: #FFFFFF;
  box-shadow: 0 6px 22px rgba(184, 29, 36, 0.07);
}

.dt-faq-header {
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dt-text-heading);
  gap: 1rem;
  user-select: none;
  transition: color 0.25s ease;
}

.dt-faq-item.active .dt-faq-header {
  color: var(--dt-red);
}

.dt-faq-header i,
.dt-faq-arrow {
  color: var(--dt-red);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.dt-faq-item.active .dt-faq-header i,
.dt-faq-item.active .dt-faq-arrow {
  transform: rotate(180deg);
}

/* Smooth Accordion Body transition using CSS Grid rows */
.dt-faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.35rem;
}

.dt-faq-body > * {
  overflow: hidden;
  font-size: 0.935rem;
  color: var(--dt-text-muted);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dt-faq-item.active .dt-faq-body {
  grid-template-rows: 1fr;
  padding: 0 1.35rem 1.25rem 1.35rem;
}

.dt-faq-item.active .dt-faq-body > * {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   16. FOOTER (Warm Organic Light Canvas - Zero Dark Clashing)
   -------------------------------------------------------------------------- */
.dt-footer {
  background: var(--dt-canvas-alt);
  color: var(--dt-text-body);
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  border-top: 1.5px dashed var(--dt-gold-border);
}

.dt-footer-heading {
  font-family: var(--font-display);
  font-size: 0.925rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dt-text-heading);
  margin-bottom: 1.15rem;
}

.dt-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dt-footer-links li {
  margin-bottom: 0.55rem;
}

.dt-footer-links a {
  color: var(--dt-text-body);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.dt-footer-links a:hover {
  color: var(--dt-red);
  padding-left: 3px;
}

.dt-social-links {
  display: flex;
  gap: 0.65rem;
}

.dt-social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1.5px dashed var(--dt-gold-border);
  color: var(--dt-text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

.dt-social-btn:hover {
  background: var(--dt-red);
  border-color: var(--dt-red);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.dt-footer-divider {
  border-top: 1.5px dashed var(--dt-gold-border);
  margin: 2.5rem 0 1.5rem 0;
}

/* --------------------------------------------------------------------------
   17. STATS & COUNTER CARDS (Royal Heritage Crimson Accent Cards)
   -------------------------------------------------------------------------- */
.dt-stat-card {
  background: var(--dt-red);
  border-radius: var(--radius-card);
  border: 1.5px dashed rgba(255, 255, 255, 0.45);
  padding: 1.6rem 1.25rem;
  text-align: center;
  color: #FFFFFF;
  transition: var(--transition-lift);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(184, 29, 36, 0.16);
}

.dt-stat-card:hover {
  transform: translateY(-4px);
  background: var(--dt-red-dark);
  border-color: #FFFFFF;
  box-shadow: 0 12px 28px rgba(184, 29, 36, 0.25);
}

.dt-stat-card .dt-stat-number {
  font-family: var(--font-stat);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.dt-stat-card .dt-stat-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.2rem;
}

.dt-stat-card .dt-stat-sub {
  font-family: var(--font-hindi);
  font-size: 0.8rem;
  color: #FFE699;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   18. LUXURY HERITAGE MILESTONE TIMELINE (Modern Card Grid)
   -------------------------------------------------------------------------- */
.dt-milestone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  position: relative;
}

.dt-milestone-card {
  background: #FFFFFF;
  border-radius: var(--radius-card);
  border: 1.5px dashed var(--dt-gold-border);
  padding: 1.5rem 1.25rem;
  transition: var(--transition-lift);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.dt-milestone-card:hover {
  transform: translateY(-4px);
  border-color: var(--dt-red);
}

.dt-milestone-badge {
  font-family: var(--font-stat);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dt-red);
  background: var(--dt-red-light);
  border: 1.5px dashed rgba(184, 29, 36, 0.25);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  margin-bottom: 0.85rem;
  transition: all 0.25s ease;
}

.dt-milestone-card:hover .dt-milestone-badge {
  background: var(--dt-red) !important;
  color: #FFFFFF !important;
  border-color: var(--dt-red) !important;
}

.dt-milestone-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dt-text-heading);
  margin-bottom: 0.25rem;
}

.dt-milestone-hindi {
  font-family: var(--font-hindi);
  font-size: 0.8rem;
  color: var(--dt-gold-dark);
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.dt-milestone-desc {
  font-size: 0.825rem;
  color: var(--dt-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   19. ANIMATED VERTICAL TIMELINE WITH CONNECTING STEM & STICKY VISUAL
   -------------------------------------------------------------------------- */
.dt-timeline-pinned-wrap {
  position: relative;
  overflow: hidden;
  height: 480px;
  padding: 0.5rem 1rem 0.5rem 3rem;
}

@media (max-width: 991px) {
  .dt-timeline-pinned-wrap {
    height: auto;
    overflow: visible;
    padding: 0;
  }
}

.dt-pinned-photo-box {
  height: 480px;
  width: 100%;
  border-radius: var(--radius-card);
  border: 2px dashed var(--dt-gold);
  background: var(--dt-canvas);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  will-change: transform;
  transition: border-color 0.3s ease;
}

.dt-pinned-photo-box:hover {
  border-color: var(--dt-red);
}

.dt-v-timeline-track {
  position: relative;
  padding-left: 2.75rem;
  padding-right: 0.5rem;
  margin-left: 0;
}

.dt-v-timeline-stem {
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 1.25rem;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--dt-gold) 0,
    var(--dt-gold) 6px,
    transparent 6px,
    transparent 12px
  );
}

.dt-v-timeline-item {
  position: relative;
  margin-bottom: 2.25rem;
  opacity: 0.25;
  transform: translateX(60px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.dt-v-timeline-item:last-child {
  margin-bottom: 0;
}

.dt-v-timeline-item.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.dt-v-timeline-dot-node {
  position: absolute;
  left: -2.75rem;
  top: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 2px solid var(--dt-gold);
  color: var(--dt-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 0 0 4px var(--dt-gold-light);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.dt-v-timeline-item.is-active .dt-v-timeline-dot-node {
  background: var(--dt-red);
  color: #FFFFFF;
  border-color: var(--dt-red);
  box-shadow: 0 0 0 6px var(--dt-red-light);
  transform: scale(1.18);
}

.dt-v-timeline-card {
  background: var(--dt-canvas);
  border: 1.5px dashed var(--dt-gold-border);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.75rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dt-v-timeline-item.is-active .dt-v-timeline-card {
  border-color: var(--dt-red);
  background: #FFFFFF;
  box-shadow: 0 12px 32px rgba(184, 29, 36, 0.1);
  transform: translateX(4px);
}

.dt-v-timeline-card:hover {
  border-color: var(--dt-red);
  transform: translateY(-2px) translateX(6px);
}

@media (max-width: 991px) {
  .dt-pinned-photo-box {
    position: static;
    height: 340px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .dt-v-timeline-track {
    padding-left: 2.5rem;
    margin-left: 0;
  }
  
  .dt-v-timeline-stem {
    left: 1rem;
  }

  .dt-v-timeline-dot-node {
    left: -2.5rem;
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
    box-shadow: 0 0 0 2px var(--dt-gold-light);
  }
  
  .dt-v-timeline-card {
    padding: 1.25rem 1.15rem;
  }
}

/* --------------------------------------------------------------------------
   20. E-COMMERCE CATALOG PAGINATION & INTERACTIVE WEIGHT SELECTORS
   -------------------------------------------------------------------------- */
.dt-pagination-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.dt-pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dt-page-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 0.85rem;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  border: 1.5px dashed var(--dt-gold-border);
  color: var(--dt-text-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dt-page-btn:hover:not(:disabled) {
  border-color: var(--dt-red);
  background: var(--dt-canvas-alt);
  color: var(--dt-red);
  transform: translateY(-2px);
}

.dt-page-btn.active {
  background: var(--dt-red);
  border-color: var(--dt-red);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(184, 29, 36, 0.25);
}

.dt-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: var(--dt-gold-border);
}

.dt-pagination-info {
  font-size: 0.85rem;
  color: var(--dt-text-muted);
  font-weight: 500;
}

/* Weight Pill Selector inside Catalog Cards */
.dt-card-weight-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  border: 1px dashed var(--dt-gold-border);
  color: var(--dt-text-body);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dt-card-weight-btn:hover,
.dt-card-weight-btn.active {
  background: var(--dt-red);
  border-color: var(--dt-red);
  color: #FFFFFF;
}

.dt-card-price {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dt-text-heading);
}

.dt-card-mrp {
  font-family: var(--font-num);
  font-size: 0.85rem;
  color: var(--dt-text-muted);
  text-decoration: line-through;
  margin-left: 0.35rem;
}

/* --------------------------------------------------------------------------
   LUXURY FORM STYLES
   -------------------------------------------------------------------------- */
.dt-form-group {
  margin-bottom: 1.15rem;
  text-align: left;
}

.dt-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--dt-text-heading);
  margin-bottom: 0.35rem;
}

.dt-input,
.dt-select,
.dt-textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dt-text-heading);
  background: var(--dt-canvas-alt);
  border: 1.5px dashed var(--dt-gold-border);
  border-radius: var(--radius-card);
  transition: all 0.25s ease;
  outline: none;
  display: block;
}

.dt-input:focus,
.dt-select:focus,
.dt-textarea:focus {
  background: #FFFFFF;
  border-color: var(--dt-red);
  border-style: solid;
  box-shadow: 0 0 0 3px rgba(184, 29, 36, 0.1);
}

.dt-input::placeholder,
.dt-textarea::placeholder {
  color: var(--dt-text-muted);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   HERITAGE NUTRITIONAL PROFILE TABLE & WISDOM TABS (Theme-Aligned)
   -------------------------------------------------------------------------- */
.dt-wisdom-pane-card {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1.5px dashed var(--dt-gold-border);
  padding: 2.25rem;
  box-shadow: 0 10px 30px rgba(22, 19, 17, 0.04);
  position: relative;
  transition: all 0.3s ease;
}

.dt-wisdom-pane-card:hover {
  box-shadow: 0 14px 40px rgba(22, 19, 17, 0.07);
}

.dt-nutrition-table-container {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(200, 157, 66, 0.3);
  box-shadow: 0 6px 22px rgba(22, 19, 17, 0.05);
  background: #FFFFFF;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 100%;
}

.dt-nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.935rem;
}

.dt-nutrition-table thead th {
  background: linear-gradient(135deg, #FAF6EE 0%, #F3ECE0 100%);
  color: #3C352E;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  border-bottom: 2px solid var(--dt-gold);
}

.dt-nutrition-table tbody tr {
  border-bottom: 1px dashed rgba(200, 157, 66, 0.22);
  transition: background-color 0.2s ease;
}

.dt-nutrition-table tbody tr:last-child {
  border-bottom: none;
}

.dt-nutrition-table tbody tr:nth-child(even) {
  background-color: #FAF8F5;
}

.dt-nutrition-table tbody tr:hover {
  background-color: #FDF6E2 !important;
}

.dt-nutrition-table td {
  padding: 1rem 2rem;
  vertical-align: middle;
}

.dt-nut-label {
  font-weight: 600;
  color: #1A1715;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.925rem;
}

.dt-nut-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dt-red);
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(184, 29, 36, 0.15);
}

.dt-nut-val-badge {
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 0.975rem;
  color: var(--dt-red);
  background: var(--dt-red-light);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(184, 29, 36, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  box-shadow: 0 2px 6px rgba(184, 29, 36, 0.08);
}

.dt-nutrition-footer-bar {
  background: linear-gradient(135deg, #FAF8F5 0%, #FFFFFF 100%);
  border-top: 1.5px dashed rgba(200, 157, 66, 0.25);
  padding: 0.85rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dt-nut-cert-text {
  font-size: 0.775rem;
  color: #685E53;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dt-nut-cert-pill {
  background: var(--dt-gold-light);
  color: var(--dt-gold-dark);
  border: 1px solid var(--dt-gold);
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
}

