/* ==========================================================================
   Pagrishop.com - Dumala Fabrics E-Commerce Landing Page Stylesheet
   Version: 2.0.0
   Author: Senior E-Commerce UI/UX Team
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables (Light & Dark Theme)
   -------------------------------------------------------------------------- */
:root {
  /* Royal Dark Blue & Gold Brand Colors */
  --df-navy-900: #050c1e; /* Deep Royal Midnight Blue */
  --df-navy-800: #0b1a3a; /* Royal Imperial Dark Blue */
  --df-navy-700: #142a5c; /* Royal Sapphire Blue */
  --df-navy-600: #1e3a8a; /* Rich Royal Blue */
  --df-royal-accent: #2563eb; /* Vibrant Royal Blue Accent */
  
  --df-gold-600: #b8860b; /* Dark Goldenrod */
  --df-gold-500: #d4af37; /* Royal Metallic Gold */
  --df-gold-400: #f39c12; /* Bright Gold Accent */
  --df-gold-100: #fef9c3;
  --df-gold-50:  #fffbeb;

  --df-bg-primary: #ffffff;
  --df-bg-secondary: #f0f4fa; /* Crisp Royal Tinted Secondary BG */
  --df-bg-tertiary: #e2e8f0;
  
  --df-text-primary: #050c1e;
  --df-text-secondary: #1e293b;
  --df-text-muted: #475569;
  --df-text-light: #f8fafc;

  --df-border: #cbd5e1;
  --df-border-hover: #94a3b8;

  /* Glassmorphism & Effects */
  --df-glass-bg: rgba(255, 255, 255, 0.75);
  --df-glass-border: rgba(255, 255, 255, 0.6);
  --df-glass-shadow: 0 12px 32px rgba(11, 26, 58, 0.08);

  --df-shadow-sm: 0 1px 3px rgba(11, 26, 58, 0.08);
  --df-shadow-md: 0 4px 14px rgba(11, 26, 58, 0.12);
  --df-shadow-lg: 0 10px 30px rgba(11, 26, 58, 0.18);
  --df-shadow-hover: 0 20px 40px rgba(11, 26, 58, 0.24);

  /* Typography */
  --df-font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --df-font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout Radius & Spacing */
  --df-radius-sm: 8px;
  --df-radius-md: 14px;
  --df-radius-lg: 24px;
  --df-radius-full: 9999px;

  --df-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --df-transition-fast: all 0.15s ease-in-out;
}

/* Glassmorphism Utilities */
.df-glass-card {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(14px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 12px 32px rgba(11, 26, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.df-glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(11, 26, 58, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.df-glass-dark-card {
  background: linear-gradient(135deg, rgba(11, 26, 58, 0.92), rgba(5, 12, 30, 0.95)) !important;
  backdrop-filter: blur(20px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(200%) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 16px 40px rgba(5, 12, 30, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* Dark Mode Overrides - Royal Dark Blue Theme */
[data-theme="dark"] .dumala-landing-page {
  --df-bg-primary: #050c1e;
  --df-bg-secondary: #0b1a3a;
  --df-bg-tertiary: #142a5c;
  
  --df-text-primary: #f8fafc;
  --df-text-secondary: #e2e8f0;
  --df-text-muted: #94a3b8;

  --df-border: #1e3a8a;
  --df-border-hover: #2563eb;

  --df-glass-bg: rgba(11, 26, 58, 0.9);
  --df-glass-border: rgba(212, 175, 55, 0.2);
  --df-glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------------------------------------
   2. Reset & Core Typography
   -------------------------------------------------------------------------- */
.dumala-landing-page {
  font-family: var(--df-font-body);
  background-color: var(--df-bg-primary);
  color: var(--df-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.dumala-landing-page *,
.dumala-landing-page *::before,
.dumala-landing-page *::after {
  box-sizing: border-box;
}

.dumala-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.dumala-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.dumala-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.dumala-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--df-gold-50);
  border: 1px solid var(--df-gold-400);
  color: var(--df-gold-600);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--df-radius-full);
  margin-bottom: 1rem;
}

.dumala-title-lg {
  font-family: var(--df-font-heading);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--df-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.dumala-title-md {
  font-family: var(--df-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--df-text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.dumala-subtitle {
  font-size: 1.125rem;
  color: var(--df-text-secondary);
  font-weight: 400;
}

/* Luxury Buttons */
.df-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--df-radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--df-transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.df-btn-primary {
  background-color: var(--df-navy-800);
  color: #ffffff;
  box-shadow: var(--df-shadow-md);
}

.df-btn-primary:hover {
  background-color: var(--df-gold-500);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

.df-btn-secondary {
  background-color: transparent;
  border-color: var(--df-navy-800);
  color: var(--df-navy-800);
}

.df-btn-secondary:hover {
  background-color: var(--df-navy-800);
  color: #ffffff;
  transform: translateY(-2px);
}

.df-btn-gold {
  background: linear-gradient(135deg, var(--df-gold-500), var(--df-gold-600));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.df-btn-gold:hover {
  background: linear-gradient(135deg, var(--df-gold-400), var(--df-gold-500));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.45);
}

/* --------------------------------------------------------------------------
   3. Section 1: Hero Section
   -------------------------------------------------------------------------- */
.dumala-hero-section {
  background: linear-gradient(180deg, var(--df-bg-secondary) 0%, var(--df-bg-primary) 100%);
  padding-top: 4rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.dumala-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.dumala-hero-content {
  max-width: 600px;
}

.dumala-hero-tagline {
  font-family: var(--df-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--df-gold-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.dumala-hero-desc {
  font-size: 1.15rem;
  color: var(--df-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.dumala-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.dumala-trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--df-border);
}

.dumala-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--df-text-primary);
}

.dumala-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--df-radius-full);
  background: var(--df-gold-100);
  color: var(--df-gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero Media / Graphic Showcase */
.dumala-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dumala-hero-card {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--df-navy-900), var(--df-navy-700));
  border-radius: var(--df-radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--df-shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: #ffffff;
}

.dumala-hero-bg-pattern {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(217, 119, 6, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.dumala-hero-fabric-art {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dfSpinSlow 30s linear infinite;
}

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

.dumala-hero-card-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--df-gold-500);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--df-radius-full);
  margin-bottom: 0.75rem;
}

.dumala-hero-card-title {
  font-family: var(--df-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

/* Floating Glass Cards */
.dumala-floating-badge {
  position: absolute;
  top: 10%;
  left: -2rem;
  background: var(--df-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--df-glass-border);
  padding: 0.85rem 1.25rem;
  border-radius: var(--df-radius-md);
  box-shadow: var(--df-glass-shadow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: dfFloat 4s ease-in-out infinite;
}

@keyframes dfFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* --------------------------------------------------------------------------
   4. Section 2: Why Choose Pagrishop (4 Cards Grid)
   -------------------------------------------------------------------------- */
.dumala-benefits-section {
  background-color: var(--df-bg-primary);
}

.dumala-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dumala-benefit-card {
  background-color: var(--df-bg-secondary);
  border: 1px solid var(--df-border);
  border-radius: var(--df-radius-md);
  padding: 2rem 1.5rem;
  transition: var(--df-transition);
  position: relative;
  overflow: hidden;
}

.dumala-benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--df-gold-400);
  box-shadow: var(--df-shadow-md);
  background-color: var(--df-bg-primary);
}

.dumala-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--df-radius-md);
  background: var(--df-navy-800);
  color: var(--df-gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--df-transition);
}

.dumala-benefit-card:hover .dumala-benefit-icon {
  background: var(--df-gold-500);
  color: #ffffff;
  transform: scale(1.08);
}

.dumala-benefit-title {
  font-family: var(--df-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--df-text-primary);
  margin-bottom: 0.5rem;
}

.dumala-benefit-desc {
  font-size: 0.925rem;
  color: var(--df-text-secondary);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   5. Section 3: WooCommerce Dynamic Product Grid
   -------------------------------------------------------------------------- */
.dumala-products-section {
  background-color: var(--df-bg-secondary);
}

.dumala-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.dumala-product-card {
  background-color: var(--df-bg-primary);
  border-radius: var(--df-radius-md);
  border: 1px solid var(--df-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--df-transition);
  position: relative;
}

.dumala-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--df-shadow-lg);
  border-color: var(--df-border-hover);
}

.dumala-product-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--df-bg-tertiary);
  overflow: hidden;
}

.dumala-product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dumala-product-card:hover .dumala-product-image-wrap img {
  transform: scale(1.06);
}

.dumala-badge-sale {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--df-gold-500);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--df-radius-full);
  z-index: 2;
  box-shadow: var(--df-shadow-sm);
}

.dumala-product-actions-overlay {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--df-transition);
  z-index: 3;
}

.dumala-product-card:hover .dumala-product-actions-overlay {
  opacity: 1;
  transform: translateY(0);
}

.df-action-btn {
  flex: 1;
  padding: 0.6rem;
  font-size: 0.825rem;
  font-weight: 600;
  background: var(--df-navy-800);
  color: #ffffff;
  border: none;
  border-radius: var(--df-radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: var(--df-transition-fast);
}

.df-action-btn:hover {
  background: var(--df-gold-500);
}

.dumala-product-details {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dumala-product-title {
  font-family: var(--df-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--df-text-primary);
  text-decoration: none;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--df-transition-fast);
}

.dumala-product-title:hover {
  color: var(--df-gold-500);
}

.dumala-rating-wrap {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--df-gold-400);
  margin-bottom: 0.5rem;
}

.dumala-product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--df-navy-800);
  margin-top: auto;
}

.dumala-product-price del {
  font-size: 0.9rem;
  color: var(--df-text-muted);
  font-weight: 400;
  margin-right: 0.35rem;
}

.dumala-product-price ins {
  text-decoration: none;
}

/* Skeleton Loading State */
.dumala-skeleton-card {
  background-color: var(--df-bg-primary);
  border-radius: var(--df-radius-md);
  height: 380px;
  overflow: hidden;
  position: relative;
}

.dumala-skeleton-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: dfShimmer 1.5s infinite;
}

@keyframes dfShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* --------------------------------------------------------------------------
   6. Section 4: Available Colours Swatches Grid
   -------------------------------------------------------------------------- */
.dumala-colours-section {
  background-color: var(--df-bg-primary);
}

.dumala-colours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dumala-colour-card {
  background: var(--df-bg-secondary);
  border: 1px solid var(--df-border);
  border-radius: var(--df-radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--df-transition);
  cursor: pointer;
}

.dumala-colour-card:hover {
  transform: translateY(-4px);
  border-color: var(--df-navy-800);
  box-shadow: var(--df-shadow-md);
}

.dumala-swatch-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.15), 0 2px 6px rgba(0,0,0,0.1);
  flex-shrink: 0;
  border: 2px solid #ffffff;
}

.dumala-colour-info {
  display: flex;
  flex-direction: column;
}

.dumala-colour-name {
  font-family: var(--df-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--df-text-primary);
}

.dumala-colour-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--df-gold-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Swatch Colors */
.swatch-saffron { background: radial-gradient(circle at 30% 30%, #ff9933, #d97706); }
.swatch-navy    { background: radial-gradient(circle at 30% 30%, #1e3a8a, #0f172a); }
.swatch-black   { background: radial-gradient(circle at 30% 30%, #334155, #020617); }
.swatch-white   { background: radial-gradient(circle at 30% 30%, #ffffff, #e2e8f0); border: 2px solid var(--df-border); }
.swatch-green   { background: radial-gradient(circle at 30% 30%, #15803d, #064e3b); }
.swatch-maroon  { background: radial-gradient(circle at 30% 30%, #991b1b, #450a0a); }
.swatch-grey    { background: radial-gradient(circle at 30% 30%, #64748b, #334155); }
.swatch-sky     { background: radial-gradient(circle at 30% 30%, #38bdf8, #0284c7); }

/* --------------------------------------------------------------------------
   7. Section 5: Why Dumala Fabrics (Deep Dive Spotlight)
   -------------------------------------------------------------------------- */
.dumala-deepdive-section {
  background-color: var(--df-bg-secondary);
}

.dumala-deepdive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dumala-deepdive-visual {
  position: relative;
}

.dumala-deepdive-box {
  background: var(--df-navy-800);
  border-radius: var(--df-radius-lg);
  padding: 3.5rem 2.5rem;
  color: #ffffff;
  box-shadow: var(--df-shadow-lg);
  position: relative;
  overflow: hidden;
}

.dumala-deepdive-box-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217,119,6,0.15) 0%, transparent 70%);
}

.dumala-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dumala-feature-item {
  display: flex;
  gap: 1rem;
}

.dumala-feature-icon-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--df-gold-100);
  color: var(--df-gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.dumala-feature-text h4 {
  font-family: var(--df-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--df-text-primary);
  margin-bottom: 0.25rem;
}

.dumala-feature-text p {
  font-size: 0.95rem;
  color: var(--df-text-secondary);
}

/* --------------------------------------------------------------------------
   8. Section 6: How To Choose Dumala Fabric (Vertical Timeline)
   -------------------------------------------------------------------------- */
.dumala-timeline-section {
  background-color: var(--df-bg-primary);
}

.dumala-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.dumala-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 3px;
  background: var(--df-border);
}

.dumala-timeline-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.dumala-step-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--df-navy-800);
  color: var(--df-gold-400);
  font-family: var(--df-font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--df-bg-primary);
  z-index: 2;
  transition: var(--df-transition);
}

.dumala-timeline-step:hover .dumala-step-number {
  background: var(--df-gold-500);
  color: #ffffff;
}

.dumala-step-card {
  background: var(--df-bg-secondary);
  border: 1px solid var(--df-border);
  border-radius: var(--df-radius-md);
  padding: 1.5rem 1.75rem;
  flex-grow: 1;
  transition: var(--df-transition);
}

.dumala-timeline-step:hover .dumala-step-card {
  border-color: var(--df-navy-800);
  box-shadow: var(--df-shadow-md);
  transform: translateX(6px);
}

.dumala-step-title {
  font-family: var(--df-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--df-text-primary);
  margin-bottom: 0.35rem;
}

.dumala-step-desc {
  font-size: 0.95rem;
  color: var(--df-text-secondary);
}

/* --------------------------------------------------------------------------
   9. Section 7: Comparison Table Matrix
   -------------------------------------------------------------------------- */
.dumala-comparison-section {
  background-color: var(--df-bg-secondary);
}

.dumala-table-wrapper {
  overflow-x: auto;
  background: var(--df-bg-primary);
  border-radius: var(--df-radius-lg);
  border: 1px solid var(--df-border);
  box-shadow: var(--df-shadow-md);
}

.dumala-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

.dumala-table th,
.dumala-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--df-border);
}

.dumala-table th {
  background-color: var(--df-navy-800);
  color: #ffffff;
  font-family: var(--df-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.dumala-table th.highlight-col {
  background-color: var(--df-gold-500);
  color: #ffffff;
}

.dumala-table tr:last-child td {
  border-bottom: none;
}

.dumala-table td.highlight-cell {
  background-color: var(--df-gold-50);
  font-weight: 700;
  color: var(--df-navy-800);
}

.dumala-tag-best {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: var(--df-gold-500);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--df-radius-full);
  margin-left: 0.35rem;
}

/* --------------------------------------------------------------------------
   10. Section 8: Feature Grid (6 Cards)
   -------------------------------------------------------------------------- */
.dumala-features-section {
  background-color: var(--df-bg-primary);
}

.dumala-feature-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.dumala-grid-card {
  background: var(--df-bg-secondary);
  border: 1px solid var(--df-border);
  border-radius: var(--df-radius-md);
  padding: 2rem;
  transition: var(--df-transition);
}

.dumala-grid-card:hover {
  transform: translateY(-4px);
  border-color: var(--df-gold-400);
  box-shadow: var(--df-shadow-md);
}

/* --------------------------------------------------------------------------
   11. Section 9: Customer Reviews Slider
   -------------------------------------------------------------------------- */
.dumala-reviews-section {
  background-color: var(--df-bg-secondary);
}

.dumala-reviews-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.dumala-reviews-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.dumala-reviews-track::-webkit-scrollbar {
  height: 6px;
}
.dumala-reviews-track::-webkit-scrollbar-thumb {
  background: var(--df-gold-400);
  border-radius: var(--df-radius-full);
}

.dumala-review-card {
  flex: 0 0 calc(50% - 0.75rem);
  scroll-snap-align: start;
  background: var(--df-bg-primary);
  border: 1px solid var(--df-border);
  border-radius: var(--df-radius-md);
  padding: 2rem;
  box-shadow: var(--df-shadow-sm);
  display: flex;
  flex-direction: column;
}

.dumala-review-stars {
  color: var(--df-gold-400);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.dumala-review-body {
  font-size: 1rem;
  color: var(--df-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.dumala-review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.dumala-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--df-navy-800);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dumala-author-meta h5 {
  font-family: var(--df-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--df-text-primary);
}

.dumala-verified-badge {
  font-size: 0.75rem;
  color: #16a34a;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   12. Section 10: FAQ Accordion
   -------------------------------------------------------------------------- */
.dumala-faq-section {
  background-color: var(--df-bg-primary);
}

.dumala-faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dumala-faq-item {
  border: 1px solid var(--df-border);
  border-radius: var(--df-radius-md);
  background: var(--df-bg-secondary);
  overflow: hidden;
  transition: var(--df-transition-fast);
}

.dumala-faq-item.active {
  border-color: var(--df-navy-800);
  background: var(--df-bg-primary);
  box-shadow: var(--df-shadow-sm);
}

.dumala-faq-button {
  width: 100%;
  padding: 1.35rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--df-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--df-text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dumala-faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.dumala-faq-item.active .dumala-faq-icon {
  transform: rotate(180deg);
}

.dumala-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
}

.dumala-faq-item.active .dumala-faq-panel {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.dumala-faq-content {
  font-size: 0.975rem;
  color: var(--df-text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   13. Section 11 & 12: Blog & Related Categories
   -------------------------------------------------------------------------- */
.dumala-blog-section,
.dumala-categories-section {
  background-color: var(--df-bg-secondary);
}

.dumala-blog-grid,
.dumala-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.dumala-blog-card,
.dumala-category-card {
  background: var(--df-bg-primary);
  border: 1px solid var(--df-border);
  border-radius: var(--df-radius-md);
  padding: 1.75rem;
  transition: var(--df-transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.dumala-blog-card:hover,
.dumala-category-card:hover {
  transform: translateY(-5px);
  border-color: var(--df-gold-400);
  box-shadow: var(--df-shadow-md);
}

/* --------------------------------------------------------------------------
   14. Section 13: Luxury Newsletter & Floating CTAs
   -------------------------------------------------------------------------- */
.dumala-newsletter-section {
  background-color: var(--df-navy-800);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dumala-newsletter-box {
  max-width: 680px;
  margin: 0 auto;
}

.dumala-newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.dumala-newsletter-input {
  flex-grow: 1;
  padding: 0.9rem 1.25rem;
  border-radius: var(--df-radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  outline: none;
}

.dumala-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Sticky Bottom Bar CTA */
.dumala-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--df-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--df-border);
  padding: 0.85rem 1.5rem;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.dumala-sticky-bar.visible {
  transform: translateY(0);
}

.dumala-sticky-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

/* Floating WhatsApp Button */
.dumala-whatsapp-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--df-transition);
  text-decoration: none;
}

.dumala-whatsapp-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

/* Quick View Modal */
.df-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.df-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.df-modal-card {
  background: var(--df-bg-primary);
  border-radius: var(--df-radius-lg);
  max-width: 700px;
  width: 90%;
  padding: 2rem;
  position: relative;
  box-shadow: var(--df-shadow-lg);
}

/* --------------------------------------------------------------------------
   15. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .dumala-hero-grid,
  .dumala-deepdive-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .dumala-benefits-grid,
  .dumala-product-grid,
  .dumala-colours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dumala-feature-grid-6,
  .dumala-blog-grid,
  .dumala-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dumala-review-card {
    flex: 0 0 calc(80% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .dumala-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .dumala-benefits-grid,
  .dumala-product-grid,
  .dumala-colours-grid,
  .dumala-feature-grid-6,
  .dumala-blog-grid,
  .dumala-categories-grid {
    grid-template-columns: 1fr;
  }
  .dumala-trust-badges-grid {
    grid-template-columns: 1fr;
  }
  .dumala-review-card {
    flex: 0 0 100%;
  }
  .dumala-newsletter-form {
    flex-direction: column;
  }
  .dumala-floating-badge {
    display: none;
  }
  .dumala-whatsapp-cta {
    bottom: 4.5rem;
    right: 1rem;
  }
}

/* --------------------------------------------------------------------------
   16. Replaceable Banner Image & Link Card Styles
   -------------------------------------------------------------------------- */
.dumala-banner-link-wrap {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--df-radius-lg);
  overflow: hidden;
  transition: var(--df-transition);
}

.dumala-banner-link-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--df-shadow-hover);
}

.dumala-promo-banner-card {
  display: block;
  text-decoration: none;
  border-radius: var(--df-radius-lg);
  overflow: hidden;
  box-shadow: var(--df-shadow-md);
  transition: var(--df-transition);
}

.dumala-promo-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--df-shadow-hover);
}

.dumala-promo-bg {
  padding: 3.5rem 2.5rem;
  background-size: cover;
  background-position: center;
  border-radius: var(--df-radius-lg);
  position: relative;
}

.dumala-promo-content {
  max-width: 650px;
  color: #ffffff;
}

.dumala-promo-title {
  font-family: var(--df-font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 1rem 0 1.5rem 0;
}

/* --------------------------------------------------------------------------
   17. Turbans Master Hub Category Cards & Tab Navigation
   -------------------------------------------------------------------------- */
.turban-cat-card {
  background: var(--df-bg-primary);
  border: 1px solid var(--df-border);
  border-radius: var(--df-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: var(--df-transition);
}

.turban-cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--df-gold-400);
  box-shadow: var(--df-shadow-lg);
}

.turban-cat-banner-box {
  width: 100%;
  aspect-ratio: 1920 / 700;
  overflow: hidden;
  background-color: var(--df-bg-tertiary);
}

.turban-cat-banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.turban-cat-card:hover .turban-cat-banner-box img {
  transform: scale(1.04);
}

.turban-cat-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.turban-cat-title {
  font-family: var(--df-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--df-text-primary);
}

.turban-cat-desc {
  font-size: 0.95rem;
  color: var(--df-text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.turban-tab-btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--df-bg-primary);
  border: 1px solid var(--df-border);
  color: var(--df-text-secondary);
  border-radius: var(--df-radius-full);
  cursor: pointer;
  transition: var(--df-transition);
}

.turban-tab-btn:hover,
.turban-tab-btn.active {
  background: var(--df-navy-800);
  color: #ffffff;
  border-color: var(--df-navy-800);
  box-shadow: var(--df-shadow-sm);
}

@media (max-width: 900px) {
  .turban-categories-grid {
    grid-template-columns: 1fr !important;
  }
}

/* --------------------------------------------------------------------------
   18. Sliding Banner Carousel Component
   -------------------------------------------------------------------------- */
/* Banner images are 1920×700 — aspect ratio: 1920/700 */
.df-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 700;
  border-radius: var(--df-radius-lg);
  overflow: hidden;
  box-shadow: var(--df-shadow-lg);
  background-color: transparent;
}

.df-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.df-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
}

.df-slide img {
  width: 100%;
  height: 100% !important;
  max-height: none !important;
  display: block;
  object-fit: cover !important;
  object-position: center center;
}

/* Category banner boxes — same 1920×700 images */
.dumala-banner-hero-box,
.df-banner-1920x750 {
  width: 100%;
  aspect-ratio: 1920 / 700;
  overflow: hidden;
  border-radius: 20px;
}

.dumala-banner-hero-box img,
.df-banner-1920x750 img {
  width: 100%;
  height: 100% !important;
  max-height: none !important;
  display: block;
  object-fit: cover !important;
  object-position: center center;
}

/* Mobile: cap the banner height so it doesn't fill the screen */
@media (max-width: 768px) {
  .df-slider-container {
    aspect-ratio: 1920 / 700;
    max-height: 220px;
  }

  .dumala-banner-hero-box,
  .df-banner-1920x750 {
    aspect-ratio: unset;
    height: auto;
  }
}


/* Dumala Banner — native 1600×542 aspect ratio */
.df-banner-dumala {
  width: 100%;
  aspect-ratio: 1600 / 542;
  overflow: hidden;
  border-radius: 12px;
}

.df-banner-dumala a {
  display: block;
  width: 100%;
  height: 100%;
}

.df-banner-dumala img {
  width: 100%;
  height: 100% !important;
  max-height: none !important;
  display: block;
  object-fit: cover !important;
  object-position: center center;
}

@media (max-width: 768px) {
  .df-banner-dumala {
    aspect-ratio: 1600 / 542;
    max-height: 160px;
  }
}

/* --------------------------------------------------------------------------
   Universal Section Banner — used on ALL full-width banners (1920×700)
   across every page: products, turbans-online, gifting-hampers, etc.
   -------------------------------------------------------------------------- */
.df-section-banner {
  width: 100%;
  aspect-ratio: 1920 / 700;
  overflow: hidden;
  border-radius: 12px;
}

.df-section-banner a {
  display: block;
  width: 100%;
  height: 100%;
}

.df-section-banner img {
  width: 100%;
  height: 100% !important;
  max-height: none !important;
  display: block;
  object-fit: cover !important;
  object-position: center center;
}

/* Turban hero banner — same 1920×700 ratio but no border-radius (edge-to-edge) */
.df-turban-hero-banner {
  width: 100%;
  aspect-ratio: 1920 / 700;
  overflow: hidden;
  border-radius: 20px;
}

.df-turban-hero-banner a {
  display: block;
  width: 100%;
  height: 100%;
}

.df-turban-hero-banner img {
  width: 100%;
  height: 100% !important;
  max-height: none !important;
  display: block;
  object-fit: cover !important;
  object-position: center center;
}

/* dumala-banner-hero-box — used on dumala-fabrics page (1600×542) */
.dumala-banner-hero-box {
  width: 100%;
  aspect-ratio: 1600 / 542;
  overflow: hidden;
  border-radius: 20px;
}

.dumala-banner-hero-box img {
  width: 100%;
  height: 100% !important;
  max-height: none !important;
  display: block;
  object-fit: cover !important;
  object-position: center center;
}

@media (max-width: 768px) {
  .df-section-banner {
    aspect-ratio: 1920 / 700;
    max-height: 200px;
  }

  .df-turban-hero-banner {
    aspect-ratio: 1920 / 700;
    max-height: 200px;
  }

  .dumala-banner-hero-box {
    aspect-ratio: 1600 / 542;
    max-height: 160px;
  }
}


/* Arrow Navigation (Compact & Sleek) */
.df-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  font-size: 0.75rem;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--df-transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.df-slider-arrow:hover {
  background: var(--df-navy-800);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.df-slider-arrow-prev { left: 0.5rem; }
.df-slider-arrow-next { right: 0.5rem; }

/* Dot Navigation (Compact) */
.df-slider-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 10;
}

.df-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: var(--df-transition-fast);
  padding: 0;
}

.df-dot.active {
  background: var(--df-gold-400);
  width: 18px;
  border-radius: 10px;
}

/* ==========================================================================
   19. COMPREHENSIVE MOBILE OPTIMIZATION MEDIA QUERIES (320px - 768px)
   ========================================================================== */

@media (max-width: 768px) {
  /* Container Padding & Spacing */
  .dumala-container {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }

  .dumala-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Typography Scaling */
  .dumala-title-lg {
    font-size: clamp(1.5rem, 5vw, 2.25rem) !important;
    line-height: 1.25 !important;
  }

  .dumala-title-md {
    font-size: clamp(1.35rem, 4.5vw, 1.85rem) !important;
    line-height: 1.3 !important;
  }

  .dumala-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
  }

  /* 2-Column Mobile Product Grid */
  .dumala-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .dumala-product-card {
    border-radius: 10px !important;
  }

  .dumala-product-details {
    padding: 0.65rem !important;
  }

  .dumala-product-title {
    font-size: 0.85rem !important;
    line-height: 1.25 !important;
    height: 2.3em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .dumala-product-price {
    font-size: 0.875rem !important;
    margin-top: 0.35rem !important;
  }

  /* Touch Friendly Buttons */
  .df-btn {
    min-height: 44px !important;
    padding: 0.65rem 1.15rem !important;
    font-size: 0.875rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Category Cards Single Column on Mobile */
  .turban-categories-grid,
  .dumala-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .turban-cat-card {
    margin-bottom: 0.5rem !important;
  }

  /* Swipeable Horizontal Navigation */
  .turban-tabs-nav,
  .turban-tabs-nav-mobile {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .turban-tabs-nav::-webkit-scrollbar,
  .turban-tabs-nav-mobile::-webkit-scrollbar {
    display: none !important;
  }

  .turban-tab-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
  }

  /* Trust Badges Grid 2-Column on Mobile */
  .dumala-trust-badges-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  .dumala-trust-item {
    padding: 0.6rem !important;
    font-size: 0.8rem !important;
  }

  /* Scrollable Table Wrapper */
  .dumala-table-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: 10px !important;
  }

  .dumala-table {
    min-width: 520px !important;
    font-size: 0.85rem !important;
  }

  /* Mobile Sticky Bottom CTA Bar */
  .dumala-sticky-bar {
    padding: 0.55rem 0.85rem !important;
    padding-bottom: max(0.55rem, env(safe-area-inset-bottom)) !important;
  }

  .dumala-sticky-container {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  /* Quick View Modal Mobile Sizing */
  .df-modal-card {
    width: 92% !important;
    max-width: 480px !important;
    padding: 1.25rem !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
  }
}

@media (max-width: 480px) {
  .dumala-product-grid {
    gap: 0.5rem !important;
  }

  .dumala-trust-badges-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}


/* ==========================================================================
   PAGRISHOP DYNAMIC THEME SWITCHER & ALL-IN-ONE STORE STYLES
   ========================================================================== */

/* 1. Theme Presets (Applied to .df-theme-wrapper or container) */
/* 1. Theme Presets (Pagrishop Royal Gold & Navy Brand Palette) */
.df-theme-wrapper,
.df-theme-wrapper[data-theme="royal-gold"] {
  --df-bg-primary: #ffffff;
  --df-bg-secondary: #f8fafc;
  --df-card-bg: #ffffff;
  --df-text-primary: #0f172a;
  --df-text-secondary: #475569;
  --df-border: #cbd5e1;
  --df-accent-gold: #b8860b;
  --df-input-bg: #ffffff;
}

/* Apply variables to store elements */
.pagrishop-store-wrapper {
  background-color: var(--df-bg-primary);
  color: var(--df-text-primary);
  padding: 3rem 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* 2. View Switcher Buttons */
.df-view-btn {
  background: var(--df-card-bg, #ffffff);
  color: var(--df-text-primary, #0f172a);
  border: 1px solid var(--df-border, #cbd5e1);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.df-view-btn:hover {
  border-color: var(--df-accent-gold, #b8860b);
  transform: translateY(-1px);
}

.df-view-btn.active {
  background: linear-gradient(135deg, #0b1a3a, #142a5c);
  color: #ffffff !important;
  border-color: #0b1a3a !important;
  box-shadow: 0 4px 12px rgba(11, 26, 58, 0.25);
}

/* 3. Color Swatch Filter Pills */
.df-swatch-pill {
  background: var(--df-card-bg, #ffffff);
  color: var(--df-text-secondary, #475569);
  border: 1px solid var(--df-border, #cbd5e1);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.df-swatch-pill span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

.df-swatch-pill:hover, .df-swatch-pill.active {
  background: #0b1a3a !important;
  color: #ffffff !important;
  border-color: #0b1a3a !important;
  box-shadow: 0 4px 12px rgba(11, 26, 58, 0.25);
}

/* Force 100% Full Un-cropped Un-zoomed Product Images */
.dumala-product-image-wrap,
.dumala-product-card .dumala-product-image-wrap {
  aspect-ratio: unset !important;
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
  text-align: center !important;
  background: #ffffff !important;
}

.dumala-product-image-wrap img,
.dumala-product-card img,
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 280px !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0.5rem !important;
  background: #ffffff !important;
  transform: none !important;
  display: inline-block !important;
}

.dumala-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11, 26, 58, 0.12) !important;
  border-color: #b8860b !important;
}

.dumala-product-card:hover img {
  transform: none !important;
}

/* Prevent floating popups / bottom bars from overlapping grid cards */
.pagrishop-store-wrapper {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .df-store-control-bar {
    padding: 1rem !important;
    border-radius: 14px !important;
  }
  .df-swatch-filter-row {
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  [data-layout="list"] .dumala-product-card {
    flex-direction: column !important;
  }
  [data-layout="list"] .dumala-product-image-wrap {
    width: 100% !important;
  }
}






