/**
 * Devine Custom Theme - Main Stylesheet (Mobile-First Architecture)
 * Fully responsive across all viewports (360px, 390px, 414px, 768px, 1024px, 1280px+).
 */

/* ── 1. Custom Properties & Tokens ── */
:root {
  /* Primary: Deep Maroon / Burgundy (from logo lettering) */
  --primary: #721D24;
  --primary-dark: #561117;
  --primary-deep: #4A0E13;
  --maroon: #721D24;
  --earth: #721D24;            /* Primary Headings, Titles & Emphases */

  /* Secondary: Royal Gold (from logo trident & rings) */
  --secondary: #C99738;
  --gold: #C99738;
  --gold-light: #E8C87A;
  --gold-dark: #9E7420;
  --gold-foreground: #281B18;

  /* Accent: Saffron / Warm Orange (from logo flag & sacred accents) */
  --saffron: #E65C17;          /* Sacred Saffron / Warm Orange */
  --accent: #E65C17;
  --rose: #D9462A;             /* Sale badge accent */

  /* Background: Warm Cream / Off-White */
  --ivory: #FDFBF7;            /* Warm cream page background */
  --secondary-bg: #F7F2EB;     /* Soft warm cream card & thumbnail background */
  --card-bg: #FFFFFF;
  --border: #E8DFD5;           /* Warm golden-sand subtle border */

  /* Typography: Dark Brown / Charcoal */
  --charcoal: #281B18;         /* Deep dark brown typography */
  --text-muted: #73625D;       /* Warm muted text */

  --radius: 1rem;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ── 2. Universal Reset & Global Safety Net ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--earth);
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

h1 { font-size: clamp(1.75rem, 5.5vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 4.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 3.5vw, 1.6rem); }
h4 { font-size: clamp(1.05rem, 3vw, 1.3rem); }

p, span, a, li, label, blockquote {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img, video, svg, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 16px; /* 16px prevents iOS Safari auto-zoom on focus */
  max-width: 100%;
  box-sizing: border-box;
}

/* ── 3. Fluid Containers & Responsive Grids (Mobile-First) ── */
.devine-container {
  width: 100%;
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3.5vw, 2rem);
  padding-right: clamp(1rem, 3.5vw, 2rem);
  box-sizing: border-box;
}

/* 2-Column Grid: 1 column on mobile, 2 columns on tablet & desktop */
.devine-grid-2 {
  display: grid;
  grid-template-columns: 100%;
  gap: 2rem;
}

@media (min-width: 768px) {
  .devine-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .devine-grid-2 {
    gap: 3.5rem;
  }
}

/* 3-Column Grid: 1 col on mobile, 2 on tablet, 3 on desktop */
.devine-grid-3 {
  display: grid;
  grid-template-columns: 100%;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .devine-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .devine-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

/* 4-Column Grid: 2 cols on mobile, 2 cols on tablet, 4 cols on desktop */
.devine-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .devine-grid-4 {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .devine-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* WooCommerce Standard Product Loops */
ul.products, .woocommerce ul.products, .related.products ul.products, .upsells.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.75rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 2rem 0 !important;
}

@media (min-width: 640px) {
  ul.products, .woocommerce ul.products, .related.products ul.products, .upsells.products ul.products {
    gap: 1.25rem !important;
  }
}

@media (min-width: 1024px) {
  ul.products, .woocommerce ul.products, .related.products ul.products, .upsells.products ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1.5rem !important;
  }
}

ul.products li.product, .woocommerce ul.products li.product {
  margin: 0 !important;
  width: 100% !important;
  float: none !important;
}

.gold-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 999px;
  margin: 1.25rem auto;
}

/* ── 4. Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #721D24 0%, #561117 100%);
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF !important;
  letter-spacing: 0.02em;
  border: 1px solid rgba(201, 151, 56, 0.45);
  box-shadow: 0 4px 18px -4px rgba(114, 29, 36, 0.4);
  transition: all 0.25s ease;
  cursor: pointer;
  outline: none;
  min-height: 44px;
  text-align: center;
  box-sizing: border-box;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E65C17 0%, #C44508 100%);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -4px rgba(230, 92, 23, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1.5px solid var(--gold);
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #721D24;
  background: transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  min-height: 44px;
  box-sizing: border-box;
}

.btn-outline:hover {
  background-color: var(--gold);
  color: #FFFFFF;
}

/* ── 5. Header & Announcement Bar ── */
.announcement-bar {
  background: linear-gradient(90deg, #4A0E13 0%, #721D24 50%, #4A0E13 100%);
  color: #FFFFFF;
  font-size: clamp(9.5px, 2.5vw, 11px);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 0.75rem;
  text-align: center;
  line-height: 1.4;
  border-bottom: 1px solid rgba(201, 151, 56, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  gap: 0.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex-shrink: 0;
}

.site-logo-img {
  height: 44px;
  width: auto;
  max-height: 48px;
  max-width: 175px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .site-logo-img {
    height: 36px;
    max-height: 38px;
    max-width: 140px;
  }
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 0.4rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(201, 161, 74, 0.45);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  margin-bottom: 1.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-logo-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.footer-logo-img {
  height: 38px;
  width: auto;
  max-width: 165px;
  object-fit: contain;
  display: block;
}

.logo-badge {
  display: inline-flex;
  height: clamp(2rem, 5vw, 2.5rem);
  width: clamp(2rem, 5vw, 2.5rem);
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--earth) 100%);
  box-shadow: 0 4px 10px rgba(27, 94, 71, 0.3);
  flex-shrink: 0;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--earth);
  line-height: 1.1;
  white-space: nowrap;
}

.logo-subtitle {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 380px) {
  .logo-subtitle {
    display: none;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}

.nav-item {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item:hover {
  color: var(--saffron);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 14rem;
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 50;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  border-radius: 0.5rem;
  color: var(--charcoal);
  transition: all 0.15s ease;
}

.dropdown-link:hover {
  background-color: var(--secondary-bg);
  color: var(--saffron);
  padding-left: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .header-actions {
    gap: 0.65rem;
  }
}

.action-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  color: var(--earth);
  transition: all 0.2s ease;
  border: none;
  background: transparent;
  cursor: pointer;
}

.action-btn:hover {
  background-color: var(--secondary-bg);
}

/* Hide non-essential top bar icons on narrow mobile (<420px) to prevent header wrapping */
@media (max-width: 420px) {
  .action-btn-secondary {
    display: none;
  }
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  height: 1.1rem;
  width: 1.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--saffron);
  color: #FFFFFF;
  font-size: 9.5px;
  font-weight: 700;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.bump-animate {
  animation: badgeBump 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgeBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); background-color: var(--gold); }
  100% { transform: scale(1); }
}

/* Mobile Nav Drawer */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem;
  color: var(--earth);
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 22rem;
  background-color: #FFFFFF;
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active .mobile-drawer-content {
  transform: translateX(0);
}

/* ── 6. Clean Professional Sacred Hero Banner ── */
.hero-clean-banner {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-color: #24080B;
  background-image: 
    linear-gradient(to bottom, rgba(38, 8, 12, 0.94) 0%, rgba(28, 6, 9, 0.85) 45%, rgba(16, 4, 6, 0.72) 100%),
    url('../images/hero-bg-mobile.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  border-bottom: 1px solid rgba(201, 151, 56, 0.35);
  overflow: hidden;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-clean-banner {
    min-height: 640px;
    background-image: 
      linear-gradient(to right, rgba(38, 8, 12, 0.96) 0%, rgba(30, 7, 10, 0.88) 38%, rgba(22, 5, 8, 0.52) 65%, rgba(16, 4, 6, 0.15) 85%, transparent 100%),
      url('../images/hero-bg-desktop.jpg');
    background-position: right center;
  }
}

@media (min-width: 1200px) {
  .hero-clean-banner {
    min-height: 680px;
  }
}

.hero-clean-content {
  max-width: 38rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(201, 151, 56, 0.55);
  background: rgba(45, 10, 14, 0.65);
  backdrop-filter: blur(10px);
  padding: 0.35rem 0.95rem;
  font-size: clamp(10px, 2.5vw, 11px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  align-self: flex-start;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  max-width: 100%;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6.5vw, 3.85rem);
  font-weight: 500;
  line-height: 1.16;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  word-break: break-word;
}

.hero-title-highlight {
  font-style: italic;
  color: var(--gold-light);
  display: inline-block;
  text-shadow: 0 2px 14px rgba(201, 151, 56, 0.35);
}

.hero-desc {
  font-size: clamp(0.925rem, 2.8vw, 1.05rem);
  color: #F0EAE1;
  max-width: 34rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-btn-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  width: 100%;
}

@media (min-width: 480px) {
  .hero-btn-group {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
  }
}

.hero-btn-main {
  background: linear-gradient(135deg, #721D24 0%, #4A0E13 100%);
  border: 1.5px solid rgba(201, 151, 56, 0.7);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.5), 0 0 18px rgba(201, 151, 56, 0.25);
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .hero-btn-main {
    width: auto;
  }
}

.hero-btn-main:hover {
  background: linear-gradient(135deg, #E65C17 0%, #C44508 100%);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.6), 0 0 24px rgba(230, 92, 23, 0.4);
}

.hero-link-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.925rem;
  transition: all 0.2s ease;
  padding: 0.5rem;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-link-secondary:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.hero-trust-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8125rem;
  color: #E2DDD5;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.35rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-trust-bar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
  }
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.hero-trust-icon {
  color: var(--gold);
}

.hero-trust-sep {
  display: none;
  color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 640px) {
  .hero-trust-sep {
    display: inline;
  }
}

/* ── 7. Trust Bar ── */
.trust-bar-section {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(2rem, 5vw, 2.75rem) 0;
  width: 100%;
}

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

.trust-icon-box {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  min-width: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(114, 29, 36, 0.08) 0%, rgba(201, 151, 56, 0.15) 100%);
  color: #721D24;
  border: 1px solid rgba(201, 151, 56, 0.22);
}

.trust-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 3.5vw, 1.125rem);
  font-weight: 600;
  color: var(--earth);
  margin-bottom: 0.2rem;
}

.trust-desc {
  font-size: 0.8125rem;
  color: #666666;
  line-height: 1.4;
}

/* ── 8. Visual Category Grid: Luxury Full-Image Cards ── */
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  background-color: #FFFFFF;
  border: 1px solid rgba(201, 151, 56, 0.25);
  box-shadow: 0 4px 18px rgba(114, 29, 36, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(114, 29, 36, 0.12);
}

.category-thumb-wrap {
  width: 100%;
  height: clamp(140px, 18vw, 210px);
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #FFFFFF 0%, #F5EFE3 100%);
  border-bottom: 1px solid rgba(201, 161, 74, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-thumb-wrap img {
  transform: scale(1.08);
}

.category-content-wrap {
  padding: clamp(0.9rem, 2vw, 1.25rem) clamp(0.75rem, 1.5vw, 1rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  background: #FFFFFF;
}

.category-name {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 600;
  color: var(--earth);
  margin-bottom: 0.35rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.category-card:hover .category-name {
  color: #B8860B;
}

.category-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  color: #777777;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.category-count {
  background: rgba(201, 161, 74, 0.1);
  color: var(--earth);
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 10.5px;
}

.category-arrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.category-card:hover .category-arrow {
  transform: translateX(3px);
}


/* ── 9. Product Card — Redesigned .pcard ── */
.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.1rem;
  background: #FFFFFF;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.28s cubic-bezier(0.16,1,0.3,1),
              border-color 0.28s ease;
  width: 100%;
}
.pcard:hover {
  transform: translateY(-5px);
  border-color: rgba(201,151,56,0.55);
  box-shadow: 0 18px 40px -8px rgba(114,29,36,0.18);
}

/* ── Thumbnail ── */
.pcard__thumb-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--secondary-bg);
  overflow: hidden;
  flex-shrink: 0;
}
.pcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
  display: block;
}
.pcard:hover .pcard__img { transform: scale(1.07); }

/* Subtle bottom gradient so text is legible */
.pcard__img-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(20,4,6,0.18) 0%,
    transparent 40%);
  pointer-events: none;
}

/* Hover overlay with "View Details" */
.pcard__hover-cta {
  position: absolute;
  inset: 0;
  background: rgba(20,4,6,0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.pcard:hover .pcard__hover-cta { opacity: 1; }
.pcard__hover-cta span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  backdrop-filter: blur(4px);
}

/* ── Badges ── */
.pcard__badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  border-radius: 9999px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.22rem 0.6rem;
  z-index: 5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pcard__badge--sale {
  background: var(--saffron);
  color: #FFFFFF;
}
.pcard__badge--cert {
  background: rgba(10,4,6,0.7);
  color: var(--gold-light);
  border: 1px solid rgba(201,151,56,0.5);
}

/* ── Wishlist ── */
.pcard__wish {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth);
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.pcard__wish:hover {
  transform: scale(1.12);
  background: var(--primary);
  color: #FFFFFF;
}

/* ── Info block ── */
.pcard__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.85rem 0.9rem 0.9rem;
  gap: 0.3rem;
}

.pcard__cat {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  line-height: 1;
}

.pcard__name {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 2.4vw, 1rem);
  font-weight: 600;
  color: var(--earth);
  line-height: 1.3;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s ease;
}
.pcard__name:hover { color: var(--saffron); }

/* Stars — inherited from devine_render_stars */
.star-rating-wrap {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  color: #D4A94A;
  margin-top: 0.05rem;
}

/* ── Footer (price + WA) ── */
.pcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: 0.55rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
}

.pcard__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  flex-wrap: wrap;
}

/* ── Product Price Typography ── */
.price,
.price-current,
.price-regular,
.single-product-price,
.summary .price,
.single-product .price,
.pcard .price,
ul.products li.product .price,
.woocommerce-Price-amount,
.woocommerce-Price-currencySymbol {
  font-family: var(--font-sans) !important;
  font-style: normal;
}

.price-regular,
del,
del .woocommerce-Price-amount {
  font-family: var(--font-sans) !important;
  font-size: 0.78em;
  color: #999999;
  font-weight: 400;
  text-decoration: line-through;
  opacity: 0.85;
}

.price-current,
ins,
ins .woocommerce-Price-amount {
  font-family: var(--font-sans) !important;
  font-size: clamp(0.95rem, 2.6vw, 1.15rem);
  font-weight: 700;
  color: var(--earth);
  text-decoration: none;
}

.single-product-price {
  font-family: var(--font-sans) !important;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--earth);
  margin: 0.5rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.single-product-price del,
.single-product-price del .woocommerce-Price-amount {
  font-size: 1.15rem;
  color: #888888;
  font-weight: 400;
}
.single-product-price ins,
.single-product-price ins .woocommerce-Price-amount {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--earth);
  text-decoration: none;
}

/* WhatsApp button on card */
.pcard__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #25D366;
  color: #FFFFFF !important;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.38rem 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.pcard__wa:hover {
  background: #1aad52;
  transform: translateY(-1px);
  color: #FFFFFF !important;
}



/* ── 10. Lab & Authenticity Banner ── */
.lab-banner-section {
  background: linear-gradient(135deg, #2A070B 0%, #4A0E13 50%, #63141B 100%);
  color: #FFFFFF;
  padding: clamp(3rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid rgba(201, 151, 56, 0.35);
  border-bottom: 1px solid rgba(201, 151, 56, 0.35);
}

.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(201, 151, 56, 0.35);
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
}

/* ── 11. Single Product Page ── */
.single-product-container {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  width: 100%;
}

.product-gallery-main {
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: var(--secondary-bg);
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  width: 100%;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.35rem;
  width: 100%;
}

.product-thumb-item {
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  border-radius: 0.65rem;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background-color: var(--secondary-bg);
  flex-shrink: 0;
}

.product-thumb-item.active {
  border-color: var(--saffron);
}

.product-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.lab-cert-banner {
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #FAF6EE 0%, #F5EDE0 100%);
  border: 1px solid rgba(201, 161, 74, 0.4);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Single Product Add to Cart Form */
.single-product form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.single-product form.cart .quantity {
  width: auto;
  min-width: 4.5rem;
}

.single-product form.cart .quantity input.qty {
  width: 4rem;
  height: 48px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  background: #FFFFFF;
}

.single-product form.cart .single_add_to_cart_button {
  flex: 1 1 14rem;
  min-height: 48px;
  width: 100%;
  border-radius: 9999px;
  background: linear-gradient(135deg, #721D24 0%, #561117 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(201, 151, 56, 0.5);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 18px -4px rgba(114, 29, 36, 0.45);
  transition: all 0.25s ease;
}

.single-product form.cart .single_add_to_cart_button:hover {
  background: linear-gradient(135deg, #E65C17 0%, #C44508 100%);
  border-color: var(--gold);
  box-shadow: 0 6px 22px -4px rgba(230, 92, 23, 0.45);
  transform: translateY(-1px);
}

/* ── 12. Cart & Checkout Responsive Overhauls ── */
.devine-cart-card,
.devine-checkout-card {
  background: #FFFFFF;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  padding: clamp(1rem, 3.5vw, 2.25rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.devine-checkout-grid {
  gap: clamp(1.5rem, 4vw, 3rem) !important;
  align-items: start;
}

@media (min-width: 1024px) {
  .devine-order-review-card {
    position: sticky;
    top: 6rem;
  }
}

/* Universal Shop Table & Order Review Table Safety */
table.shop_table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse !important;
  box-sizing: border-box !important;
}

/* Checkout Review Order Table - Prevents Price Overflow on Mobile */
table.woocommerce-checkout-review-order-table {
  width: 100% !important;
  max-width: 100% !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
  box-sizing: border-box !important;
}

table.woocommerce-checkout-review-order-table thead th {
  border-bottom: 2px solid var(--border) !important;
  padding: 0.75rem 0 !important;
  font-family: var(--font-serif) !important;
  font-size: 1.05rem !important;
  color: var(--earth) !important;
}

table.woocommerce-checkout-review-order-table th.product-name,
table.woocommerce-checkout-review-order-table td.product-name {
  width: 60% !important;
  padding: 0.75rem 0.5rem 0.75rem 0 !important;
  text-align: left !important;
  font-size: clamp(0.85rem, 3vw, 0.95rem) !important;
  line-height: 1.4 !important;
  color: var(--earth) !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  hyphens: auto !important;
  vertical-align: middle !important;
}

table.woocommerce-checkout-review-order-table td.product-name .product-quantity {
  font-weight: 700 !important;
  color: var(--charcoal) !important;
  white-space: nowrap !important;
}

table.woocommerce-checkout-review-order-table th.product-total,
table.woocommerce-checkout-review-order-table td.product-total {
  width: 40% !important;
  padding: 0.75rem 0 0.75rem 0.5rem !important;
  text-align: right !important;
  white-space: nowrap !important;
  font-family: var(--font-serif) !important;
  font-size: clamp(0.95rem, 3.2vw, 1.15rem) !important;
  font-weight: 700 !important;
  color: var(--earth) !important;
  vertical-align: middle !important;
}

table.woocommerce-checkout-review-order-table tfoot tr {
  border-top: 1px solid var(--border) !important;
}

table.woocommerce-checkout-review-order-table tfoot th {
  width: 50% !important;
  padding: 0.75rem 0 !important;
  text-align: left !important;
  font-size: 0.9rem !important;
  color: #666 !important;
}

table.woocommerce-checkout-review-order-table tfoot td {
  width: 50% !important;
  padding: 0.75rem 0 !important;
  text-align: right !important;
  white-space: nowrap !important;
  font-family: var(--font-serif) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--earth) !important;
}

table.woocommerce-checkout-review-order-table tfoot tr.order-total th {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--earth) !important;
  border-top: 2px solid var(--border) !important;
}

table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: var(--earth) !important;
  border-top: 2px solid var(--border) !important;
}

/* Payment Methods List Container */
#payment.woocommerce-checkout-payment {
  background: var(--ivory) !important;
  border-radius: 0.85rem !important;
  padding: 1rem !important;
  margin-top: 1.5rem !important;
  border: 1px solid var(--border) !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
}

#payment.woocommerce-checkout-payment ul.wc_payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 1rem 0 !important;
}

#payment.woocommerce-checkout-payment ul.wc_payment_methods li {
  margin-bottom: 0.75rem !important;
}

#payment.woocommerce-checkout-payment ul.wc_payment_methods li label {
  font-weight: 600 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
}

#place_order {
  width: 100% !important;
  min-height: 50px !important;
  border-radius: 9999px !important;
  background: linear-gradient(135deg, #721D24 0%, #561117 100%) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  border: 1px solid rgba(201, 151, 56, 0.5) !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px -4px rgba(114, 29, 36, 0.45) !important;
  transition: all 0.25s ease !important;
}

#place_order:hover {
  background: linear-gradient(135deg, #E65C17 0%, #C44508 100%) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 8px 24px -4px rgba(230, 92, 23, 0.5) !important;
}

/* Cart Page Responsive Overhaul */
@media (max-width: 767px) {
  .woocommerce-cart-form table.shop_table.cart {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    border: none !important;
  }
  .woocommerce-cart-form table.shop_table.cart thead {
    display: none !important;
  }
  .woocommerce-cart-form table.shop_table.cart tbody {
    display: block !important;
    width: 100% !important;
  }
  .woocommerce-cart-form table.shop_table.cart tr.cart_item {
    display: grid !important;
    grid-template-columns: 4.5rem 1fr auto !important;
    grid-template-rows: auto auto auto !important;
    column-gap: 0.75rem !important;
    row-gap: 0.35rem !important;
    align-items: center !important;
    position: relative !important;
    padding: 1rem !important;
    margin-bottom: 1rem !important;
    background: #FFFFFF !important;
    border: 1px solid var(--border) !important;
    border-radius: 1rem !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02) !important;
    box-sizing: border-box !important;
  }
  .woocommerce-cart-form table.shop_table.cart td {
    display: block !important;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }
  .woocommerce-cart-form table.shop_table.cart td.product-remove {
    grid-column: 3 / 4 !important;
    grid-row: 1 / 2 !important;
    text-align: right !important;
  }
  .woocommerce-cart-form table.shop_table.cart td.product-thumbnail {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 4 !important;
    width: 4.5rem !important;
    height: 4.5rem !important;
    margin: 0 !important;
    float: none !important;
  }
  .woocommerce-cart-form table.shop_table.cart td.product-thumbnail img {
    width: 4.5rem !important;
    height: 4.5rem !important;
    object-fit: cover !important;
    border-radius: 0.5rem !important;
  }
  .woocommerce-cart-form table.shop_table.cart td.product-name {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 2 !important;
    padding-right: 0.5rem !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }
  .woocommerce-cart-form table.shop_table.cart td.product-price {
    grid-column: 2 / 4 !important;
    grid-row: 2 / 3 !important;
    font-size: 0.85rem !important;
    color: #666 !important;
  }
  .woocommerce-cart-form table.shop_table.cart td.product-quantity {
    grid-column: 2 / 3 !important;
    grid-row: 3 / 4 !important;
    padding-top: 0.25rem !important;
    clear: none !important;
  }
  .woocommerce-cart-form table.shop_table.cart td.product-subtotal {
    grid-column: 3 / 4 !important;
    grid-row: 3 / 4 !important;
    text-align: right !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--earth) !important;
    white-space: nowrap !important;
  }
  .woocommerce-cart-form table.shop_table.cart td.actions {
    display: block !important;
    text-align: center !important;
    padding: 1rem 0 !important;
    width: 100% !important;
  }
  .woocommerce-cart-form table.shop_table.cart td.actions .btn-outline {
    width: 100% !important;
  }
  .cart-collaterals {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 2rem !important;
  }
  .cart-collaterals .cart_totals {
    width: 100% !important;
    max-width: 100% !important;
    background: #FFFFFF !important;
    border-radius: 1rem !important;
    border: 1px solid var(--border) !important;
    padding: 1.25rem !important;
    box-sizing: border-box !important;
  }
  .cart-collaterals table.shop_table {
    table-layout: fixed !important;
    width: 100% !important;
  }
  .cart-collaterals table.shop_table th {
    width: 45% !important;
    text-align: left !important;
  }
  .cart-collaterals table.shop_table td {
    width: 55% !important;
    text-align: right !important;
    white-space: nowrap !important;
  }
}

/* Checkout inputs & Form Elements */
.woocommerce-checkout form.checkout .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  width: 100%;
}

.woocommerce-checkout form.checkout input.input-text,
.woocommerce-checkout form.checkout select,
.woocommerce-checkout form.checkout textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--ivory);
  font-size: 16px;
  box-sizing: border-box;
}

/* ── 12b. Gutenberg Cart & Checkout Blocks (Modern WooCommerce) ── */
.devine-page-card {
  background: #FFFFFF;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  padding: clamp(1rem, 3.5vw, 2.5rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.devine-page-container {
  max-width: 64rem;
  width: 100%;
  box-sizing: border-box;
}

/* Block Cart Container & Overall Layout */
.wp-block-woocommerce-cart,
.wc-block-cart,
.wc-block-cart__main,
.wc-block-cart__form,
.wc-block-cart-items,
.wp-block-woocommerce-checkout,
.wc-block-checkout {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}

.wc-block-cart-items {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Block Cart Item Rows (Desktop & Universal) */
.wc-block-cart-items__row,
.wc-block-components-cart-item {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
}

.wc-block-components-cart-item__product {
  min-width: 0 !important;
  box-sizing: border-box !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
}

.wc-block-components-cart-item__product .wc-block-components-product-name {
  font-family: var(--font-serif) !important;
  font-size: clamp(1rem, 3.5vw, 1.25rem) !important;
  font-weight: 600 !important;
  color: var(--earth) !important;
  line-height: 1.3 !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
}

.wc-block-components-product-details__short-description,
.wc-block-components-cart-item__product p {
  font-size: 0.825rem !important;
  line-height: 1.45 !important;
  color: #666666 !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  max-width: 100% !important;
}

/* Mobile Layout for WooCommerce Block Cart (< 768px) */
@media (max-width: 768px) {
  .wp-block-woocommerce-cart,
  .wc-block-cart {
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Force Cart Item to 100% width with no horizontal push */
  .wc-block-cart-items__row,
  .wc-block-components-cart-item {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    position: relative !important;
    padding: 1.25rem 0 !important;
    border-bottom: 1px solid var(--border) !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Cart Item Thumbnail on Left */
  .wc-block-components-cart-item__image {
    width: 4.5rem !important;
    max-width: 4.5rem !important;
    height: 4.5rem !important;
    flex: 0 0 4.5rem !important;
    margin: 0 !important;
  }

  .wc-block-components-cart-item__image img {
    width: 4.5rem !important;
    height: 4.5rem !important;
    object-fit: cover !important;
    border-radius: 0.5rem !important;
  }

  /* Main Product Info in Center/Right */
  .wc-block-components-cart-item__product {
    flex: 1 1 calc(100% - 5.5rem) !important;
    max-width: calc(100% - 5.5rem) !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Subtotal / Price in Block Cart - Keep cleanly contained inside the card */
  .wc-block-components-cart-item__total,
  .wc-block-components-cart-item__price,
  .wc-block-components-cart-item .wc-block-components-product-price {
    display: block !important;
    text-align: left !important;
    font-family: var(--font-serif) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--earth) !important;
    white-space: nowrap !important;
    margin: 0.25rem 0 !important;
  }

  /* Stepper & Trash Controls */
  .wc-block-components-cart-item__quantity,
  .wc-block-components-quantity-selector {
    display: inline-flex !important;
    align-items: center !important;
    margin-top: 0.5rem !important;
    max-width: 100% !important;
  }

  .wc-block-components-cart-item__remove {
    margin-left: 0.5rem !important;
    align-self: center !important;
  }

  /* Block Cart Totals Sidebar on Mobile */
  .wc-block-cart__sidebar,
  .wc-block-components-totals-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 1.5rem !important;
    padding: 1.25rem !important;
    background: #FAFAF8 !important;
    border-radius: 1rem !important;
    border: 1px solid var(--border) !important;
    box-sizing: border-box !important;
  }
}

/* ── 13. Sacred Luxury Footer Redesign ── */
.site-footer {
  background-color: #120305;
  background-image: 
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 151, 56, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(114, 29, 36, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 10% 30%, rgba(114, 29, 36, 0.2) 0%, transparent 45%);
  color: #D6CBC7;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, rgba(201, 151, 56, 0.2), #E6CA85 50%, rgba(201, 151, 56, 0.2)) 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* 13.1 Footer Guidance & Astrologer Bar */
.footer-consult-bar {
  background: linear-gradient(135deg, rgba(201, 151, 56, 0.1) 0%, rgba(114, 29, 36, 0.35) 50%, rgba(20, 4, 6, 0.6) 100%);
  border-bottom: 1px solid rgba(201, 151, 56, 0.2);
  padding: 2.25rem 0;
  position: relative;
}

.footer-consult-bar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 202, 133, 0.4), transparent);
}

.footer-consult-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

@media (min-width: 900px) {
  .footer-consult-inner {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}

.footer-consult-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(201, 151, 56, 0.16);
  border: 1px solid rgba(201, 151, 56, 0.35);
  color: #F5E6A3;
  padding: 0.28rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.footer-consult-badge svg {
  color: #F5E6A3;
}

.footer-consult-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0 0 0.35rem 0;
}

.footer-consult-sub {
  font-size: 0.875rem;
  color: #C8BFBC;
  line-height: 1.5;
  max-width: 620px;
  margin: 0;
}

.footer-consult-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.footer-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25D366;
  color: #FFFFFF !important;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-btn-wa:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.48);
  color: #FFFFFF !important;
}

.footer-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF !important;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(201, 151, 56, 0.5);
  transition: all 0.25s ease;
}

.footer-btn-call:hover {
  background: rgba(201, 151, 56, 0.15);
  border-color: #E6CA85;
  color: #F5E6A3 !important;
  transform: translateY(-2px);
}

@media (max-width: 639px) {
  .footer-consult-actions {
    width: 100%;
  }
  .footer-btn-wa,
  .footer-btn-call {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px;
    justify-content: center;
  }
}

/* 13.2 Main 4-Column Grid */
.footer-main-content {
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-bottom: 2rem;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.75rem 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1.3fr 1fr 1.05fr 1.35fr;
    gap: 3rem;
  }
}

/* Col 1: Brand */
.footer-brand-logo-card {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  padding: 0.45rem 1rem;
  border-radius: 0.85rem;
  border: 1.5px solid rgba(201, 151, 56, 0.5);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-brand-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 151, 56, 0.25);
}

.footer-brand-logo-card .footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
}

.footer-brand-bio {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #BDB4B1;
  margin-bottom: 1.25rem;
}

.footer-trust-pills {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 151, 56, 0.08);
  border: 1px solid rgba(201, 151, 56, 0.22);
  border-radius: 0.5rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #E6CA85;
  width: fit-content;
}

.footer-trust-pill .pill-dot {
  color: var(--gold-light);
  font-size: 0.7rem;
}

/* Nav Columns */
.footer-col-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem 0;
  position: relative;
  display: inline-block;
}

.footer-col-heading::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #E6CA85, transparent);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav-list li a {
  color: #C0B5B2;
  font-size: 0.875rem;
  line-height: 1.4;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.footer-nav-list li a::before {
  content: '›';
  font-family: monospace;
  font-size: 1rem;
  line-height: 1;
  color: var(--gold-light);
  opacity: 0;
  margin-right: 0;
  width: 0;
  transition: all 0.2s ease;
}

.footer-nav-list li a:hover {
  color: #F5E6A3;
  padding-left: 0.25rem;
}

.footer-nav-list li a:hover::before {
  opacity: 1;
  margin-right: 0.45rem;
  width: auto;
}

/* Col 4: Contact Cards */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 151, 56, 0.18);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  transition: all 0.25s ease;
}

.footer-contact-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 151, 56, 0.4);
  transform: translateX(2px);
}

.contact-card-icon {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 151, 56, 0.2) 0%, rgba(114, 29, 36, 0.35) 100%);
  border: 1px solid rgba(201, 151, 56, 0.4);
  color: #F5E6A3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #A39B98;
  margin-bottom: 0.2rem;
}

.contact-card-text {
  font-size: 0.8125rem;
  color: #ECE5E2;
  line-height: 1.45;
  font-style: normal;
}

.contact-card-phones {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.contact-card-phones a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card-phones a:hover {
  color: #F5E6A3;
}

.contact-card-phones .phone-sep {
  color: rgba(201, 151, 56, 0.5);
  font-size: 0.85rem;
}

.contact-card-email {
  color: #E6CA85;
  font-size: 0.8125rem;
  text-decoration: none;
  word-break: break-all;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-card-email:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* 13.3 Guarantee Strip */
.footer-guarantee-strip {
  margin-top: 3.25rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(201, 151, 56, 0.08) 0%, rgba(114, 29, 36, 0.2) 50%, rgba(201, 151, 56, 0.06) 100%);
  border: 1px solid rgba(201, 151, 56, 0.25);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .footer-guarantee-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-guarantee-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

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

.guarantee-icon-wrap {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(201, 151, 56, 0.3));
}

.guarantee-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.925rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.25;
}

.guarantee-desc {
  display: block;
  font-size: 0.75rem;
  color: #B5ACA8;
  line-height: 1.35;
  margin-top: 0.2rem;
}

/* 13.4 Footer Bottom */
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 151, 56, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #9E9592;
}

@media (min-width: 840px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-subtitle {
  font-size: 0.72rem;
  color: #D4AF37;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #AFA6A3;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.8125rem;
}

.footer-bottom-links a:hover {
  color: #F5E6A3;
}

.footer-bottom-links .sep {
  color: rgba(201, 151, 56, 0.4);
  font-size: 0.75rem;
}

/* ── 14. WhatsApp Enquiry Buttons ── */

/* Compact card variant — product grids & loops */
.btn-whatsapp-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.3rem 0.65rem;
  min-height: 34px;
  border-radius: 9999px;
  background: #25D366;
  color: #FFFFFF !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1.5px solid rgba(201, 151, 56, 0.4);
  box-shadow: 0 3px 10px -2px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-whatsapp-card:hover {
  background: #1ebe5c;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -2px rgba(37, 211, 102, 0.55);
  color: #FFFFFF !important;
}

.btn-whatsapp-card svg {
  flex-shrink: 0;
}

/* Full-width single product variant */
.btn-whatsapp-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #25D366 0%, #1aad52 100%);
  color: #FFFFFF !important;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1.5px solid rgba(201, 151, 56, 0.5);
  box-shadow: 0 6px 22px -4px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-whatsapp-full:hover {
  background: linear-gradient(135deg, #1ebe5c 0%, #158f43 100%);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -4px rgba(37, 211, 102, 0.6);
  color: #FFFFFF !important;
}

.btn-whatsapp-full svg {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@media (max-width: 480px) {
  .btn-whatsapp-full {
    font-size: 0.9rem;
    padding: 0.8rem 1.25rem;
    min-height: 48px;
  }
}

/* ══════════════════════════════════════════════════════════════════
   15. REDESIGNED HOMEPAGE — Split Hero, Marquee, Cats, Pillars, etc.
   ══════════════════════════════════════════════════════════════════ */

/* ─── Shared Section Helpers ──────────────────────────────────── */
.hp-section-head {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 3rem;
}
.hp-section-head--center {
  align-items: center;
  text-align: center;
}
.hp-section-eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.hp-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--earth);
  margin: 0;
  line-height: 1.2;
}
.hp-section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--saffron);
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: 0.5rem;
  align-self: flex-start;
}
.hp-section-link:hover { gap: 0.6rem; }

.hp-gold-rule {
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--saffron), transparent);
  border-radius: 999px;
  margin-top: 0.5rem;
}

/* ─── Shared Buttons ──────────────────────────────────────────── */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  min-height: 50px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
}
.hp-btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #FFFFFF !important;
  border: 1.5px solid rgba(201, 151, 56, 0.5);
  box-shadow: 0 6px 24px -4px rgba(114, 29, 36, 0.5);
}
.hp-btn--primary:hover {
  background: linear-gradient(135deg, var(--saffron) 0%, #C44508 100%);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -4px rgba(230, 92, 23, 0.45);
  color: #FFFFFF !important;
}
.hp-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}
.hp-btn--ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light) !important;
  background: rgba(255, 255, 255, 0.14);
}
.hp-btn--light {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF !important;
  border: 1.5px solid rgba(201,151,56,0.5);
}
.hp-btn--light:hover {
  background: rgba(255,255,255,0.22);
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 1 — SPLIT-PANEL HERO
   ══════════════════════════════════════════════════════════════════ */
.hp-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-deep) 0%, #3A0C11 40%, #5A1820 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Grain texture */
.hp-hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.hp-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hp-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1200px) {
  .hp-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
  }
}

/* ── Left Panel ── */
.hp-hero__left {
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: hpHeroFadeUp 0.85s 0.2s ease-out both;
}

@keyframes hpHeroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hp-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hp-hero__eyebrow-line {
  display: block;
  flex: 1;
  max-width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hp-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}
.hp-hero__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
}

.hp-hero__sub {
  font-size: clamp(0.88rem, 2.2vw, 1rem);
  color: rgba(240, 225, 205, 0.88);
  line-height: 1.75;
  max-width: 30rem;
  margin: 0 0 2.25rem;
}

.hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

/* Stats */
.hp-hero__stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,151,56,0.2);
}
.hp-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-right: 1.75rem;
}
.hp-hero__stat-n {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.hp-hero__stat-l {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(210,195,175,0.7);
  white-space: nowrap;
}
.hp-hero__stat-div {
  width: 1px;
  height: 2.25rem;
  background: rgba(201,151,56,0.3);
  margin-right: 1.75rem;
  flex-shrink: 0;
}

/* ── Right Panel ── */
.hp-hero__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: hpHeroFadeRight 0.9s 0.45s ease-out both;
}

@keyframes hpHeroFadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* OM watermark */
.hp-hero__om {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-size: clamp(6rem, 16vw, 12rem);
  color: rgba(201,151,56,0.06);
  font-family: var(--font-serif);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

/* Gold ornate frame */
.hp-hero__frame {
  position: relative;
  z-index: 1;
  border-radius: 2rem;
  overflow: visible;
  width: 100%;
  max-width: 28rem;
}

.hp-hero__frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 2.5rem;
  border: 1.5px solid rgba(201,151,56,0.4);
  z-index: -1;
  background: linear-gradient(135deg, rgba(201,151,56,0.12), transparent, rgba(201,151,56,0.08));
}
.hp-hero__frame::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 3rem;
  border: 1px solid rgba(201,151,56,0.15);
  z-index: -2;
}

.hp-hero__frame-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 30px 70px -10px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,151,56,0.2);
}

/* Floating badges on the frame */
.hp-hero__fbadge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(10,4,6,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,151,56,0.55);
  border-radius: 9999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.hp-hero__fbadge--tl { top: 1.25rem; left: -1rem; }
.hp-hero__fbadge--br { bottom: 1.25rem; right: -1rem; }
.hp-hero__fbadge-icon { color: var(--gold); font-size: 0.85rem; }

/* Scroll cue */
.hp-hero__scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.hp-hero__scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollDotBounce 1.8s ease-in-out infinite;
}
@keyframes scrollDotBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.4; }
}

@media (max-width: 899px) {
  .hp-hero__right { order: -1; }
  .hp-hero__frame { max-width: 22rem; margin: 0 auto; }
  .hp-hero__fbadge--tl { top: 0.75rem; left: -0.5rem; }
  .hp-hero__fbadge--br { bottom: 0.75rem; right: -0.5rem; }
  .hp-hero__scroll-cue { display: none; }
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 2 — SCROLLING MARQUEE STRIP
   ══════════════════════════════════════════════════════════════════ */
.hp-marquee {
  background: var(--primary-deep);
  border-top: 1px solid rgba(201,151,56,0.25);
  border-bottom: 1px solid rgba(201,151,56,0.25);
  overflow: hidden;
  padding: 0.85rem 0;
  user-select: none;
}
.hp-marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.hp-marquee__track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
.hp-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,200,122,0.9);
  padding: 0 2rem;
  white-space: nowrap;
}
.hp-marquee__dot {
  color: var(--gold);
  font-size: 0.6rem;
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 3 — CATEGORY SLIDER
   ══════════════════════════════════════════════════════════════════ */
.hp-cats {
  padding: 4.5rem 0 5rem;
  background: var(--ivory);
}

/* Wrapper holds arrows + track */
.hp-cats-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── Arrow buttons ── */
.hp-cats-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  color: var(--earth);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.hp-cats-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(114,29,36,0.3);
}
.hp-cats-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}
.hp-cats-arrow--prev { margin-right: 0.75rem; }
.hp-cats-arrow--next { margin-left: 0.75rem; }

@media (max-width: 639px) {
  .hp-cats-arrow { display: none; }
}

/* ── Scrollable track ── */
.hp-cats-track {
  display: flex;
  gap: 1.125rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE/Edge */
  flex: 1;
  padding-bottom: 4px;            /* prevents card shadows being clipped */
}
.hp-cats-track::-webkit-scrollbar { display: none; }

/* ── Individual slide card ── */
.hp-cat-slide {
  flex: 0 0 clamp(180px, 22vw, 240px);
  scroll-snap-align: start;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}
.hp-cat-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px -6px rgba(114,29,36,0.22);
}

/* Thumbnail */
.hp-cat-slide__thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--secondary-bg);
}
.hp-cat-slide__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.hp-cat-slide:hover .hp-cat-slide__thumb img { transform: scale(1.06); }

/* Gradient overlay */
.hp-cat-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,6,10,0.88) 0%,
    rgba(28,6,10,0.35) 45%,
    rgba(28,6,10,0.05) 100%
  );
  pointer-events: none;
}

/* Text body */
.hp-cat-slide__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hp-cat-slide__name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}
.hp-cat-slide__count {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(220,200,170,0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hp-cat-slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: 0.4rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hp-cat-slide:hover .hp-cat-slide__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── Dot indicators ── */
.hp-cats-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.hp-cats-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(114,29,36,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}
.hp-cats-dot--active {
  background: var(--primary);
  width: 20px;
  border-radius: 999px;
}



/* ══════════════════════════════════════════════════════════════════
   SECTION 4 — FEATURED PRODUCTS
   ══════════════════════════════════════════════════════════════════ */
.hp-products {
  padding: 5rem 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 5 — WHY CHOOSE US — Staggered Pillars
   ══════════════════════════════════════════════════════════════════ */
.hp-pillars {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--ivory) 0%, #F0E8DC 100%);
}

.hp-pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .hp-pillars__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .hp-pillars__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
}

.hp-pillar-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.hp-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--saffron));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.hp-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px -8px rgba(114,29,36,0.2);
  border-color: rgba(201,151,56,0.4);
}
.hp-pillar-card:hover::before { opacity: 1; }

/* Staggered offset on desktop */
@media (min-width: 1024px) {
  .hp-pillar-card--offset { margin-top: 2rem; }
}

.hp-pillar-card__icon-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(114,29,36,0.08), rgba(201,151,56,0.12));
  border: 1.5px solid rgba(201,151,56,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.hp-pillar-card:hover .hp-pillar-card__icon-ring {
  background: linear-gradient(135deg, rgba(114,29,36,0.15), rgba(201,151,56,0.2));
  color: var(--saffron);
}

.hp-pillar-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--earth);
  line-height: 1.25;
  margin: 0;
}
.hp-pillar-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.hp-pillar-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid rgba(201,151,56,0.35);
  background: rgba(201,151,56,0.07);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  align-self: flex-start;
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 6 — TESTIMONIALS
   ══════════════════════════════════════════════════════════════════ */
.hp-testimonials {
  padding: 5.5rem 0;
  background: var(--primary-deep);
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,151,56,0.08) 0%, transparent 70%);
}
.hp-testimonials .hp-section-eyebrow { color: var(--gold-light); }
.hp-testimonials .hp-section-title { color: #FFFFFF; }
.hp-testimonials .hp-gold-rule { opacity: 0.6; }

.hp-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .hp-testimonials__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .hp-testimonials__grid { grid-template-columns: 1fr 1.15fr 1fr; align-items: start; }
}

.hp-testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,151,56,0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.hp-testi-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,151,56,0.4);
}
.hp-testi-card--featured {
  background: rgba(201,151,56,0.1);
  border-color: rgba(201,151,56,0.4);
  position: relative;
}
@media (min-width: 1024px) {
  .hp-testi-card--featured { margin-top: -1.5rem; }
}

.hp-testi-card__stars {
  font-size: 0.9rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  line-height: 1;
}
.hp-testi-card__quote {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  font-style: italic;
  color: rgba(240,225,205,0.9);
  line-height: 1.72;
  flex: 1;
  quotes: "\201C" "\201D";
}
.hp-testi-card__quote::before { content: open-quote; }
.hp-testi-card__quote::after  { content: close-quote; }

.hp-testi-card__footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.hp-testi-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #FFFFFF;
  flex-shrink: 0;
}
.hp-testi-card__name {
  font-weight: 700;
  font-size: 0.875rem;
  color: #FFFFFF;
  line-height: 1.2;
}
.hp-testi-card__loc {
  font-size: 0.72rem;
  color: rgba(210,195,175,0.65);
  margin-top: 0.1rem;
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 7 — LAB CERTIFICATION BANNER (redesigned)
   ══════════════════════════════════════════════════════════════════ */
.hp-lab-banner {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, var(--primary-deep) 0%, #2A0A0F 50%, #1A0408 100%);
  position: relative;
  overflow: hidden;
}
.hp-lab-banner::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(201,151,56,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hp-lab-banner__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hp-lab-banner__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}
@media (min-width: 1100px) {
  .hp-lab-banner__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* ── Content (left column) ── */
.hp-lab-banner__eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 0.75rem;
}
.hp-lab-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}
.hp-lab-banner__desc {
  font-size: 0.9rem;
  color: rgba(220,205,185,0.85);
  line-height: 1.75;
  margin: 0 0 1.75rem;
}
.hp-lab-banner__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.hp-lab-check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(232,200,122,0.9);
  background: rgba(201,151,56,0.1);
  border: 1px solid rgba(201,151,56,0.25);
  border-radius: 9999px;
  padding: 0.3rem 0.85rem;
}
.hp-lab-check svg { color: var(--gold); flex-shrink: 0; }

/* ── Image column (right) ── */
.hp-lab-banner__img-col {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.hp-lab-banner__img-wrap {
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 2px solid rgba(201,151,56,0.3);
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.6);
  aspect-ratio: 4 / 5;
}
@media (min-width: 768px) {
  .hp-lab-banner__img-wrap { aspect-ratio: auto; min-height: 360px; }
}
.hp-lab-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Spinning seal overlaid bottom-left of image */
.hp-lab-banner__seal-overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 3;
}
.hp-lab-banner__seal {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(201,151,56,0.6) 0deg,
    rgba(201,151,56,0.15) 60deg,
    rgba(201,151,56,0.6) 120deg,
    rgba(201,151,56,0.15) 180deg,
    rgba(201,151,56,0.6) 240deg,
    rgba(201,151,56,0.15) 300deg,
    rgba(201,151,56,0.6) 360deg
  );
  padding: 3px;
  flex-shrink: 0;
  animation: sealSpin 12s linear infinite;
}
@keyframes sealSpin { to { transform: rotate(360deg); } }

.hp-lab-banner__seal-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(14,4,8,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(201,151,56,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  animation: sealSpin 12s linear infinite reverse;
}
.hp-lab-banner__seal-icon {
  font-size: 1rem;
  color: var(--gold);
  line-height: 1;
}
.hp-lab-banner__seal-text {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.15;
}
.hp-lab-banner__seal-sub {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232,200,122,0.6);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 8 — BESTSELLERS
   ══════════════════════════════════════════════════════════════════ */
.hp-bestsellers {
  padding: 5rem 0;
  background: var(--ivory);
}
.hp-bestsellers__cta-row {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* ══════════════════════════════════════════════════════════════════
   Keep old .hero-rk class intact (used nowhere now, but safe guard)
   ══════════════════════════════════════════════════════════════════ */

/* LEGACY — kept for safety, no longer rendered on homepage */
.hero-rk {
  position: relative;
  width: 100%;
  min-height: 100svh;            /* full viewport height */
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Full-bleed background image */
.hero-rk__bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2026/09/ChatGPT-Image-Sep-5-2026-05_32_56-PM.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
  /* Subtle Ken-Burns zoom on load */
  animation: heroRkZoom 18s ease-out both;
}

@keyframes heroRkZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* Multi-layer overlay:
   Layer 1 – bottom-to-top dark maroon veil for ground readability
   Layer 2 – left-to-right: strong dark maroon left side, fading to transparent mid-right
   Layer 3 – subtle global tone to unify colours
*/
.hero-rk__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* bottom veil */
    linear-gradient(to top,  rgba(36, 8, 12, 0.88) 0%, rgba(36, 8, 12, 0.0) 45%),
    /* left-to-right content panel */
    linear-gradient(105deg,  rgba(28, 6, 10, 0.92) 0%, rgba(28, 6, 10, 0.78) 30%, rgba(28, 6, 10, 0.38) 58%, rgba(16, 4, 6, 0.08) 78%, transparent 100%),
    /* subtle warm tone over whole image */
    linear-gradient(180deg, rgba(40, 12, 8, 0.30) 0%, transparent 60%);
}

/* Decorative OM watermark */
.hero-rk__om {
  position: absolute;
  bottom: -0.5rem;
  right: 3%;
  font-size: clamp(8rem, 22vw, 18rem);
  color: rgba(201, 151, 56, 0.07);
  font-family: var(--font-serif);
  line-height: 1;
  pointer-events: none;
  z-index: 2;
  user-select: none;
}

/* Container alignment */
.hero-rk__container {
  position: relative;
  z-index: 3;
  padding-top: clamp(5rem, 12vw, 9rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
  width: 100%;
}

/* Content block – left-aligned, max 50% wide on desktop */
.hero-rk__content {
  width: 100%;
  max-width: 38rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: heroRkFadeUp 0.9s 0.25s ease-out both;
}

@keyframes heroRkFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Badge ─────────────────────────── */
.hero-rk__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  border-radius: 9999px;
  border: 1px solid rgba(201, 151, 56, 0.55);
  background: rgba(28, 8, 12, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.4rem 1.1rem;
  font-size: clamp(9px, 2vw, 10.5px);
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.hero-rk__badge-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(201, 151, 56, 0.35);
  animation: badgePulse 2.2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(201, 151, 56, 0.35); }
  50%       { box-shadow: 0 0 0 5px rgba(201, 151, 56, 0.15); }
}

/* ─── Heading ────────────────────────── */
.hero-rk__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
  margin: 0 0 1.15rem;
  word-break: break-word;
}

.hero-rk__heading-em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
  text-shadow: 0 2px 20px rgba(201, 151, 56, 0.4);
  display: inline;
}

/* Hide inline <br> on desktop — only show on mobile to prevent wrap */
.hero-rk__br-mobile {
  display: none;
}

/* ─── Gold Divider ───────────────────── */
.hero-rk__divider {
  width: 4.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--saffron), transparent);
  border-radius: 999px;
  margin: 0 0 1.35rem;
}

/* ─── Description ────────────────────── */
.hero-rk__desc {
  font-size: clamp(0.9rem, 2.4vw, 1.05rem);
  color: rgba(245, 235, 220, 0.92);
  line-height: 1.72;
  max-width: 32rem;
  margin: 0 0 2.25rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

/* ─── CTA Buttons ────────────────────── */
.hero-rk__btns {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

@media (min-width: 480px) {
  .hero-rk__btns {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
}

/* Primary – maroon gradient */
.hero-rk__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  min-height: 52px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #721D24 0%, #4A0E13 100%);
  color: #FFFFFF !important;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1.5px solid rgba(201, 151, 56, 0.7);
  box-shadow: 0 8px 28px -4px rgba(0, 0, 0, 0.55), 0 0 20px rgba(201, 151, 56, 0.2);
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.hero-rk__btn-primary:hover {
  background: linear-gradient(135deg, #E65C17 0%, #C44508 100%);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.65), 0 0 28px rgba(230, 92, 23, 0.4);
  color: #FFFFFF !important;
}

/* Secondary – WhatsApp green */
.hero-rk__btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.85rem;
  min-height: 52px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #25D366 0%, #1aad52 100%);
  color: #FFFFFF !important;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 22px -4px rgba(37, 211, 102, 0.5);
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.hero-rk__btn-wa:hover {
  background: linear-gradient(135deg, #1ebe5c 0%, #158f43 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -4px rgba(37, 211, 102, 0.65);
  color: #FFFFFF !important;
}

/* ─── Trust strip ────────────────────── */
.hero-rk__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.35rem;
}

.hero-rk__trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0 1.35rem 0 0;
}

.hero-rk__trust-item:first-child {
  padding-left: 0;
}

.hero-rk__trust-num {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.hero-rk__trust-lbl {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(220, 210, 200, 0.75);
  white-space: nowrap;
}

.hero-rk__trust-sep {
  width: 1px;
  height: 2.5rem;
  background: rgba(201, 151, 56, 0.3);
  margin: 0 1.35rem 0 0;
  flex-shrink: 0;
}

/* ─── Scroll indicator ───────────────── */
.hero-rk__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-rk__scroll-line {
  width: 1.5px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(201, 151, 56, 0.9), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
  border-radius: 999px;
}

@keyframes scrollDrop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ─── Responsive ─────────────────────── */
@media (min-width: 768px) {
  .hero-rk {
    min-height: 90vh;
  }
  .hero-rk__bg {
    background-position: 65% center; /* shift right so left sacred items show */
  }
}

@media (min-width: 1024px) {
  .hero-rk {
    min-height: 92vh;
  }
  .hero-rk__content {
    max-width: 46rem;
  }
}

@media (min-width: 1280px) {
  .hero-rk__content {
    max-width: 50rem;
  }
  .hero-rk__heading {
    font-size: 4rem;
  }
}

/* Mobile ─ stack fully, tighten spacing */
@media (max-width: 479px) {
  .hero-rk {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 3rem;
  }
  /* On narrow mobile, bg anchored right so Haridwar temple shows */
  .hero-rk__bg {
    background-position: 70% center;
  }
  .hero-rk__overlay {
    background:
      linear-gradient(to top, rgba(28, 6, 10, 0.96) 0%, rgba(28, 6, 10, 0.70) 50%, rgba(28, 6, 10, 0.2) 100%);
  }
  .hero-rk__container {
    padding-top: 4rem;
    padding-bottom: 1rem;
  }
  .hero-rk__content {
    max-width: 100%;
  }
  .hero-rk__om {
    display: none;
  }
  .hero-rk__br-mobile {
    display: block;
  }
  .hero-rk__btns {
    flex-direction: column;
  }
  .hero-rk__btn-primary,
  .hero-rk__btn-wa {
    width: 100%;
    justify-content: center;
    font-size: 0.925rem;
    padding: 0.85rem 1.5rem;
    min-height: 50px;
  }
  .hero-rk__trust-sep {
    height: 1.75rem;
    margin: 0 0.85rem 0 0;
  }
  .hero-rk__trust-item {
    padding-right: 0.85rem;
  }
  .hero-rk__scroll {
    display: none;
  }
}


