/* =============================================================
   SOMA HERBALS — Design System
   Full CSS: tokens → reset → typography → layout → components
   → pages → animations → aesthetics → responsive
   ============================================================= */

/* ─── 1. GOOGLE FONTS ──────────────────────────────────────── */
/* Note: Google Fonts are loaded via high-priority <link rel="preconnect"> in header.php to prevent render blocking */

/* ─── 2. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* User Palette: #757575, #4B4752, #282829, #FFFCC6, #2D2D2E */
  --ink: #675E81;
  --ink-soft: #4B4752;
  --ivory: #FBFBF9;
  --beige: #F5F4EE;
  --beige-deep: #EDECE4;
  --white: #FFFFFF;
  --surface-dark: #2a2047;
  --surface-deep: #2a2047;
  --terracotta: #2a2047;
  --terracotta-deep: #2a2047;
  --terracotta-soft: #FFFCC6;
  --terracotta-glow: #FFFCC6;
  --rose-vibrant: #4B4752;
  --rose-soft: #757575;
  --rose-blush: #FFFCC6;
  --rose-mist: #EDECE4;
  --rose-light: #FBFBF9;
  --sage: #4B4752;
  --sage-deep: #282829;
  --sage-soft: #FFFCC6;
  --gold: #4B4752;
  --gold-soft: #FFFCC6;
  --muted: #757575;
  --line: #675E81;
  --line-soft: #ECEBE9;

  /* Fonts — Cinzel for headings, Poppins for body/mono/hi across the entire theme */
  --font-display: "Cinzel", serif;
  --font-body: "Poppins", serif;
  --font-mono: "Poppins", serif;
  --font-hi: "Poppins", serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Radius — exact match to Soma.html */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-2xl: 36px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(40, 40, 41, 0.05), 0 2px 8px rgba(75, 71, 82, 0.04);
  --shadow-md: 0 4px 12px rgba(40, 40, 41, 0.08), 0 12px 28px rgba(75, 71, 82, 0.06);
  --shadow-lg: 0 8px 24px rgba(40, 40, 41, 0.12), 0 28px 56px rgba(75, 71, 82, 0.10);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t: 0.22s;

  /* Container */
  --container: 1560px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* ─── 3. CORE APPLICATION STYLES ────────────────────────────── */
.app-shell {
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(255, 252, 198, 0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(75, 71, 82, 0.05), transparent 60%),
    radial-gradient(600px 300px at 50% 120%, rgba(255, 252, 198, 0.10), transparent 70%),
    var(--ivory);
}

.app-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(75, 71, 82, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 71, 82, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.nav {
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 4px 20px rgba(40, 40, 41, 0.20) !important;
}

h1,
h2,
h3,
h4,
.display {
  font-family: "Cinzel", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero h1 em,
.form-side h2 em {
  color: var(--ink);
  font-style: italic;
  text-shadow: 0 0 20px rgba(255, 252, 198, 0.4);
}

.btn-primary {
  background: #282829;
  color: #FFFCC6;
  box-shadow: 0 4px 18px rgba(40, 40, 41, 0.25);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: #4B4752;
  color: #FFFCC6;
  box-shadow: 0 6px 26px rgba(75, 71, 82, 0.35);
}

.btn-ghost {
  color: #282829;
  border-color: #4B4752;
}

.btn-ghost:hover {
  background: #282829;
  color: #FFFCC6;
  box-shadow: 0 4px 18px rgba(40, 40, 41, 0.25);
}

.card,
.cat-tile,
.testimonial,
.astro-strip,
.astro-card,
.product-card,
.dash-stat,
.consult-row,
.profile-card,
.panel-metric,
.user-card,
.dash-nav,
.pdp-main-img,
.match-card,
.bubble {
  background: var(--white);
  border-color: var(--line);
  position: relative;
}

.product-card:hover,
.cat-tile:hover,
.consult-row:hover {
  border-color: #4B4752;
  box-shadow: 0 0 0 1px #4B4752, 0 12px 32px rgba(40, 40, 41, 0.10);
}

.ph {
  background: repeating-linear-gradient(135deg, rgba(237, 236, 228, 0.5) 0 12px, rgba(245, 244, 238, 0.4) 12px 24px);
}

.ph-ter {
  background: repeating-linear-gradient(135deg, rgba(75, 71, 82, 0.10) 0 12px, rgba(40, 40, 41, 0.06) 12px 24px);
}

.ph-gold {
  background: repeating-linear-gradient(135deg, rgba(255, 252, 198, 0.35) 0 12px, rgba(245, 244, 238, 0.25) 12px 24px);
}

.ph-label {
  background: var(--beige);
  color: #282829;
  border-color: var(--line);
  font-weight: 500;
}

.hero-center-orb {
  background: radial-gradient(circle at 30% 30%, #4B4752, #282829 80%);
  box-shadow: 0 0 50px rgba(75, 71, 82, 0.35);
  color: #FFFCC6;
  font-weight: 700;
}

.mandala-ring {
  border-color: #4B4752;
  opacity: 0.25;
}

.mandala-ring.inner {
  border-color: #282829;
  opacity: 0.35;
}

.mandala-ring.innermost {
  border-color: #757575;
  opacity: 0.2;
}

.eyebrow {
  color: #4B4752;
}

.eyebrow::before {
  background: #4B4752;
  box-shadow: 0 0 8px rgba(75, 71, 82, 0.4);
}

.logo small {
  color: #757575;
}

.nav-links a:hover,
.nav-links a.active {
  color: #282829;
  border-bottom-color: #4B4752;
}

.lang-toggle button.active {
  background: #282829;
  color: #FFFCC6;
  box-shadow: 0 0 12px rgba(40, 40, 41, 0.25);
}

.icon-btn {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.icon-btn:hover {
  border-color: #4B4752;
  color: #282829;
  box-shadow: 0 0 12px rgba(75, 71, 82, 0.15);
}

.icon-btn .badge {
  background: #282829;
  color: #FFFCC6;
  border: 1px solid #4B4752;
  box-shadow: 0 0 8px rgba(40, 40, 41, 0.3);
}

.tag-match {
  background: #282829;
  color: #FFFCC6;
  box-shadow: 0 0 12px rgba(40, 40, 41, 0.2);
  font-weight: 600;
}

.chip {
  background: var(--white);
  color: var(--ink-soft);
  border-color: var(--line);
}

.chip.active {
  background: #282829;
  color: #FFFCC6;
  border-color: #282829;
  box-shadow: 0 0 14px rgba(40, 40, 41, 0.25);
}

.input {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.input:focus {
  border-color: #4B4752;
  box-shadow: 0 0 0 3px rgba(75, 71, 82, 0.15);
}

.chart-wheel,
.chart-mini {
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 4px 20px rgba(40, 40, 41, 0.06);
}

.chart-wheel .center,
.chart-mini .ctr {
  background: var(--beige);
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.chart-wheel .spoke {
  background: var(--line);
}

.chart-wheel .om {
  color: var(--terracotta);
}

.form-visual {
  background: radial-gradient(circle at 50% 50%, var(--beige-deep) 0%, var(--beige) 60%);
}

.chat-side,
.chat-panel,
.chat-hdr,
.chat-input {
  background: var(--white);
  border-color: var(--line);
}

.chat-layout,
.chat-main {
  background: var(--ivory);
}

.msg-ai .bubble {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.msg-me .bubble {
  background: #282829;
  color: #FFFCC6;
  border-color: #282829;
  font-weight: 500;
}

.msg-ai .av {
  background: #4B4752;
  color: #FFFCC6;
  box-shadow: 0 0 14px rgba(75, 71, 82, 0.35);
}

.msg-me .av {
  background: #282829;
  color: #FFFCC6;
}

.send-btn {
  background: #282829;
  color: #FFFCC6;
  box-shadow: 0 0 14px rgba(40, 40, 41, 0.25);
}

.chat-hdr .astro-avatar {
  background: radial-gradient(circle at 30% 30%, #4B4752, #282829 90%);
  box-shadow: 0 0 16px rgba(40, 40, 41, 0.25);
}

.chat-hdr .status {
  color: #4B4752;
}

.chat-hdr .status::before {
  background: #4B4752;
  box-shadow: 0 0 8px #757575;
}


.testimonial .quote,
.testimonial .avatar {
  color: var(--ink);
}

.testimonial .avatar {
  background: #FFFCC6;
  color: #282829;
}

.rec-item .rp {
  color: #282829;
  font-weight: 700;
}

.user-card .av,
.dash .date,
.dash-stat .val {
  color: #282829;
}

.user-card .av {
  background: radial-gradient(circle at 30% 30%, #4B4752, #282829 90%);
  color: #FFFCC6;
}

.pdp-info .price-big {
  color: #282829;
  font-weight: 700;
}

.pdp-detail-tabs button.active {
  color: #282829;
  border-color: #4B4752;
}

.kbd,
.chip-small,
.pdp-meta .mrow,
.pdp-badge {
  background: var(--beige-deep);
  border-color: var(--line);
  color: var(--ink-soft);
}

.hero-product {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(40, 40, 41, 0.08);
}

.match-card {
  background: var(--white);
  border-color: #4B4752;
}

.match-card .mi {
  background: #282829;
  color: #FFFCC6;
}

::selection {
  background: #FFFCC6;
  color: #282829;
}

/* ─── Date & Time Full-Click Picker UX ────────────────────────── */
input[type="date"],
input[type="time"] {
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(18%) sepia(85%) saturate(3475%) hue-rotate(330deg) brightness(85%) contrast(97%);
}

/* ─── 4. RESET & UNIVERSAL TYPOGRAPHY SYMMETRY ─────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
 
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



#wpadminbar *,
.dashicons,
.dashicons:before {
  font-family: dashicons !important;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ─── 5. TYPOGRAPHY ─────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
}

h2 {
  font-size: clamp(28px, 3.5vw, 48px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 32px);
}

h4 {
  font-size: clamp(17px, 2vw, 22px);
}

h5 {
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
}

h6 {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

em {
  font-style: italic;
  color: var(--terracotta);
}

p {
  color: var(--ink-soft);
}

.sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 54ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--terracotta);
}

/* Hindi text utility */
.hi {
  font-family: var(--font-hi);
}

/* ─── 6. LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: var(--space-3xl) 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-2xl);
}

.section-head h2 {
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #282829;
  margin: 0 0 10px 0;
}

.section-head h2 em {
  font-style: italic;
  color: var(--ink);
  text-shadow: none;
}

.section-head .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin: 0 auto;
  max-width: 680px;
}

@media (max-width: 768px) {
  .section-head {
    margin-bottom: 36px;
  }

  .section-head h2 {
    font-size: clamp(24px, 5.5vw, 34px);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .section-head .desc {
    font-size: 13.5px;
    line-height: 1.55;
  }
}

/* ─── 7. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--ivory);
}

.btn-primary:hover {
  background: var(--terracotta-deep);
  box-shadow: 0 4px 16px rgba(196, 98, 45, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--beige);
}

.btn-soft {
  background: var(--beige);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-soft:hover {
  background: var(--terracotta-soft);
  border-color: var(--terracotta);
  color: var(--terracotta-deep);
}

.btn-lg {
  font-size: 15px;
  padding: 13px 26px;
}

/* Icon button */
.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: var(--ink);
  transition: background var(--t);
}

.icon-btn:hover {
  background: var(--beige);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--ivory);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, opacity 0.2s ease;
}

.badge.is-empty {
  display: none !important;
}

@keyframes somaBadgeBump {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.5);
    filter: drop-shadow(0 0 8px rgba(200, 75, 49, 0.8));
  }

  65% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

.badge.soma-badge-bump {
  animation: somaBadgeBump 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── 8. NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top:0;
  z-index: 1000;
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 4px 20px rgba(40, 40, 41, 0.20) !important;
  padding: 10px 0;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav .logo,
.logo {
  flex: 1 0 0%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #FFFFFF !important;
  line-height: 1.1;
  text-decoration: none;
}

.nav .logo small,
.logo small {
  display: block;
  font-family: var(--font-hi);
  font-size: 13px;
  color: #FFFCC6 !important;
  margin-top: -2px;
}

.logo svg {
  flex-shrink: 0;
}

.site-logo-img {
  height: 70px !important;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.nav .logo:hover .site-logo-img {
  transform: scale(1.05);
}

.footer-logo-img {

  width: auto;
  max-width: 180px !important;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.footer .logo:hover .footer-logo-img {
  transform: scale(1.05);
}

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

.nav-links {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin: 0 auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF !important;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFFCC6 !important;
  background: rgba(255, 252, 198, 0.16) !important;
}

.nav-spacer {
  display: none !important;
}

.nav-actions {
  flex: 1 0 0%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav-actions .icon-btn {
  color: #FFFFFF !important;
  background: transparent;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-actions .icon-btn:hover {
  color: #FFFCC6 !important;
  background: rgba(255, 252, 198, 0.16) !important;
}

.nav-actions .soma-cart-badge {
  background: #FFFCC6 !important;
  color: #282829 !important;
  font-weight: 700 !important;
}

.mobile-menu-btn {
  display: none;
}
.dash-meta-val , .dash-meta-val , .dash-user-name{color:#2a2047;}

/* ─── 8b. NAVIGATION MENU & OFF-CANVAS DRAWER ────────────────── */
/* ── Desktop menu ── */
.soma-menu {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.soma-menu li { position: relative; }

.soma-menu > li > a,
.soma-menu > li > span {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF !important;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.soma-menu > li > a:hover,
.soma-menu > li.current-menu-item > a,
.soma-menu > li.current-menu-ancestor > a {
  background: rgba(255, 252, 198, 0.18) !important;
  color: #FFFCC6 !important;
}

/* Dropdown arrow for parent items */
.soma-menu .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .8;
  flex: none;
}

/* Level 2 dropdown */
.soma-menu ul {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 210px;
  background: #282829;
  border: 1.5px solid #4B4752;
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
  padding: 8px 0;
  list-style: none;
  z-index: 999;
}
.soma-menu ul li a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  color: #FFFFFF !important;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.soma-menu ul li a:hover,
.soma-menu ul li.current-menu-item > a {
  background: #4B4752 !important;
  color: #FFFCC6 !important;
}

/* Level 3 (sub-sub) */
.soma-menu ul ul {
  top: -6px;
  left: calc(100% + 1px);
  border-radius: var(--radius);
}

/* Arrow for level 2 parent */
.soma-menu ul .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  opacity: .8;
  float: right;
  margin-top: 5px;
}

/* Show on hover for normal dropdowns */
.soma-menu > li:not(.soma-has-megamenu):hover > ul { display: block; }

/* ─── 8c. DESKTOP MEGA MENUS ────────────────────────────────── */
.nav-inner {
  position: relative !important; /* Anchor point for full-width mega menu */
}

/* Ensure full-height hit area across navbar */
.nav-links,
.soma-menu {
  height: 100%;
}
.soma-menu > li {
  height: 100%;
  display: flex;
  align-items: center;
}

.soma-menu > li.soma-has-megamenu {
  position: static !important;
}

/* Arrow indicator on parent items */
.soma-menu > li.soma-has-megamenu > a::after,
.soma-menu > li.menu-item-has-children:not(.soma-has-megamenu) > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .85;
  transition: transform 0.2s ease;
  margin-left: 5px;
  vertical-align: middle;
}
.soma-menu > li.soma-has-megamenu:hover > a::after,
.soma-menu > li.soma-has-megamenu.is-open > a::after,
.soma-menu > li.menu-item-has-children:not(.soma-has-megamenu):hover > a::after {
  transform: rotate(-135deg) translateY(-2px);
}

/* Mega Menu Container */
.soma-megamenu {
  position: absolute;
  top: 100%; /* Sits directly at bottom of nav-inner with ZERO gap */
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(12, 10, 18, 0.65), 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 22px 24px 18px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.22s ease;
  transition-delay: 0.18s; /* Stays open during cursor transit */
  pointer-events: none;
  box-sizing: border-box;
}

/* Generous invisible hover bridge extending upwards into nav-inner */
.soma-megamenu::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 35px;
  background: transparent;
  pointer-events: auto;
}

/* Open on hover, focus, or JS is-open class */
.soma-menu > li.soma-has-megamenu:hover .soma-megamenu,
.soma-menu > li.soma-has-megamenu.is-open .soma-megamenu,
.soma-megamenu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s !important; /* Instant open */
}

/* Mega Menu Header */
.soma-megamenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 12px;
}
.soma-megamenu-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.soma-megamenu-badge {
  font-family: var(--font-mono, monospace);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #FFFCC6;
  background: rgba(255, 252, 198, 0.14);
  border: 1px solid rgba(255, 252, 198, 0.28);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.soma-megamenu-tagline {
  font-size: 12.5px;
  color: #d1d1d6;
  letter-spacing: 0.01em;
}
.soma-megamenu-hdr-btn {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #FFFCC6 !important;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.soma-megamenu-hdr-btn:hover {
  background: rgba(255, 252, 198, 0.2);
  border-color: #FFFCC6;
  transform: translateX(2px);
}

/* Grids */
.soma-megamenu-grid {
  display: grid;
  width: 100%;
  box-sizing: border-box;
}
.soma-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.soma-grid-6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

/* Chat Mega Menu Cards (4 items) */
.soma-megamenu-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  box-sizing: border-box;
}
.soma-megamenu-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 252, 198, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.soma-megamenu-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #181420;
}
.soma-megamenu-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.soma-megamenu-card:hover .soma-megamenu-card-img-wrap img {
  transform: scale(1.06);
}

.soma-megamenu-card-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(26, 22, 34, 0.88);
  color: #FFFCC6;
  border: 1px solid rgba(255, 252, 198, 0.35);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}
.soma-megamenu-card-tag.live {
  background: rgba(196, 98, 45, 0.92);
  color: #ffffff;
  border-color: #ff9858;
}
.soma-megamenu-card-tag.gold {
  background: rgba(212, 160, 23, 0.92);
  color: #ffffff;
  border-color: #FFFCC6;
}

.soma-megamenu-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-sizing: border-box;
}
.soma-megamenu-card-title {
  font-family: var(--font-display, inherit);
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF !important;
  margin: 0 0 6px !important;
  line-height: 1.3;
}
.soma-megamenu-card-desc {
  font-size: 12px;
  color: #b5b3be;
  line-height: 1.45;
  margin: 0 0 10px !important;
  flex: 1;
}
.soma-megamenu-card-cta {
  font-size: 11.5px;
  font-weight: 600;
  color: #FFFCC6 !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease;
}
.soma-megamenu-card:hover .soma-megamenu-card-cta {
  transform: translateX(3px);
  color: #ffffff !important;
}

/* Shop Mega Menu Cards (6 items) */
.soma-megamenu-shop-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  box-sizing: border-box;
}
.soma-megamenu-shop-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 252, 198, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.soma-megamenu-shop-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #181420;
}
.soma-megamenu-shop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.soma-megamenu-shop-card:hover .soma-megamenu-shop-img-wrap img {
  transform: scale(1.08);
}

.soma-megamenu-shop-body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-sizing: border-box;
}
.soma-megamenu-shop-title {
  font-family: var(--font-display, inherit);
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF !important;
  margin: 0 0 4px !important;
  line-height: 1.25;
}
.soma-megamenu-shop-desc {
  font-size: 11px;
  color: #b5b3be;
  line-height: 1.35;
  margin: 0 0 8px !important;
  flex: 1;
}
.soma-megamenu-shop-cta {
  font-size: 11px;
  font-weight: 600;
  color: #FFFCC6 !important;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: transform 0.2s ease;
}
.soma-megamenu-shop-card:hover .soma-megamenu-shop-cta {
  transform: translateX(2px);
  color: #ffffff !important;
}

/* Mega Menu Footer */
.soma-megamenu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11.5px;
  gap: 12px;
}
.soma-megamenu-footer-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a1a1aa;
  flex-wrap: wrap;
}
.soma-megamenu-footer-info .sep {
  opacity: 0.4;
}
.soma-megamenu-footer-action {
  color: #FFFCC6 !important;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.soma-megamenu-footer-action:hover {
  color: #ffffff !important;
  transform: translateX(2px);
}

/* ── Mobile Side Drawer (Off-Canvas) Styles ── */
.soma-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 15, 23, 0.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}
.soma-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.soma-side-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  color: #ffffff !important;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  border-right: none;
  height: 100vh;
}
a.drawer-brand {
  width: 120px;
}
@media (min-width: 769px) {
  .soma-side-drawer {
    width: 380px;
    max-width: 380px;
    right: auto;
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.35);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.soma-side-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 10px;
  background: transparent;
  border-bottom: none;
}
.drawer-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: none;
}
.drawer-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  color: #FFFCC6 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.drawer-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px 18px 20px;
  -webkit-overflow-scrolling: touch;
}
.drawer-body::-webkit-scrollbar {
  width: 4px;
}
.drawer-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* ── Section Labels ── */
.drawer-section-label {
  font-family: var(--font-mono, sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFCC6;
  opacity: 0.9;
  margin-bottom: 12px;
}

/* ── Collection Cards ── */
.drawer-collection-cards {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.drawer-collection-card {
  display: flex;
  align-items: stretch;
  height: 56px;
  background: rgba(40, 40, 41, 0.55);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 252, 198, 0.18);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}
.drawer-collection-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 252, 198, 0.35);
}
.drawer-collection-card:active {
  transform: scale(0.985);
}

.collection-card-label {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  width: 126px;
  min-width: 126px;
  flex-shrink: 0;
  background: transparent;
  z-index: 2;
  line-height: 1.25;
}

.collection-card-media {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.2);
}

.collection-card-fade {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(90deg, rgba(40, 40, 41, 0.8) 0%, rgba(40, 40, 41, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.collection-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transition: transform 0.3s ease;
  display: block;
}
.drawer-collection-card:hover .collection-card-media img {
  transform: scale(1.06);
}

/* ── Discover Links Grid ── */
.drawer-discover-grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 20px;
  margin-top: 6px;
}
.drawer-discover-item {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(237, 236, 228, 0.85);
  text-decoration: none;
  transition: color 0.18s;
  line-height: 1.3;
}
.drawer-discover-item:hover {
  color: #FFFCC6;
}

/* ── Dotted Divider ── */
.drawer-dotted-divider {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  margin: 18px 0;
}

/* ── Highlight Action Links ── */
.drawer-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
}
.drawer-highlight-item {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.18s;
}
.drawer-highlight-item.is-accent {
  color: #FFFCC6;
}
.drawer-highlight-item:hover {
  opacity: 0.8;
}

/* ── Drawer Footer Row: Account Link ── */
.drawer-footer-row {
  padding: 14px 22px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.drawer-account-link {
  font-size: 14px;
  font-weight: 600;
  color: #FFFCC6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.drawer-account-link:hover {
  color: #ffffff;
  transform: translateX(-2px);
}

/* ─── 9. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #EDECE4 !important;
  padding: var(--space-2xl) 0 0 !important;
  box-shadow: 0 -4px 24px rgba(40, 40, 41, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.footer .logo {
  color: #FFFFFF !important;
  text-decoration: none;
}

.footer .logo small {
  color: #FFFCC6 !important;
}

.footer-about {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.65;
  margin-top: var(--space-md);
  max-width: 34ch;
}

/* Footer Social Media Icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: rgba(40, 40, 41, 0.45);
  color: #FFFFFF !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
  cursor: pointer;
}

.social-icon-btn svg {
  color: #FFFFFF;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.social-icon-btn:hover {
  background: #282829 !important;
  border-color: #FFFCC6 !important;
  color: #FFFCC6 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.social-icon-btn:hover svg {
  color: #FFFCC6 !important;
}

.footer-grid h5 {
  font-size: 11.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFCC6 !important;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li,
.footer-grid a {
  font-size: 14px;
  color: #FFFFFF !important;
  opacity: 0.88;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.footer-grid li:hover,
.footer-grid a:hover {
  color: #FFFCC6 !important;
  opacity: 1 !important;
  transform: translateX(3px);
}

/* ─── Footer Accordion & Mobile Center Alignment ─────────────── */
.footer-accordion-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
  font: inherit;
  color: inherit;
  text-align: left;
  display: block;
  width: 100%;
  cursor: default;
}

.footer-accordion-btn .footer-chevron {
  display: none;
}

.footer-col-title {
  font-size: 11.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFCC6 !important;
  font-weight: 700;
  display: block;
}

.footer-accordion-content {
  display: block !important;
  max-height: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Mobile View: Accordion Behavior & Center Aligned Layout */
@media (max-width: 768px) {
  .footer {
    text-align: center !important;
    padding: var(--space-xl) 16px 0 !important;
  }

  .footer .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 12px !important;
    padding-bottom: 24px !important;
  }

  /* Brand Column Center Aligned */
  .footer-brand-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 12px !important;
  }

  .footer-brand-col .logo,
  .footer-brand-col .footer-logo {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto 12px !important;
  }

  .footer-brand-col .footer-about {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 280px !important;
    font-size: 13.5px !important;
  }

  .footer-brand-col .footer-social {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 16px auto 10px !important;
    width: 100% !important;
  }

  /* Accordion Item Card */
  .footer-col-accordion {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: background 0.25s, border-color 0.25s !important;
  }

  .footer-col-accordion.is-open {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 252, 198, 0.22) !important;
  }

  /* Accordion Header Button */
  .footer-accordion-btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    padding: 14px 20px !important;
    margin: 0 !important;
    cursor: pointer !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    background: transparent !important;
  }

  .footer-col-title {
    font-size: 12.5px !important;
    font-family: var(--font-mono) !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #FFFCC6 !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin: 0 !important;
  }

  .footer-accordion-btn .footer-chevron {
    display: block !important;
    position: absolute !important;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #FFFCC6 !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .footer-col-accordion.is-open .footer-accordion-btn .footer-chevron {
    transform: translateY(-50%) rotate(180deg) !important;
  }

  /* Accordion Collapsible Body */
  .footer-accordion-content {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease, visibility 0.28s ease !important;
    text-align: center !important;
    padding: 0 16px !important;
  }

  .footer-col-accordion.is-open .footer-accordion-content {
    max-height: 340px !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 4px 16px 16px !important;
  }

  .footer-accordion-content ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center !important;
    width: 100% !important;
  }

  .footer-accordion-content li,
  .footer-accordion-content a {
    text-align: center !important;
    display: inline-block !important;
    font-size: 14px !important;
    color: #FFFFFF !important;
    opacity: 0.88 !important;
  }

  .footer-accordion-content li:hover,
  .footer-accordion-content a:hover {
    transform: translateY(-2px) !important;
    color: #FFFCC6 !important;
    opacity: 1 !important;
  }

  /* Footer Info Row (About Shubham Kuru & Disclaimer) Center Aligned */
  .footer-info-row {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    text-align: center !important;
    padding: 24px 12px 20px !important;
    margin-top: 16px !important;
    width: 100% !important;
  }

  .footer-info-col {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .footer-info-title {
    text-align: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin-bottom: 8px !important;
  }

  .footer-info-text {
    text-align: center !important;
    max-width: 480px !important;
    margin: 0 auto !important;
    line-height: 1.65 !important;
  }

  /* Watermark & Footer Bottom Center Aligned */
  .footer-shubham-wrap {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 22px 0 18px !important;
  }

  .footer-shubham-wrap .shubham-text {
    text-align: center !important;
    margin: 0 auto !important;
  }

  .footer-bottom {
    width: 100% !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
    padding: 18px 0 24px !important;
  }

  .footer-bottom span {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
  }
}

/* ─── Footer About & Disclaimer Row ─────────────────────────── */
.footer-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 32px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
}

.footer-info-title {
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFFCC6;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-info-title::before {
  content: '✦';
  font-size: 10px;
  color: var(--terracotta-soft, #D97E4A);
}

.footer-info-text {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-info-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0 18px;
    margin-top: 24px;
  }
}

/* ─── Footer SHUBHAM KURU inside container (Smooth Footer Gradient) ─── */
.footer-shubham-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
  user-select: none;
}

.shubham-text {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: clamp(32px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: clamp(0.10em, 1.8vw, 0.24em);
  text-transform: uppercase;
  white-space: nowrap;

  /* Smooth gradient using footer background colors (#4B4752 & #757575) */
  background: linear-gradient(135deg, #FFFCC6 0%, #757575 48%, #4B4752 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 252, 198, 0.4);
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.shubham-text:hover {
  filter: drop-shadow(0 4px 18px rgba(255, 252, 198, 0.3));
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .footer-shubham-wrap {
    padding: 18px 0 14px;
  }

  .shubham-text {
    font-size: clamp(24px, 7vw, 44px);
    letter-spacing: 0.10em;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82) !important;
  font-family: var(--font-mono);
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.82) !important;
}

.footer-bottom a {
  color: #FFFCC6 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

/* ─── 10. PLACEHOLDER IMAGES (ph) ───────────────────────────── */
.ph {
  background: linear-gradient(145deg, var(--beige) 0%, var(--line) 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  padding: 10px;
}

.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
}

.ph-gold {
  background: linear-gradient(145deg, #F5E8C0 0%, #E0C870 100%);
}

.ph-ter {
  background: linear-gradient(145deg, var(--terracotta-soft) 0%, #E8A882 100%);
}

.ph-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

/* Round photo placeholder for astrologers */
.ph-round {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--beige), var(--line));
  margin: 0 auto 10px;
}

/* ─── 11. HOME — HERO (Cinematic Textured Aesthetic) ─────────── */
.hero {
  position: relative;
  padding: 80px 0 96px;
  background-color: #1E1C20;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #FFFFFF;
}

/* Atmospheric vignette & cinematic dark texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 35%, rgba(255, 252, 198, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(75, 71, 82, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, rgba(30, 28, 32, 0.5) 0%, transparent 25%, transparent 75%, rgba(30, 28, 32, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero .container.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: 0 var(--gutter, 24px);
}

.hero-left-content {
  max-width: 660px;
}

/* Eyebrow with leading dash */
.hero-eyebrow {
  display: flex;
  align-items: center;
  font-family: var(--font-mono, monospace);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFCC6;
  margin-bottom: 24px;
}

/* Headline */
.hero-headline {
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 24px 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: #FFFCC6;
  text-shadow: 0 0 24px rgba(255, 252, 198, 0.35);
}

/* Description Subtext */
.hero-subtext {
  font-family: var(--font-body, 'IBM Plex Serif', serif);
  font-size: 16px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 36px 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: #282829;
  color: #FFFCC6 !important;
  border: 1.5px solid #4B4752;
  border-radius: 12px;
  font-family: var(--font-body, 'IBM Plex Serif', serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: all 0.25s ease;
  cursor: pointer;
}

.hero-btn-primary svg {
  color: #FFFCC6;
  flex-shrink: 0;
}

.hero-btn-primary:hover {
  background: #4B4752;
  border-color: #757575;
  color: #FFFCC6 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: rgba(45, 45, 46, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF !important;
  border: 1.5px solid #757575;
  border-radius: 12px;
  font-family: var(--font-body, 'IBM Plex Serif', serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.hero-btn-ghost svg {
  color: #FFFFFF;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.hero-btn-ghost:hover {
  background: #282829;
  border-color: #FFFCC6;
  color: #FFFCC6 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-btn-ghost:hover svg {
  color: #FFFCC6;
  transform: translateX(3px);
}

/* Divider & Stats Row */
.hero-stats-row {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 640px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: 32px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hero-stat-lbl {
  font-family: var(--font-body, 'IBM Plex Serif', serif);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 48px 0 64px;
  }

  .hero-headline {
    font-size: 34px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    justify-content: center;
  }

  .hero-stats-row {
    gap: 24px;
    flex-wrap: wrap;
  }
}

/* ─── 12. HOME — CATEGORIES ──────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.cat-tile {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.cat-tile .ph {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  border-radius: 0;
}

.cat-tile .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 36, 22, 0.82) 0%, rgba(44, 36, 22, 0.1) 60%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background var(--t);
}

.cat-tile:hover .overlay {
  background: linear-gradient(to top, rgba(44, 36, 22, 0.92) 0%, rgba(44, 36, 22, 0.3) 70%, transparent 100%);
}

.cat-tile .overlay .count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 253, 247, 0.6);
  margin-bottom: 6px;
}

.cat-tile .overlay h3 {
  color: var(--ivory);
  font-size: 22px;
  margin-bottom: 4px;
}

.cat-tile .overlay .hi {
  font-family: var(--font-hi);
  font-size: 14px;
  color: var(--gold-soft);
}

/* ─── 12b. HOME — SACRED COLLECTION ON-SCROLL CARD STACK ────── */
.sacred-collection-section {
  position: relative;
  padding: 80px 0 110px;
}

.cards {
  width: 100%;

  margin: 50px auto 0;
  display: grid;
  grid-template-rows: repeat(var(--cards-count, 3), var(--card-height, auto));
  gap: 60px 0;
}

.card {
  position: sticky;
  top: 88px;
  will-change: transform;
}

.card__inner {
  will-change: transform, filter;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 252, 198, 0.22);
  box-shadow: 0 25px 60px -15px rgba(20, 20, 22, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transform-origin: center top;
  transition: filter 0.15s ease-out;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Background image & gradient overlay */
.card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.card__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.95;
  filter: saturate(1.15) contrast(1.08);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.card__inner:hover .card__bg-img {
  transform: scale(1.04);
  opacity: 1;
}

.card__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(75, 71, 82, 0.98) 0%, rgba(75, 71, 82, 0.95) 38%, rgb(93 89 102 / 47%) 55%, rgb(93 89 102 / 0%) 75%, rgb(117 117 117 / 0%) 100%) !important;
    pointer-events: none;
}

/* Subtle border glow & edge definition */
.card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 252, 198, 0.08) 0%, transparent 20%, transparent 80%, rgba(40, 40, 41, 0.4) 100%);
  pointer-events: none;
}

/* Content on top — max-width keeps it cleanly on left/center */
.card__content {
  position: relative;
  z-index: 2;
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
}

.card__top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFCC6;
  opacity: 0.9;
}

.card__separator {
  opacity: 0.5;
}

.card__badge {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #282829;
  background: rgba(255, 252, 198, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.card__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.card__hi {
  font-family: var(--font-hi);
  font-size: 20px;
  color: #FFFCC6;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.card__description {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 26px;
  max-width: 680px;
}

.card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.card__feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 252, 198, 0.25);
  font-size: 13px;
  font-weight: 500;
  color: #FFFCC6;
}

.card__feature-pill svg {
  color: #FFFCC6;
  flex-shrink: 0;
}

.card__actions {
  display: flex;
  align-items: center;
}

.card__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #FFFCC6 0%, #f4eca6 100%);
  color: #282829 !important;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.card__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  background: #FFFFFF;
  color: #1D1D1E !important;
}

.card__cta-btn svg {
  transition: transform 0.22s ease;
}

.card__cta-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 860px) {
  .sacred-collection-section {
    padding: 60px 0 80px;
  }

  .cards {
    gap: 40px 0;
    margin-top: 36px;
  }

  .card {
    top: 76px;
  }

  .card__inner {
    border-radius: 22px;
    min-height: 400px;
  }

  .card__content {
    max-width: 100%;
    padding: 32px 24px;
  }

  .card__bg-overlay {
    background: linear-gradient(180deg,
        rgba(75, 71, 82, 0.97) 0%,
        rgba(75, 71, 82, 0.92) 55%,
        rgba(93, 89, 102, 0.70) 80%,
        rgba(117, 117, 117, 0.35) 100%) !important;
  }

  .card__top-bar {
    margin-bottom: 16px;
  }

  .card__title {
    font-size: 26px;
  }

  .card__hi {
    font-size: 16px;
  }

  .card__description {
    font-size: 14.5px;
    margin-bottom: 20px;
  }

  .card__features {
    gap: 8px;
    margin-bottom: 24px;
  }

  .card__feature-pill {
    font-size: 12px;
    padding: 5px 11px;
  }

  .card__cta-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 22px;
  }
}

/* ─── 14. HOME — TESTIMONIALS INFINITE MARQUEE ──────────────── */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
}

.testimonials-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 0 24px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.testimonials-track {
  display: flex;
  width: max-content;
  animation: testimonialMarquee 45s linear infinite;
  will-change: transform;
}

.testimonials-carousel:hover .testimonials-track,
.testimonials-carousel:active .testimonials-track {
  animation-play-state: paused;
}

.testimonials-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}

.testimonial {
  width: 370px;
  max-width: 85vw;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(40, 40, 41, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  user-select: none;
}

.testimonial:hover {
  transform: translateY(-5px);
  border-color: #4B4752;
  box-shadow: 0 12px 32px rgba(40, 40, 41, 0.10);
}

.testimonial .stars {
  color: #2a2047;
  letter-spacing: 3px;
  font-size: 14px;
}

.testimonial .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}

.testimonial .person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.testimonial .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2a2047;
  color: #FFFCC6;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(40, 40, 41, 0.16);
}

.testimonial .name {
  font-size: 14px;
  font-weight: 600;
  color: #282829;
}

.testimonial .meta {
  font-size: 12px;
  color: #757575;
  margin-top: 2px;
}

@keyframes testimonialMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── 15. HOME — ASTROLOGERS STRIP ──────────────────────────── */
.astro-strip {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  align-items: center;
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
}

.astro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.astro-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: box-shadow var(--t), transform var(--t);
}

.astro-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.astro-card .nm {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.astro-card .cr {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ─── 16. SHOP — PRODUCT CARD ────────────────────────────────── */
.product-grid {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* WooCommerce outputs ul.products inside .product-grid — grid goes here */
.related-products-grid,
.product-grid ul.products,
.related-products-grid ul.products,
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: var(--space-lg) !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* 
 * CRITICAL FIX FOR WOOCOMMERCE GRID:
 * WooCommerce core CSS injects clearfix pseudo-elements on ul.products:
 *   .woocommerce ul.products::before, .woocommerce ul.products::after { content: " "; display: table; }
 * In CSS Grid containers, pseudo-elements with `content` become grid items!
 * This caused `::before` to occupy (row 1, col 1), shifting Product 1 into col 2
 * and leaving the first grid slot completely blank!
 */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after,
.product-grid ul.products::before,
.product-grid ul.products::after,
.related-products-grid ul.products::before,
.related-products-grid ul.products::after,
ul.products::before,
ul.products::after {
  content: none !important;
  display: none !important;
}

.product-grid ul.products>li.product,
.related-products-grid ul.products>li.product,
.product-grid ul.products>.product-card,
.related-products-grid ul.products>.product-card {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  clear: none !important;
  display: flex;
  flex-direction: column;
}

.product-card {
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--t), transform var(--t);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.product-card:hover {
  box-shadow: 0 16px 36px rgba(40, 40, 41, 0.35) !important;
  transform: translateY(-4px);
}

.product-card>a:first-of-type,
.product-card a[tabindex="-1"] {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--cream-soft, #f8f6f0);
}

.product-card .ph {
  aspect-ratio: 1;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.product-card>a:first-of-type img,
.product-card .attachment-soma-product-card,
.product-card .size-soma-product-card,
.product-card img.wp-post-image {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover>a:first-of-type img,
.product-card:hover .attachment-soma-product-card,
.product-card:hover .size-soma-product-card,
.product-card:hover img.wp-post-image {
  transform: scale(1.05);
}

/* Product Card Discount Infinite Marquee */
.product-card-discount-marquee {
  width: 100%;
  overflow: hidden;
  background: #282829;
  border-top: 1px solid rgba(255, 252, 198, 0.22);
  border-bottom: 1px solid rgba(255, 252, 198, 0.22);
  padding: 6px 0;
  position: relative;
  user-select: none;
}

.discount-marquee-track {
  display: flex;
  width: max-content;
  animation: cardDiscountMarquee 16s linear infinite;
}

.product-card:hover .discount-marquee-track {
  animation-play-state: paused;
}

.discount-marquee-track .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #FFFCC6;
  padding: 0 16px;
  white-space: nowrap;
}

.discount-marquee-track .marquee-star {
  color: var(--gold, #d4af37);
  font-size: 10px;
}

@keyframes cardDiscountMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Explicit emoji reset so WordPress twemoji images never stretch */
img.emoji,
.product-card img.emoji,
.product-card .pad img.emoji,
span img.emoji {
  display: inline !important;
  border: none !important;
  height: 1.2em !important;
  width: 1.2em !important;
  max-width: 1.2em !important;
  margin: 0 0.2em !important;
  vertical-align: -0.15em !important;
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  aspect-ratio: auto !important;
  transform: none !important;
}

.product-card-top-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}

.product-card-top-badges>* {
  pointer-events: auto;
}

.tag-new {
  background: #ffffff;
  color: #1a1a1c;
  font-family: var(--font-mono, sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
  line-height: 1.2;
}

.tag-match {
  position: static;
  background: #282829;
  color: #FFFCC6;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 252, 198, 0.3);
}

.product-card-rating-badge {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #1a1a1c;
  font-family: var(--font-mono, sans-serif);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
  line-height: 1.2;
  margin-left: auto;
}

.product-card-rating-badge .rating-star {
  color: #e5a100;
  font-size: 13px;
  line-height: 1;
}

.product-card .pad {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.product-card-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.product-card-meta-row .cat,
.product-card-meta-row .cat a,
.product-card .cat,
.product-card .cat a {
  font-family: var(--font-mono, sans-serif);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  margin-bottom: 0;
  text-decoration: none;
}

.product-reviews-count {
  font-family: var(--font-mono, sans-serif);
  font-size: 11px;
  color: white;
  white-space: nowrap;
}

.product-card .name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: white;
  line-height: 1.3;
  margin-bottom: 4px;
}

.product-card .name .name-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.product-card .name small {
  display: block;
  font-family: var(--font-hi);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.85) !important;
  font-style: normal;
  font-weight: 400;
  margin-top: 2px;
}

/* Product Card Tags Infinite Marquee (Left to Right) */
.product-tags-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 8px;
  position: relative;
  user-select: none;
}

.product-tags-track {
  display: flex;
  width: max-content;
  gap: 8px;
  animation: tagsMarqueeLeftToRight 16s linear infinite;
}

.product-card:hover .product-tags-track {
  animation-play-state: paused;
}

.product-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: white;
  background: rgba(255, 252, 198, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

@keyframes tagsMarqueeLeftToRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.product-card .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
}

.product-card .price-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.product-card .price,
.product-card .price .woocommerce-Price-amount {
  font-family: var(--font-display, inherit);
  font-size: 21px;
  font-weight: 700;
  color: white !important;
  line-height: 1.15;
}

.product-card .price-mrp,
.product-card .price-mrp .woocommerce-Price-amount {
  font-size: 12px;
  color: white !important;
  text-decoration: line-through;
  margin-top: 2px;
  line-height: 1.1;
  font-weight: 400;
}

.product-card .btn-add-pill,
.product-card a.btn-add-pill.add_to_cart_button,
.product-card .btn-add-pill.ajax_add_to_cart {
  background: #2a2047 !important;
  color: #ffffff !important;
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 8px 20px !important;
  border-radius: 9999px !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(92, 141, 236, 0.4) !important;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  user-select: none !important;
  line-height: 1 !important;
  min-height: 36px !important;
  flex-shrink: 0;
}

.product-card .btn-add-pill .btn-add-symbol {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  transition: transform 0.2s ease;
}

.product-card .btn-add-pill .btn-add-label {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 13px;
  line-height: 1;
}

.product-card .btn-add-pill:hover {
  background: #4676dd !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(70, 118, 221, 0.5) !important;
  color: #ffffff !important;
}

.product-card .btn-add-pill:hover .btn-add-symbol {
  transform: rotate(90deg) scale(1.15);
}

.product-card .btn-add-pill:active {
  transform: scale(0.96);
}

.product-card .btn-add-pill.is-out-of-stock {
  background: rgba(0, 0, 0, 0.08) !important;
  color: #888888 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  font-size: 11px !important;
  padding: 6px 14px !important;
}

.product-card .btn-add-pill.loading {
  opacity: 0.8;
  pointer-events: none;
}

.product-card .btn-add-pill.loading::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: btnAddSpin 0.6s linear infinite;
  margin-left: 5px;
}

@keyframes btnAddSpin {
  to {
    transform: rotate(360deg);
  }
}

.product-card .btn-add-pill.added {
  background: #16a34a !important;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4) !important;
}

.product-card .added_to_cart.wc-forward {
  display: none !important;
}

/* ─── 17. SHOP — LISTING PAGE ────────────────────────────────── */
.listing-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-3xl);
}

.filters {
  position: sticky;
  top: 88px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 36px rgba(40, 40, 41, 0.22);
}

.filter-group {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.filter-group:first-child {
  padding-top: 0;
}

.filter-group h5,
.filters h5 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: #FFFFFF !important;
}

.filters .filter-group h5 span,
.filters h5 span {
  color: #FFFCC6 !important;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(237, 236, 228, 0.9);
  cursor: pointer;
  padding: 5px 0;
  transition: color var(--t);
}

.checkbox:hover {
  color: #FFFFFF !important;
}

.checkbox input {
  accent-color: #FFFCC6;
}

.checkbox .ct {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #FFFCC6;
  background: rgba(40, 40, 41, 0.65);
  border: 1px solid rgba(255, 252, 198, 0.22);
  padding: 2px 7px;
  border-radius: 999px;
}

.filters .btn.btn-primary {
  background: #2a2047 !important;
  color: #FFFCC6 !important;
  border: 1px solid rgba(255, 252, 198, 0.3) !important;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(40, 40, 41, 0.3) !important;
  transition: background .2s ease, transform .2s ease !important;
}

.filters .btn.btn-primary:hover {
  background: #1c1c1d !important;
  transform: translateY(-1px);
}

.filters .filter-match-group {
  
  border: 1px solid rgba(255, 252, 198, 0.25) !important;
  border-radius: var(--radius);
}

.filters .filter-match-group h5 {
  color: #FFFCC6 !important;
}

.filters .filter-match-badge {
  background: #282829 !important;
  color: #FFFCC6 !important;
  border: 1px solid rgba(255, 252, 198, 0.3) !important;
}

.filters .afc {
  background: #282829 !important;
  color: #FFFCC6 !important;
  border: 1px solid rgba(255, 252, 198, 0.3) !important;
}

.filters .afc:hover {
  background: #1c1c1d !important;
  border-color: #FFFCC6 !important;
}

.filters .ai-nudge-card {
  background: #2a2047 !important;
  border: 1px solid rgba(255, 252, 198, 0.2) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.filters .ai-nudge-card .nudge-title {
  color: #FFFFFF !important;
}

.filters .ai-nudge-card .nudge-sub {
  color: rgba(237, 236, 228, 0.75) !important;
}

.filters .ai-nudge-card .nudge-btn {
  background: #4B4752 !important;
  color: #FFFCC6 !important;
  border: 1px solid rgba(255, 252, 198, 0.25) !important;
}

.filters .ai-nudge-card .nudge-btn:hover {
  background: #5d5966 !important;
}

/* ─── SHOP / LISTING MOBILE RESPONSIVENESS & FILTERS DRAWER ─── */
.mobile-shop-toolbar,
.filter-drawer-header,
.soma-filters-backdrop,
.soma-filters-drawer {
  display: none;
}

/* Ensure .product-grid is strictly a block container, never a grid itself */
.product-grid {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.listing-main-content {
  width: 100% !important;
  min-width: 0 !important;
}

/* Desktop Grid (3 columns) */
@media (min-width: 901px) {
  .listing-layout {
    display: grid !important;
    grid-template-columns: 260px 1fr !important;
    gap: var(--space-xl) !important;
    padding-top: var(--space-xl) !important;
    padding-bottom: var(--space-3xl) !important;
  }

  .soma-filters-backdrop,
  .soma-filters-drawer {
    display: none !important;
  }

  .filter-drawer-header {
    display: none !important;
  }

  .desktop-filters-sidebar {
    position: sticky !important;
    top: 88px !important;
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    box-shadow: 0 12px 36px rgba(40, 40, 41, 0.22) !important;
    border-radius: var(--radius-xl) !important;
  }

  .desktop-only-filter-hdr {
    display: block !important;
  }

  .product-grid ul.products,
  .related-products-grid ul.products,
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: var(--space-lg) !important;
    width: 100% !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* Tablet & Mobile (<= 900px) */
@media (max-width: 900px) {
  .listing-layout {
    display: block !important;
    width: 100% !important;
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

  .listing-main-content {
    width: 100% !important;
    display: block !important;
  }

  /* Hide desktop listing header */
  .listing-hdr {
    display: none !important;
  }

  /* Mobile Shop Toolbar */
  .mobile-shop-toolbar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .btn-mobile-filter-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #282829;
    color: #FFFCC6;
    border: 1px solid rgba(255, 252, 198, 0.25);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(40, 40, 41, 0.22);
    transition: background 0.2s, transform 0.2s;
  }

  .btn-mobile-filter-trigger:active {
    transform: scale(0.97);
  }

  .btn-mobile-filter-trigger svg {
    color: #FFFCC6;
  }

  .filter-count-badge {
    background: #5c8dec;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 2px 7px;
    line-height: 1.1;
  }

  .mobile-sort-wrap form {
    display: flex;
    align-items: center;
    margin: 0;
  }

  .mobile-sort-select {
    background: #f5f1ea;
    color: #2b2725;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
  }

  /* 2-Column Mobile Product Grid */
  .product-grid {
    display: block !important;
    width: 100% !important;
  }

  .product-grid ul.products,
  .related-products-grid ul.products,
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .product-grid ul.products>li.product,
  .related-products-grid ul.products>li.product,
  .product-grid ul.products>.product-card,
  .related-products-grid ul.products>.product-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  /* Mobile Filters Drawer Container */
  /* Mobile Filters Backdrop (Off-Canvas Overlay) */
  .soma-filters-backdrop {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 99998 !important;
    background: rgba(18, 16, 20, 0.65) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease !important;
  }

  .soma-filters-backdrop.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Hide desktop filter sidebar on mobile/tablet */
  .desktop-filters-sidebar {
    display: none !important;
  }

  /* Mobile Filters Drawer Panel */
  .soma-filters-drawer {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100vh !important;
    background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
    border-radius: 0 !important;
    z-index: 99999 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    transform: translateX(-100%) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: none !important;
    border: none !important;
    padding: 20px 20px 40px !important;
    box-sizing: border-box !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .soma-filters-drawer.active {
    transform: translateX(0) !important;
    visibility: visible !important;
  }

  .desktop-only-filter-hdr {
    display: none !important;
  }

  .filter-drawer-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .filter-drawer-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
  }

  .filter-drawer-title svg {
    color: #FFFCC6;
  }

  .filter-drawer-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFCC6;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
  }

  .filter-drawer-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
  }

  /* Hide distracting second tags ticker on mobile for clean card layout */
  .product-tags-marquee {
    display: none !important;
  }

  .product-card-discount-marquee {
    padding: 3px 0 !important;
    font-size: 9px !important;
  }

  /* Product Card Mobile Tuning */
  .product-card {
    border-radius: 14px !important;
  }

  .product-card .pad {
    padding: 10px 10px 12px !important;
  }

  .product-card .name {
    font-size: 13.5px !important;
    line-height: 1.25 !important;
    margin-bottom: 2px !important;
  }

  .product-card .name .name-text {
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    line-height: 1.25 !important;
    max-height: 34px !important;
  }

  .product-card-meta-row,
  .product-card .cat-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 4px !important;
    gap: 4px !important;
  }

  .product-card-meta-row .cat,
  .product-card-meta-row .cat a,
  .product-card .cat-row .cat,
  .product-card .cat-row .cat a {
    font-size: 9.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 65% !important;
    color: #a8a4b4 !important;
  }

  .product-reviews-count {
    font-size: 9.5px !important;
    color: #c4c0d0 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .product-card .bottom {
    padding-top: 8px !important;
    margin-top: auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 4px !important;
  }

  .product-card .price,
  .product-card .price .woocommerce-Price-amount {
    font-size: 15px !important;
    font-weight: 700 !important;
  }

  .product-card .price-mrp,
  .product-card .price-mrp .woocommerce-Price-amount {
    font-size: 10px !important;
  }

  .product-card .btn-add-pill,
  .product-card a.btn-add-pill.add_to_cart_button {
    padding: 6px 12px !important;
    font-size: 11px !important;
    min-height: 28px !important;
    letter-spacing: 0.02em !important;
    flex-shrink: 0 !important;
  }

  .product-card .btn-add-pill .btn-add-symbol {
    font-size: 13px !important;
  }

  .product-card-top-badges {
    top: 6px !important;
    left: 6px !important;
    right: 6px !important;
  }

  .tag-new,
  .tag-match {
    font-size: 9px !important;
    padding: 2px 7px !important;
  }

  .product-card-rating-badge {
    font-size: 10px !important;
    padding: 2px 7px !important;
  }
}

/* ─── 17. SHOP / COLLECTION HERO BANNER ─────────────────────── */
.collection-hero {
  position: relative;
  width: 100%;
  padding: 68px 0 76px;
  background-color: #1E1C20;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(75, 71, 82, 0.45);
  margin-bottom: 36px;
}

/* Atmospheric vignette & cinematic dark texture overlay (matching hero section) */
.collection-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 35%, rgba(255, 252, 198, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(75, 71, 82, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, rgba(30, 28, 32, 0.5) 0%, transparent 25%, transparent 75%, rgba(30, 28, 32, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
}

.collection-hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: 0 var(--gutter, 24px);
}

.collection-hero-content {
  max-width: 720px;
}

.collection-hero-eyebrow {
  display: flex;
  align-items: center;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFCC6;
  margin-bottom: 16px;
}

.collection-hero-title {
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.collection-hero-desc {
  font-family: var(--font-body, 'IBM Plex Serif', serif);
  font-size: 15.5px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.88);
  max-width: 64ch;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.collection-hero-desc p {
  margin: 0 0 8px 0;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 15.5px;
  line-height: 1.72;
}

.collection-hero-desc p:last-child {
  margin-bottom: 0;
}

.listing-count-badge {
  font-family: var(--font-mono, monospace);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #757575;
}

.listing-count-badge .woocommerce-result-count {
  margin: 0;
  color: #757575;
  font-size: 12.5px;
}

@media (max-width: 768px) {
  .collection-hero {
    padding: 48px 0 52px;
    margin-bottom: 24px;
  }

  .collection-hero-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .collection-hero-desc,
  .collection-hero-desc p {
    font-size: 14.5px;
  }
}

.listing-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--line);
}

.listing-hdr h1 {
  font-size: 32px;
}

.listing-hdr .count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ─── 18. SHOP — PRODUCT DETAIL (PDP) ───────────────────────── */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-xl) 0;
}

.pdp-gallery {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-md);
}

.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdp-thumbs .t {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--t);
}

.pdp-thumbs .t.active {
  border-color: var(--terracotta);
}

.pdp-thumbs .t .ph {
  aspect-ratio: 1;
  border-radius: 8px;
}

.pdp-main-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.pdp-main-img .ph {
  aspect-ratio: 1;
  border-radius: 0;
  height: 100%;
}

.pdp-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* PDP Main Image Infinite Marquee Ticker (Right to Left) */
.pdp-image-marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(75, 71, 82, 0.94) 0%, rgba(93, 89, 102, 0.92) 50%, rgba(117, 117, 117, 0.94) 100%) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 252, 198, 0.25);
  padding: 8px 0;
  z-index: 4;
  user-select: none;
}

.pdp-image-marquee-track {
  display: flex;
  width: max-content;
  animation: pdpImageMarqueeRTL 22s linear infinite;
}

.pdp-main-img:hover .pdp-image-marquee-track {
  animation-play-state: paused;
}

.pdp-image-marquee-track .pdp-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #FFFCC6;
  padding: 0 16px;
  white-space: nowrap;
}

.pdp-image-marquee-track .pdp-marquee-star {
  color: var(--gold, #d4af37);
  font-size: 10px;
}

@keyframes pdpImageMarqueeRTL {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.pdp-info .cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.pdp-info h1 {
  font-size: 36px;
  margin-bottom: 4px;
}

.pdp-info h1 small {
  display: block;
  font-family: var(--font-hi);
  font-size: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 400;
  margin-top: 4px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  margin: var(--space-md) 0;
  flex-wrap: wrap;
}

.rating-row .stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.match-card {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--sage-soft);
  border: 1px solid var(--sage);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
}

.match-card .mi {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sage);
  color: var(--ivory);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.match-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.match-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.price-big {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  margin: var(--space-md) 0;
}

.price-big small {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-style: normal;
}

.pdp-info .desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: var(--space-lg);
}

.pdp-meta {
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.mrow {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 12px var(--space-md);
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}

.mrow:last-child {
  border-bottom: none;
}

.mrow .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
}

.mrow .v {
  font-size: 13px;
  color: var(--ink-soft);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.qty {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty button {
  width: 38px;
  height: 38px;
  font-size: 18px;
  color: var(--ink);
  transition: background var(--t);
}

.qty button:hover {
  background: var(--line);
}

.qty span {
  min-width: 40px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
}

.pdp-cta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* PDP Tabs */
.pdp-detail-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--line);
  margin: var(--space-xl) 0 var(--space-xl);
  overflow-x: auto;
}

.pdp-detail-tabs button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--t);
}

.pdp-detail-tabs button.active {
  color: var(--ink);
  border-bottom-color: var(--terracotta);
}

.pdp-detail-tabs button:hover {
  color: var(--ink);
}

/* ─── 19. BIRTH FORM ─────────────────────────────────────────── */
.form-page {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: calc(100vh - 68px);
  gap: 0;
}

.form-side {
  padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) var(--gutter);
}

.stepper {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-xl);
}

.stepper .s {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  transition: background var(--t);
}

.stepper .s.active {
  background: var(--terracotta);
}

.form-side h2 {
  margin: var(--space-md) 0 var(--space-sm);
}

.helper {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.field {
  margin-bottom: var(--space-lg);
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
}

.input {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t);
}

.input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px var(--terracotta-soft);
}

.input::placeholder {
  color: var(--muted);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all var(--t);
}

.chip:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.chip.active {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

/* Birth form right — chart wheel visual */
.form-visual {
  background: var(--beige);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-2xl);
}

.chart-wheel {
  position: relative;
  width: min(360px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: radial-gradient(circle, var(--white) 30%, var(--beige) 100%);
}

.spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 1px;
  background: var(--line);
  transform-origin: 0 50%;
}

.house {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  transform: translate(-50%, -50%);
}

.chart-wheel .center {
  position: absolute;
  inset: 35%;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.center .om {
  font-family: var(--font-hi);
  font-size: 32px;
  color: var(--gold);
}

/* ─── 20. CHAT LAYOUT ────────────────────────────────────────── */
.chat-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  height: calc(100vh - 68px);
  overflow: hidden;
  border-top: 1px solid var(--line);
}

/* Chat left sidebar */
.chat-side {
  padding: var(--space-lg);
  border-right: 1px solid var(--line);
  overflow-y: auto;
  background: var(--beige);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.chat-side h5 {

  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.profile-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.profile-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}

.profile-card .row:last-of-type {
  border-bottom: none;
}

.profile-card .k {

  text-transform: uppercase;
  color: var(--muted);
}

.profile-card .v {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

.history-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  color: var(--ink-soft);
  transition: background var(--t);
}

.history-item:hover,
.history-item.active {
  background: var(--white);
  color: var(--ink);
}

.history-item.active {
  border: 1px solid var(--line);
}

.history-item .ts {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

.history-item svg {
  margin-top: 2px;
  flex-shrink: 0;
}

/* Chat main */
.chat-main {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ivory);
}

.chat-hdr {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  flex-shrink: 0;
}

.chat-hdr .astro-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-soft);
  font-family: var(--font-hi);
  font-size: 20px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.chat-hdr .name {
  font-size: 15px;
  font-weight: 600;
}

.chat-hdr .status {
  font-size: 12px;
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-hdr .status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
}

.chat-scroll {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  scroll-behavior: smooth;
}

/* Messages */
.msg {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  max-width: 80%;
}

.msg-me {
  flex-direction: row-reverse;
  align-self: flex-end;
}

.msg .av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--terracotta-soft);
  color: var(--terracotta);
  font-family: var(--font-hi);
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 600;
}

.msg-ai .av {
  background: var(--ink);
  color: var(--gold-soft);
  font-family: var(--font-hi);
}

.bubble {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  border-bottom-left-radius: 4px;
  padding: 12px var(--space-md);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

[data-bubble="classic"] .bubble {
  border-radius: var(--radius-lg);
}

.msg-me .bubble {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px 0;
}

.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: blink 1.4s ease-in-out infinite;
}

.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {

  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  40% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Recommendation bubble */
.bubble.rec {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  max-width: 520px;
}

.rec-intro {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.rec-list {
  padding: 8px 0;
}

.rec-item {
  display: grid;
  grid-template-columns: 56px 1fr 50px;
  gap: 12px;
  padding: 12px 18px;
  align-items: start;
  border-bottom: 1px solid var(--line-soft);
}

.rec-item:last-child {
  border-bottom: none;
}

.rec-item .ph {
  width: 56px;
  height: 56px;
  border-radius: 8px;
}

.rec-item .rn {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
}

.rec-item .rd {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.rec-item .match {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--sage-deep);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.rec-item .rp {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  padding-top: 2px;
}

/* Chat input */
.chat-input {
  flex-shrink: 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.suggest {
  display: flex;
  gap: 8px;
  padding: 10px var(--space-lg) 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.suggest::-webkit-scrollbar {
  display: none;
}

.input-wrap {
  display: flex;
  gap: var(--space-sm);
  padding: 10px var(--space-lg) 14px;
  align-items: flex-end;
}

.input-wrap textarea {
  flex: 1;
  background: var(--beige);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 11px var(--space-md);
  font-size: 14px;
  resize: none;
  transition: border-color var(--t);
  max-height: 120px;
  overflow-y: auto;
}

.input-wrap textarea:focus {
  border-color: var(--terracotta);
}

.input-wrap textarea::placeholder {
  color: var(--muted);
}

.send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--ivory);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background var(--t), transform var(--t);
}

.send-btn:hover:not(:disabled) {
  background: var(--terracotta-deep);
  transform: scale(1.05);
}

.send-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Chat right panel */
.chat-panel {
  padding: var(--space-lg);
  border-left: 1px solid var(--line);
  overflow-y: auto;
  background: var(--beige);
  display: flex;
  flex-direction: column;

}

.chart-mini {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
}

.chart-mini .ctr {
  position: absolute;
  inset: 35%;
  border-radius: 50%;
  background: var(--beige);
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-hi);
  font-size: 20px;
  color: var(--gold);
}

.panel-metric {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.panel-metric .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.panel-metric .val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}

.panel-metric .note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* ─── 21. DASHBOARD ──────────────────────────────────────────── */
.dash {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-3xl);
  align-items: start;
}

.dash-side {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.user-card {
  background: linear-gradient(135deg, var(--ink), #3C2E1E);
  color: var(--ivory);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.user-card .av {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background:#2a2047;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 26px;
  display: grid;
  place-items: center;
  margin: 0 auto var(--space-md);
  border: 3px solid rgba(255, 253, 247, 0.2);
}

.user-card .nm {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.user-card .rashi {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
  text-transform: uppercase;
}

.dash-nav {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.dash-nav a {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 12px var(--space-lg);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  transition: all var(--t);
}

.dash-nav a:last-child {
  border-bottom: none;
}

.dash-nav a:hover,
.dash-nav a.active {
  background: var(--beige);
  color: var(--ink);
}

.dash-nav a.active {
  color: var(--terracotta);
  background: var(--terracotta-soft);
  border-left: 3px solid var(--terracotta);
}

.dash-nav a svg {
  flex-shrink: 0;
  color: inherit;
}

.dash-main {
  min-width: 0;
}

/* ─── 21b. MOBILE MENU DRAWER ────────────────────────────────── */
.mobile-menu {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: var(--space-lg) var(--gutter);
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu:not([hidden]) {
  display: flex;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  display: block;
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

/* ─── 22. PAGE ANIMATIONS ────────────────────────────────────── */
/* Non-jarring page entrance without displacement or blank flash */
.page-enter {
  opacity: 1;
  transform: none;
}

/* ─── 23. TWEAKS PANEL ───────────────────────────────────────── */
.tweaks-panel {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  z-index: 999;
  display: none;
}

.tweaks-panel.open {
  display: block;
}

.tweaks-panel h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  margin-bottom: var(--space-md);
}

.tweak-row {
  margin-bottom: var(--space-md);
}

.tweak-row label {
  font-size: 11px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.tweak-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tweak-opts button {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--beige);
  color: var(--ink-soft);
  transition: all var(--t);
}

.tweak-opts button.active,
.tweak-opts button:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

/* ─── 24. RESPONSIVE — 1024px ────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .testimonials-track {
    animation-duration: 40s;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .chat-panel {
    display: none;
  }

  .chat-layout {
    grid-template-columns: 1fr;
  }

  .dash {
    grid-template-columns: 200px 1fr;
  }

  .product-grid ul.products,
  .related-products-grid ul.products,
  .product-grid:not(:has(ul.products)),
  .related-products-grid:not(:has(ul.products)) {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── 25. RESPONSIVE — 768px ─────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --gutter: 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: grid;
  }

  .lang-toggle {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: var(--space-lg);
    flex-wrap: wrap;
  }

  .cat-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .cat-tile {
    aspect-ratio: 16/9;
  }

  .testimonials-section {
    padding: 50px 0 40px;
  }

  .testimonial {
    width: 300px;
    padding: 22px 20px;
  }

  .testimonials-group {
    gap: 16px;
    padding-right: 16px;
  }

  .testimonials-track {
    animation-duration: 35s;
  }

  .astro-strip {
    grid-template-columns: 1fr;
  }

  .astro-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .listing-layout {
    display: block !important;
    width: 100% !important;
  }

  .pdp {
    grid-template-columns: 1fr;
  }

  .pdp-gallery {
    grid-template-columns: 1fr;
  }

  .pdp-thumbs {
    flex-direction: row;
  }

  .pdp-thumbs .t {
    width: 64px;
    flex-shrink: 0;
  }

  .form-page {
    grid-template-columns: 1fr;
  }

  .form-visual {
    display: none;
  }

  .form-side {
    max-width: 100%;
    padding: var(--space-xl) var(--gutter);
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .chat-layout {
    grid-template-columns: 1fr;
  }

  .chat-side {
    display: none;
  }

  .dash {
    grid-template-columns: 1fr;
  }

  .dash-side {
    position: static;
  }

  .product-grid ul.products,
  .related-products-grid ul.products,
  .product-grid:not(:has(ul.products)),
  .related-products-grid:not(:has(ul.products)) {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── 26. RESPONSIVE — 480px ─────────────────────────────────── */
@media (max-width: 480px) {

  .product-grid ul.products,
  .related-products-grid ul.products,
  .product-grid:not(:has(ul.products)),
  .related-products-grid:not(:has(ul.products)) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .pdp-cta {
    flex-direction: column;
  }

  .astro-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ─── 27. SCROLLBAR STYLING ──────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* ─── 28. SELECTION ──────────────────────────────────────────── */
::selection {
  background: var(--terracotta-soft);
  color: var(--terracotta-deep);
}

/* ─── 29. WOOCOMMERCE CHECKOUT ───────────────────────────────── */

/* Page wrapper */
.woocommerce-checkout .container,
.woocommerce-page .container {
  max-width: var(--container) !important;
}

/* Two-column layout: form | order review */
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  /* WooCommerce floats these — undo and use flex */
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-2xl);
  align-items: start;
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.woocommerce-checkout #customer_details {
  grid-column: 1;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(40, 40, 41, 0.05);
}

.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
}

.woocommerce-checkout #order_review {
  grid-column: 2;
  grid-row: 2;
}

/* Section headings */
.woocommerce-checkout h3,
.woocommerce-checkout #order_review_heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--line);
}

/* Form rows */
.woocommerce-checkout .form-row {
  margin-bottom: 14px;
}

.woocommerce-checkout .form-row label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  transition: border-color var(--t);
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  border-color: var(--terracotta);
  outline: none;
  box-shadow: 0 0 0 3px var(--terracotta-soft);
}

.woocommerce-checkout .form-row-wide {
  width: 100%;
  float: none;
}

.woocommerce-checkout .form-row-first {
  width: 48%;
  float: left;
}

.woocommerce-checkout .form-row-last {
  width: 48%;
  float: right;
}

/* Order review table */
.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.woocommerce-checkout-review-order-table thead tr th {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--beige);
  text-align: left;
}

.woocommerce-checkout-review-order-table tbody tr td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  color: var(--ink);
}

/* Fix: product name + description word-wrap in order summary */
.woocommerce-checkout-review-order-table .product-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  max-width: 220px;
  word-break: break-word;
}

.woocommerce-checkout-review-order-table .product-name .product-quantity {
  color: var(--muted);
  font-size: 12px;
}

/* Hide long product description in order summary */
.woocommerce-checkout-review-order-table .product-name .product-description,
.woocommerce-checkout-review-order-table dd.product-name .attachment-woocommerce_thumbnail+p,
.woocommerce-checkout-review-order-table p:not(.product-quantity) {
  display: none;
}

.woocommerce-checkout-review-order-table .product-total {
  text-align: right;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
}

.woocommerce-checkout-review-order-table tfoot tr td,
.woocommerce-checkout-review-order-table tfoot tr th {
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}

.woocommerce-checkout-review-order-table tfoot .order-total td,
.woocommerce-checkout-review-order-table tfoot .order-total th {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

/* Order product image in review */
.woocommerce-checkout-review-order-table img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  display: block;
}

/* Payment box */
.woocommerce-checkout #payment {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  overflow: hidden;
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: var(--space-md);
  border-bottom: 1px solid var(--line);
}

.woocommerce-checkout #payment ul.payment_methods li {
  padding: 10px;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--t);
}

.woocommerce-checkout #payment ul.payment_methods li:hover {
  background: var(--beige);
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
  accent-color: var(--terracotta);
}

.woocommerce-checkout #payment .payment_box {
  background: var(--beige);
  padding: var(--space-md);
  font-size: 13px;
  color: var(--ink-soft);
  border-radius: var(--radius);
  margin-top: 6px;
}

.woocommerce-checkout #payment .place-order {
  padding: var(--space-md);
}

.woocommerce-checkout #payment #place_order {
  width: 100%;
  padding: 14px 24px;
  background: var(--terracotta);
  color: var(--ivory);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}

.woocommerce-checkout #payment #place_order:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
}

/* WooCommerce notices */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  background: var(--beige);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius);
  padding: 12px var(--space-md);
  font-size: 13px;
  color: var(--ink);
  margin-bottom: var(--space-md);
  list-style: none;
}

.woocommerce-error {
  border-color: #e53e3e;
  background: #fff5f5;
  color: #c53030;
}

.woocommerce-message {
  border-color: var(--sage);
}

/* No payment methods message */
.woocommerce-checkout #payment .no-available-methods {
  padding: var(--space-md);
  text-align: center;
}

.woocommerce-checkout #payment .woocommerce-error {
  margin: var(--space-md);
}

.size-soma-product-card {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

/* Checkout responsive */
@media (max-width: 900px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout #order_review_heading {
    grid-column: 1;
    grid-row: auto;
  }

  .woocommerce-checkout #order_review {
    grid-column: 1;
    grid-row: auto;
  }
}

/* ─── Modern Gutenberg WooCommerce Checkout Block ────────────── */
.wp-block-woocommerce-checkout,
.wc-block-checkout {
  width: 100% !important;
  max-width: var(--container, 1200px) !important;
  margin: 0 auto !important;
  font-family: var(--font-body, 'IBM Plex Serif', serif) !important;
  color: var(--ink, #282829) !important;
}

/* 2-Column Grid Layout */
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
.wc-block-checkout .wc-block-components-sidebar-layout,
.wc-block-components-sidebar-layout.wc-block-checkout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 420px !important;
  gap: 40px !important;
  align-items: start !important;
  width: 100% !important;
  margin-top: 16px !important;
}

/* Main Form Column */
.wc-block-components-sidebar-layout .wc-block-components-main,
.wp-block-woocommerce-checkout-fields-block {
  display: flex !important;
  flex-direction: column !important;
  gap: 36px !important;
  width: 100% !important;
  position: sticky;
  top: 0;
}

/* Generous gap between all checkout blocks */
.wp-block-woocommerce-checkout-fields-block>div,
.wp-block-woocommerce-checkout-fields-block>fieldset {
  margin-bottom: 36px !important;
}

.wp-block-woocommerce-checkout-fields-block>div:last-child,
.wp-block-woocommerce-checkout-fields-block>fieldset:last-child {
  margin-bottom: 0 !important;
}

/* Outer block wrappers: transparent to eliminate double/nested borders */
.wp-block-woocommerce-checkout-contact-information-block,
.wp-block-woocommerce-checkout-shipping-address-block,
.wp-block-woocommerce-checkout-billing-address-block,
.wp-block-woocommerce-checkout-shipping-methods-block,
.wp-block-woocommerce-checkout-payment-block,
.wp-block-woocommerce-checkout-additional-information-block {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Individual Form Step Card Boxes */
.wc-block-components-checkout-step {
  background: #FFFFFF !important;
  border: 1.5px solid #4B4752 !important;
  border-radius: 18px !important;
  padding: 32px 36px !important;
  box-shadow: 0 4px 20px rgba(40, 40, 41, 0.05) !important;
  position: relative !important;
  margin-bottom: 20px !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.wc-block-components-checkout-step:hover {
  border-color: #282829 !important;
  box-shadow: 0 8px 28px rgba(40, 40, 41, 0.08) !important;
}

/* Standalone Blocks that might not wrap a .wc-block-components-checkout-step */
.wp-block-woocommerce-checkout-order-note-block,
.wp-block-woocommerce-checkout-terms-block {
  background: #FFFFFF !important;
  border: 1.5px solid #4B4752 !important;
  border-radius: 18px !important;
  padding: 28px 34px !important;
  box-shadow: 0 4px 20px rgba(40, 40, 41, 0.05) !important;
  box-sizing: border-box !important;
}

.wp-block-woocommerce-checkout-order-note-block .wc-block-components-checkout-step,
.wp-block-woocommerce-checkout-terms-block .wc-block-components-checkout-step {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Step Header & Title */

.wc-block-components-checkout-step__heading {
  font-family: var(--font-display, 'IBM Plex Serif', serif) !important;
  font-size: 21px !important;
  font-weight: 600 !important;
  color: #282829 !important;
  letter-spacing: -0.01em !important;
  padding-bottom: 14px !important;
  margin-bottom: 24px !important;
  border-bottom: 1.5px solid #4B4752 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.wc-block-components-checkout-step__description {
  font-size: 14px !important;
  color: #4B4752 !important;
  margin-top: -12px !important;
  margin-bottom: 20px !important;
  line-height: 1.5 !important;
}

/* Form Field Containers & Rows */
.wc-block-components-text-input,
.wc-blocks-components-select,
.wc-block-components-select,
.wc-block-components-combobox,
.wc-block-components-textarea,
.wc-block-components-country-input,
.wc-block-components-state-input {

  position: relative !important;
  border: none !important;
  background: transparent !important;
}


/* ALL Checkout Form Inputs — 100% CLEAR, VISIBLE, CRISP BORDERS */
.wc-block-components-text-input input,
.wc-block-components-text-input input[type="text"],
.wc-block-components-text-input input[type="email"],
.wc-block-components-text-input input[type="tel"],
.wc-block-components-text-input input[type="password"],
.wc-block-components-text-input input[type="number"],
.wc-block-components-text-input input[type="url"],
.wc-block-components-text-input .wc-block-components-text-input__input,
.wc-blocks-components-select .wc-blocks-components-select__select,
.wc-blocks-components-select__select,
.wc-block-components-select select,
.wc-block-components-country-input select,
.wc-block-components-state-input select,
.wc-block-components-combobox input,
.wc-block-components-combobox-control input,
.wc-block-components-textarea textarea,
.wp-block-woocommerce-checkout input[type="text"],
.wp-block-woocommerce-checkout input[type="email"],
.wp-block-woocommerce-checkout input[type="tel"],
.wp-block-woocommerce-checkout input[type="password"],
.wp-block-woocommerce-checkout select,
.wp-block-woocommerce-checkout textarea,
.wc-block-checkout input[type="text"],
.wc-block-checkout input[type="email"],
.wc-block-checkout input[type="tel"],
.wc-block-checkout input[type="password"],
.wc-block-checkout select,
.wc-block-checkout textarea,
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  width: 100% !important;
  background: #FFFFFF !important;
  border: 1.5px solid #4B4752 !important;
  border-radius: 10px !important;
  color: #282829 !important;
  font-size: 15px !important;
  font-family: var(--font-body, 'IBM Plex Serif', serif) !important;
  box-sizing: border-box !important;
  outline: none !important;
  box-shadow: 0 1px 3px rgba(40, 40, 41, 0.05) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__label {

  margin-left: 20px;
}

/* Height and padding specifics */
.wc-block-components-text-input input,
.wc-block-components-text-input .wc-block-components-text-input__input {
  height: 52px !important;
  padding: 16px 14px !important;
}

.wc-block-components-text-input.is-active input,
.wc-block-components-text-input.is-active .wc-block-components-text-input__input {
  padding-top: 24px !important;
  padding-bottom: 8px !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
}

.wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-select select,
.wc-block-components-country-input select,
.wc-block-components-state-input select {
  height: 52px !important;
  padding: 16px 14px !important;
  cursor: pointer !important;
}

.wc-block-components-textarea textarea {
  min-height: 100px !important;
  padding: 14px 16px !important;
  resize: vertical !important;
}

/* Active, Hover & Focus States */
.wc-block-components-text-input input:hover,
.wc-blocks-components-select .wc-blocks-components-select__select:hover,
.wc-block-components-textarea textarea:hover,
.wc-block-checkout input:hover,
.wc-block-checkout select:hover {
  border-color: #282829 !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-combobox input:focus,
.wc-blocks-components-select .wc-blocks-components-select__select:focus,
.wc-blocks-components-select__select:focus,
.wc-block-components-select select:focus,
.wc-block-components-country-input select:focus,
.wc-block-components-state-input select:focus,
.wc-block-components-textarea textarea:focus,
.wc-block-components-text-input .wc-block-components-text-input__input:focus,
.wc-block-checkout input:focus,
.wc-block-checkout select:focus,
.wc-block-checkout textarea:focus,
.wp-block-woocommerce-checkout input:focus,
.wp-block-woocommerce-checkout select:focus,
.wp-block-woocommerce-checkout textarea:focus,
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  border: 2px solid #282829 !important;
  background: #FFFFFF !important;
  outline: none !important;
  box-shadow: 0 0 0 3.5px rgba(75, 71, 82, 0.18) !important;
}

/* Labels */
.wc-block-components-text-input label,
.wc-blocks-components-select .wc-blocks-components-select__label,
.wc-block-components-select label,
.wc-block-components-combobox label {
  color: #4B4752 !important;
  font-family: var(--font-body, 'IBM Plex Serif', serif) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
}

.wc-block-components-text-input.is-active label {
  color: #282829 !important;
  font-weight: 600 !important;
}

/* Express Payment Block (Apple Pay / GPay / UPI) */
.wp-block-woocommerce-checkout-express-payment-block,
.wc-block-checkout__express-payment {
  background: #FFFFFF !important;
  border: 1.5px dashed #4B4752 !important;
  border-radius: 18px !important;
  padding: 24px 28px !important;
  text-align: center !important;
  box-shadow: 0 4px 16px rgba(40, 40, 41, 0.04) !important;
}

/* Radio Control Cards (Shipping Methods & Payment Methods) */
.wc-block-components-radio-control-accordion-option,
.wc-block-components-radio-control__option {
  background: #FFFFFF !important;
  border: 1.5px solid #4B4752 !important;
  border-radius: 12px !important;
  padding: 18px 22px !important;
  margin-bottom: 16px !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  box-shadow: 0 1px 4px rgba(40, 40, 41, 0.04) !important;
}

.wc-block-components-radio-control-accordion-option:hover,
.wc-block-components-radio-control__option:hover {
  border-color: #282829 !important;
  background: #FAF9F6 !important;
}

.wc-block-components-radio-control-accordion-option:has(input:checked),
.wc-block-components-radio-control__option:has(input:checked),
.wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-block-components-radio-control__option--checked-option-highlighted {
  border: 2px solid #282829 !important;
  background: #FFFFFF !important;
  box-shadow: 0 4px 18px rgba(40, 40, 41, 0.10) !important;
}

.wc-block-components-radio-control input[type="radio"] {
  accent-color: #282829 !important;
  width: 18px !important;
  height: 18px !important;
  margin-right: 12px !important;
}

/* ── Order Summary Sidebar ── */
.wc-block-components-sidebar,
.wp-block-woocommerce-checkout-totals-block {
  position: sticky !important;
  top: 96px !important;
  width: 100% !important;
}

.wp-block-woocommerce-checkout-order-summary-block {
  background: #FFFFFF !important;
  border: 1.5px solid #4B4752 !important;
  border-radius: 18px !important;
  padding: 34px 32px !important;
  box-shadow: 0 6px 24px rgba(40, 40, 41, 0.06) !important;
  box-sizing: border-box !important;
}

.wp-block-woocommerce-checkout-order-summary-heading-block h2,
.wc-block-checkout__totals-title {
  font-family: var(--font-display, 'IBM Plex Serif', serif) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #282829 !important;
  margin: 0 0 20px 0 !important;
  padding-bottom: 14px !important;
  border-bottom: 1.5px solid #4B4752 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  display: block !important;
}

/* Coupon Form in Order Summary */
.wc-block-components-totals-coupon {
  margin: 16px 0 !important;
}

.wc-block-components-totals-coupon__input input,
.wc-block-components-totals-coupon input {
  border: 1.5px solid #4B4752 !important;
  border-radius: 10px !important;
  background: #FFFFFF !important;
  height: 46px !important;
  padding: 10px 14px !important;
}

/* Cart Items in Checkout Summary */
.wc-block-components-order-summary-item {
  display: flex !important;
  gap: 14px !important;
  padding: 14px 0 !important;
  border-bottom: 1px dashed #757575 !important;

  flex-direction: column;
}


.wc-block-components-order-summary-item__description {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #282829 !important;
  flex: 1 !important;
}

.wc-block-components-order-summary-item__quantity {
  background: #282829 !important;
  color: #FFFCC6 !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  padding: 2px 9px !important;
  border-radius: 999px !important;
  margin-left: 6px !important;
}

/* Totals Breakdown Rows */
.wc-block-components-totals-item {
  display: flex !important;
  justify-content: space-between !important;
  padding: 12px 0 !important;
  font-size: 14.5px !important;
  color: #4B4752 !important;
  border-bottom: 1px dashed #757575 !important;
}

.wc-block-components-totals-item__value {
  color: #282829 !important;
  font-weight: 600 !important;
}

/* Grand Total Footer */
.wc-block-components-totals-footer-item {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border-top: 2px solid #282829 !important;
  border-bottom: none !important;
  padding-top: 18px !important;
  margin-top: 14px !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-family: var(--font-display) !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #282829 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-family: var(--font-display) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #282829 !important;
}

/* Place Order CTA Button */
.wc-block-components-checkout-place-order-button,
.wc-block-checkout__actions_row button,
.wc-block-checkout__actions button[type="submit"] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  text-align: center !important;
  padding: 17px 32px !important;
  background: #282829 !important;
  color: #FFFCC6 !important;
  border: none !important;
  border-radius: 14px !important;
  font-family: var(--font-body, 'IBM Plex Serif', serif) !important;
  font-size: 16.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  margin-top: 24px !important;
  box-shadow: 0 6px 24px rgba(40, 40, 41, 0.28) !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
}

.wc-block-components-checkout-place-order-button:hover,
.wc-block-checkout__actions_row button:hover,
.wc-block-checkout__actions button[type="submit"]:hover {
  background: #4B4752 !important;
  color: #FFFCC6 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(75, 71, 82, 0.38) !important;
}

/* Trust & Vedic Assurance Badge */
.wp-block-woocommerce-checkout-actions-block::after,
.wc-block-checkout__actions::after {
  content: "✦ 256-Bit SSL Encrypted & 100% Secure Checkout \A ✦ Free Insured Express Delivery Across India \A ✦ Consecrated & Energized by Vedic Priests";
  white-space: pre-line;
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.8;
  color: #4B4752;
  letter-spacing: 0.04em;
  margin-top: 20px;
  padding: 16px 20px;
  background: #FAF9F6;
  border: 1.5px dashed #4B4752;
  border-radius: 14px;
}

/* Responsive Tablet & Mobile */
@media (max-width: 960px) {

  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
  .wc-block-checkout .wc-block-components-sidebar-layout,
  .wc-block-components-sidebar-layout.wc-block-checkout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .wc-block-components-sidebar,
  .wp-block-woocommerce-checkout-totals-block {
    position: static !important;
  }

  .wc-block-components-checkout-step,
  .wp-block-woocommerce-checkout-order-summary-block {
    padding: 24px 20px !important;
  }
}

/* ─── 30. WOOCOMMERCE CART & ORDER PAGES ─────────────────────── */

/* Cart table */
.woocommerce-cart-form table.shop_table,
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.woocommerce table.shop_table th {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px;
  background: var(--beige);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.woocommerce table.shop_table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  vertical-align: middle;
}

.woocommerce table.shop_table .product-thumbnail img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.woocommerce table.shop_table .product-name a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-total {
  font-family: var(--font-display);
  font-size: 16px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 380px;
  margin-left: auto;
}

.woocommerce-cart .cart-collaterals h2 {
  font-size: 20px;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--line);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: var(--terracotta);
  color: var(--ivory);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  margin-top: var(--space-md);
  transition: background var(--t);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
  background: var(--terracotta-deep);
}

/* ═══════════════════════════════════════════════════════════════
   REDESIGN — CONSULTATION · ARCHIVE · CHAT PRODUCTS · CART
   ═══════════════════════════════════════════════════════════════ */

/* ─── CONSULTATION: Animated celestial right panel ──────────── */
.consult-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.star-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-soft);
  animation: starTwinkle 3s ease-in-out infinite;
}

@keyframes starTwinkle {

  0%,
  100% {
    opacity: .25;
    transform: scale(1);
  }

  50% {
    opacity: .85;
    transform: scale(1.8);
  }
}

.consult-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(75, 71, 82, 0.14), transparent 68%);
  pointer-events: none;
  animation: glowBreath 5s ease-in-out infinite;
}

@keyframes glowBreath {

  0%,
  100% {
    opacity: .7;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

.orbit-wrap {
  position: relative;
  width: 340px;
  height: 340px;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(75, 71, 82, 0.28);
  animation: spinOrbit linear infinite;
  transform-origin: center center;
}

.orbit-ring.r1 {
  width: 340px;
  height: 340px;
  margin: -170px 0 0 -170px;
  animation-duration: 52s;
}

.orbit-ring.r2 {
  width: 268px;
  height: 268px;
  margin: -134px 0 0 -134px;
  animation-duration: 36s;
  animation-direction: reverse;
}

@keyframes spinOrbit {
  to {
    transform: rotate(360deg);
  }
}

.orbit-planet {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.orbit-planet.gold {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.orbit-planet.ter {
  background: var(--terracotta-soft);
  box-shadow: 0 0 6px rgba(40, 40, 41, 0.6);
}

.chart-wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(40, 40, 41, 0.14), 0 0 0 8px rgba(255, 252, 198, 0.6);
  overflow: hidden;
}

.chart-om {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #4B4752, #282829 80%);
  box-shadow: 0 8px 32px rgba(40, 40, 41, 0.35);
  display: grid;
  place-items: center;
  font-family: var(--font-hi);
  font-size: 32px;
  color: var(--white);
  animation: omPulse 4s ease-in-out infinite;
}

@keyframes omPulse {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(40, 40, 41, 0.35);
  }

  50% {
    box-shadow: 0 8px 52px rgba(75, 71, 82, 0.65);
  }
}

.chart-caption {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Consultation form input focus ring */
.form-side .input:focus {
  border-color: var(--terracotta) !important;
  box-shadow: 0 0 0 3px rgba(75, 71, 82, 0.15) !important;
}

/* ─── ARCHIVE: Filter sidebar ───────────────────────────────── */
.filters {
  position: sticky;
  top: 88px;
  align-self: start;
  max-height: calc(100vh - 108px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 20px;
}

.filters::-webkit-scrollbar {
  width: 4px;
}

.filters::-webkit-scrollbar-track {
  background: transparent;
}

.filters::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 2px;
}

/* Chart-match AI filter group — special callout */
.filter-match-group {
  background: linear-gradient(135deg, rgba(40, 40, 41, 0.05), rgba(75, 71, 82, 0.04));
  border: 1px solid var(--terracotta-soft);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: var(--space-md);
}

.filter-match-group h5 {
  color: var(--terracotta);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-match-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 4px;
  padding: 2px 6px;
  letter-spacing: .04em;
  line-height: 1.4;
}

/* Active filter chips */
.active-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 4px;
}

.afc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--terracotta-soft);
  color: var(--terracotta-deep);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
}

.afc .x {
  font-size: 14px;
  opacity: .7;
  line-height: 1;
}

.afc:hover {
  background: var(--terracotta);
  color: var(--white);
}

.afc:hover .x {
  opacity: 1;
}

/* AI nudge card — dark theme */
.ai-nudge-card {
  background: linear-gradient(140deg, var(--ink) 0%, #3C2E1E 100%);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-top: 12px;
}

.ai-nudge-card .nudge-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.ai-nudge-card .nudge-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 5px;
}

.ai-nudge-card .nudge-sub {
  font-size: 12px;
  color: rgba(250, 246, 236, .55);
  line-height: 1.55;
  margin-bottom: 14px;
}

.ai-nudge-card .nudge-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--t);
  width: 100%;
  justify-content: center;
}

.ai-nudge-card .nudge-btn:hover {
  background: var(--terracotta-deep);
}

/* ─── AI CHAT: Product recommendation cards ─────────────────── */
.ai-product-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 10px;
  margin-top: 14px;
  scrollbar-width: none;
}

.ai-product-row::-webkit-scrollbar {
  display: none;
}

.ai-product-card {
  flex: none;
  width: 170px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}

.ai-product-card:hover {
  border-color: var(--terracotta);
  box-shadow: 0 6px 20px rgba(40, 40, 41, 0.12);
  transform: translateY(-2px);
}

.ai-product-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--beige);
}

.ai-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.ai-product-card:hover .ai-product-img-wrap img {
  transform: scale(1.05);
}

.ai-product-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.ai-product-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ai-product-price {
  font-size: 13px;
  color: var(--terracotta);
  font-weight: 600;
}

.ai-product-cta {
  display: block;
  margin-top: auto;
  padding-top: 10px;
  padding-bottom: 2px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .02em;
  border-top: 1px solid var(--line-soft);
}

.ai-product-card:hover .ai-product-cta {
  color: var(--terracotta-deep);
}

/* ─── CART: Full Layout & Block Support ────────────────────── */
.woocommerce-cart .container {
  max-width: var(--container, 1200px) !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.woocommerce-cart .entry-content {
  width: 100% !important;
  max-width: 100% !important;
}

/* Hide redundant block title since page.php renders custom header */
.wp-block-woocommerce-cart__title,
.wc-block-cart__title {
  display: none !important;
}

/* ── 1. Classic Cart Form & Layout ── */
.woocommerce-cart .woocommerce {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 380px !important;
  gap: 32px !important;
  align-items: start !important;
}

.woocommerce-cart .woocommerce-cart-form {
  grid-column: 1 !important;
  width: 100% !important;
}

.woocommerce-cart .cart-collaterals {
  grid-column: 2 !important;
  position: sticky !important;
  top: 96px !important;
  width: 100% !important;
}

/* Classic Cart Table */
.woocommerce-cart-form table.shop_table,
.woocommerce table.shop_table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  font-size: 14px !important;
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-xl) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-sm) !important;
  margin-bottom: 24px !important;
}

.woocommerce table.shop_table th {
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  padding: 16px 24px !important;
  background: var(--beige, #F5F4EE) !important;
  border-bottom: 1px solid var(--line) !important;
  text-align: left !important;
  font-weight: 600 !important;
}

.woocommerce table.shop_table td {
  padding: 20px 24px !important;
  border-bottom: 1px solid var(--line-soft) !important;
  color: var(--ink) !important;
  vertical-align: middle !important;
}

.woocommerce table.shop_table tbody tr:last-child td {
  border-bottom: none !important;
}

.woocommerce table.shop_table .product-thumbnail {
  width: 96px !important;
}

.woocommerce table.shop_table .product-thumbnail img {
  width: 80px !important;
  height: 80px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border-radius: var(--radius) !important;
  border: 1px solid var(--line) !important;
  display: block !important;
  background: #282829 !important;
}

.woocommerce table.shop_table .product-name a {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  text-decoration: none !important;
  transition: color var(--t) !important;
  display: inline-block !important;
  line-height: 1.35 !important;
}

.woocommerce table.shop_table .product-name a:hover {
  color: var(--terracotta) !important;
}

.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal {
  font-family: var(--font-display) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
}

.woocommerce table.shop_table .product-remove a.remove {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  color: var(--muted) !important;
  font-size: 18px !important;
  line-height: 1 !important;
  transition: all var(--t) !important;
  text-decoration: none !important;
}

.woocommerce table.shop_table .product-remove a.remove:hover {
  background: var(--beige, #F5F4EE) !important;
  color: var(--terracotta) !important;
  transform: scale(1.1) !important;
}

/* Classic Quantity Selector */
.woocommerce table.shop_table .quantity input.qty {
  width: 56px !important;
  height: 40px !important;
  border: 1.5px solid var(--line) !important;
  border-radius: var(--radius) !important;
  text-align: center !important;
  font-family: var(--font-mono) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  background: var(--white) !important;
}

/* Classic Cart Coupon & Actions Bar */
.woocommerce-cart-form td.actions {
  padding: 18px 24px !important;
  background: var(--beige, #F5F4EE) !important;
}

.woocommerce-cart-form .coupon {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

.woocommerce-cart-form .coupon input[type="text"] {
  padding: 10px 16px !important;
  border: 1.5px solid var(--line) !important;
  border-radius: var(--radius) !important;
  background: var(--white) !important;
  color: var(--ink) !important;
  font-size: 14px !important;
  font-family: var(--font-mono) !important;
  letter-spacing: 0.04em !important;
  min-width: 180px !important;
  transition: border-color var(--t) !important;
}

.woocommerce-cart-form .coupon input[type="text"]:focus {
  border-color: var(--terracotta) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(75, 71, 82, 0.15) !important;
}

.woocommerce-cart-form .coupon button.button {
  padding: 11px 22px !important;
  border-radius: var(--radius) !important;
  background: var(--ink) !important;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  border: none !important;
  cursor: pointer !important;
  transition: background var(--t) !important;
}

.woocommerce-cart-form .coupon button.button:hover {
  background: var(--terracotta) !important;
}

.woocommerce-cart-form button[name="update_cart"] {
  padding: 11px 22px !important;
  border-radius: var(--radius) !important;
  background: var(--white) !important;
  color: var(--ink) !important;
  border: 1.5px solid var(--line) !important;
  font-family: var(--font-body) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  cursor: pointer !important;
  transition: all var(--t) !important;
}

.woocommerce-cart-form button[name="update_cart"]:hover {
  border-color: var(--terracotta) !important;
  color: var(--terracotta) !important;
  background: var(--white) !important;
}

/* Classic Cart Totals Card */
.woocommerce-cart .cart-collaterals .cart_totals {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-xl) !important;
  padding: 28px !important;
  max-width: none !important;
  margin-left: 0 !important;
  box-shadow: var(--shadow-sm) !important;
  box-sizing: border-box !important;
}

.woocommerce-cart .cart_totals h2 {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  margin: 0 0 20px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid var(--line) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

.woocommerce-cart .cart_totals table.shop_table {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  margin-bottom: 0 !important;
}

.woocommerce-cart .cart_totals .shop_table td,
.woocommerce-cart .cart_totals .shop_table th {
  padding: 12px 0 !important;
  border: none !important;
  border-bottom: 1px dashed var(--line-soft) !important;
  background: transparent !important;
  font-size: 14.5px !important;
  color: var(--ink-soft) !important;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  border-top: 1.5px solid var(--line) !important;
  border-bottom: none !important;
  padding-top: 18px !important;
  margin-top: 8px !important;
}

.woocommerce-cart .cart_totals .order-total td {
  color: var(--terracotta) !important;
  font-size: 24px !important;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  text-align: center !important;
  padding: 16px 28px !important;
  background: #282829 !important;
  color: #FFFCC6 !important;
  border-radius: var(--radius-lg, 14px) !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  margin-top: 20px !important;
  box-shadow: 0 6px 22px rgba(40, 40, 41, 0.25) !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
  background: #4B4752 !important;
  color: #FFFCC6 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(75, 71, 82, 0.35) !important;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image {
  margin-top: 8px;
  padding-bottom: 16px;
  position: relative;
  width: 100%;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image>img {
  max-width: 100%;
  width: 100%;
}

/* ── 2. Modern WooCommerce Cart Block (Gutenberg) ── */
.wp-block-woocommerce-cart,
.wc-block-cart {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  font-family: var(--font-body);
  color: var(--ink);
}

/* 2-column grid layout for cart block */
.wp-block-woocommerce-cart .wp-block-woocommerce-filled-cart-block,
.wc-block-cart.wp-block-woocommerce-cart,
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout,
.wc-block-components-sidebar-layout.wc-block-cart {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 380px !important;
  gap: 32px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* Left Column: Items */
.wc-block-cart__main,
.wp-block-woocommerce-cart-items-block,
.wc-block-components-main.wc-block-cart__main {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Right Column: Totals Sidebar */
.wc-block-cart__sidebar,
.wp-block-woocommerce-cart-totals-block,
.wc-block-components-sidebar.wc-block-cart__sidebar {
  grid-column: 2 !important;
  width: 100% !important;
  max-width: 100% !important;
  position: sticky !important;
  top: 96px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Items Card in Block */
.wc-block-cart-items,
table.wc-block-cart-items,
.wp-block-woocommerce-cart-line-items-block table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-xl) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-sm) !important;
  padding: 0 !important;
  margin: 0 0 24px 0 !important;
}


.wc-block-cart-items__header,
.wc-block-cart-items thead,
.wc-block-cart-items thead tr,
.wc-block-cart-items thead th {
  background: var(--beige, #F5F4EE) !important;
  border-bottom: 1px solid var(--line) !important;
  padding: 16px 24px !important;
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: var(--muted) !important;
  text-align: left !important;
}

.wc-block-cart-items__row,
.wc-block-cart-items tbody tr {
  padding: 24px !important;
  border-bottom: 1px solid var(--line-soft) !important;
  transition: background var(--t) ease !important;
}

.wc-block-cart-items__row:last-child,
.wc-block-cart-items tbody tr:last-child {
  border-bottom: none !important;
}

.wc-block-cart-items__row:hover,
.wc-block-cart-items tbody tr:hover {
  background: rgba(245, 244, 238, 0.45) !important;
}

/* Product thumbnail in block */
.wc-block-cart-item__image,
.wc-block-components-product-image {
  width: 88px !important;
  min-width: 88px !important;
  height: 88px !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  background: #282829 !important;
  border: 1px solid var(--line) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.wc-block-cart-item__image img,
.wc-block-components-product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: calc(var(--radius) - 1px) !important;
  border: none !important;
}

/* Product title & metadata in block */
.wc-block-components-product-name,
.wc-block-cart-item__wrap .wc-block-components-product-name {
  font-family: var(--font-display) !important;
  font-size: 19px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  text-decoration: none !important;
  line-height: 1.35 !important;
  display: inline-block !important;
  transition: color var(--t) !important;
}

.wc-block-components-product-name:hover {
  color: var(--terracotta) !important;
}

.wc-block-components-product-metadata,
.wc-block-cart-item__description {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: var(--ink-soft) !important;
  margin-top: 4px !important;
  max-width: 480px !important;
}

/* Product price in block */
.wc-block-components-product-price {
  font-family: var(--font-display) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
}

.wc-block-components-product-price del {
  color: var(--muted) !important;
  font-size: 13.5px !important;
  margin-right: 6px !important;
}

.wc-block-components-product-price ins {
  text-decoration: none !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
}

.wc-block-components-sale-badge,
.wc-block-cart-item__sale-badge,
.wc-block-cart-item__discount-badge {
  display: inline-flex !important;
  align-items: center !important;
  background: var(--line, #F5F4EE) !important;
  color: var(--terracotta-soft) !important;
  border: 1px solid var(--terracotta-soft) !important;
  border-radius: 999px !important;
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 2px 10px !important;
  margin-left: 8px !important;
  vertical-align: middle !important;
}

/* Quantity input in block */
.wc-block-components-quantity-selector {
  border: 1.5px solid var(--line) !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  background: var(--white) !important;
  display: inline-flex !important;
  align-items: center !important;
  height: 38px !important;
  box-shadow: 0 1px 2px rgba(40, 40, 41, 0.04) !important;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  font-family: var(--font-mono) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  width: 44px !important;
  height: 38px !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  width: 34px !important;
  height: 38px !important;
  background: var(--beige, #F5F4EE) !important;
  color: var(--ink) !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all var(--t) !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:hover {
  background: var(--terracotta) !important;
  color: #ffffff !important;
}

/* Remove button in block */
.wc-block-cart-item__remove-link {
  color: var(--muted) !important;
  font-size: 13px !important;
  font-family: var(--font-body) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  transition: all var(--t) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  padding: 4px 8px !important;
  border-radius: var(--radius-sm) !important;
  width: 50px !important;
}

.wc-block-cart-item__remove-link:hover {
  color: var(--terracotta) !important;
  background: var(--beige, #F5F4EE) !important;
}

/* ── Block Totals Sidebar (Single Clean Container, NO nested pills) ── */
.wp-block-woocommerce-cart-order-summary-block {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-xl) !important;
  padding: 28px !important;
  box-shadow: var(--shadow-sm) !important;
  box-sizing: border-box !important;
  margin-bottom: 20px !important;
}

/* Reset any nested borders or padding on children */
.wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-wrapper,
.wp-block-woocommerce-cart-order-summary-totals-block,
.wp-block-woocommerce-cart-order-summary-coupon-form-block,
.wc-block-cart-order-summary-subtotal-block,
.wc-block-cart-order-summary-discount-block,
.wc-block-cart-order-summary-shipping-block,
.wc-block-cart-order-summary-taxes-block {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Order Summary Title */
.wc-block-cart__totals-title,
.wp-block-woocommerce-cart-order-summary-heading-block h2 {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  margin: 0 0 20px 0 !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid var(--line) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  display: block !important;
}

/* Coupon Accordion & Form: FIX VERTICAL TEXT WRAP */
.wp-block-woocommerce-cart-order-summary-coupon-form-block {
  margin: 18px 0 !important;
  width: 100% !important;
}

.wc-block-components-totals-coupon {
  margin: 0 !important;
  width: 100% !important;
}

.wc-block-components-totals-coupon .wc-block-components-panel__button,
.wc-block-components-totals-coupon button[aria-expanded] {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 16px !important;
  background: var(--beige, #F5F4EE) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  white-space: nowrap !important;
  text-align: left !important;
  cursor: pointer !important;
  transition: all var(--t) !important;
}

.wc-block-components-totals-coupon .wc-block-components-panel__button:hover,
.wc-block-components-totals-coupon button[aria-expanded]:hover {
  border-color: var(--terracotta) !important;
  color: var(--terracotta) !important;
}

.wc-block-components-totals-coupon__form,
.wc-block-components-totals-coupon .wc-block-components-totals-coupon__form {
  display: flex !important;
  gap: 8px !important;
  margin-top: 12px !important;
  width: 100% !important;
}

.wc-block-components-totals-coupon input[type="text"] {
  flex: 1 !important;
  border: 1.5px solid var(--line) !important;
  border-radius: var(--radius) !important;
  padding: 10px 14px !important;
  font-size: 13.5px !important;
  background: var(--white) !important;
  color: var(--ink) !important;
  font-family: var(--font-mono) !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

.wc-block-components-totals-coupon input[type="text"]:focus {
  border-color: var(--terracotta) !important;
  box-shadow: 0 0 0 3px rgba(75, 71, 82, 0.15) !important;
  outline: none !important;
}

.wc-block-components-totals-coupon button.wc-block-components-totals-coupon__button,
.wc-block-components-totals-coupon button[type="submit"] {
  background: var(--ink) !important;
  color: #ffffff !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 10px 18px !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: all var(--t) !important;
}

.wc-block-components-totals-coupon button:hover {
  background: var(--terracotta) !important;
}

/* Totals Line Items */
.wc-block-components-totals-item {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 12px 0 !important;
  border-bottom: 1px dashed var(--line-soft) !important;
  font-size: 14.5px !important;
  color: var(--ink-soft) !important;
  width: 100% !important;
}

.wc-block-components-totals-item .wc-block-components-totals-item__label {
  color: var(--ink-soft) !important;
}

.wc-block-components-totals-item .wc-block-components-totals-item__value {
  font-weight: 600 !important;
  color: var(--ink) !important;
}

/* Final Estimated Total Row */
.wc-block-components-totals-footer-item,
.wc-block-components-totals-item.wc-block-components-totals-footer-item {
  border-top: 1.5px solid var(--line) !important;
  border-bottom: none !important;
  padding-top: 18px !important;
  margin-top: 12px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-family: var(--font-display) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--terracotta) !important;
}

/* Proceed to Checkout Button — Full Width & Luxurious */
.wp-block-woocommerce-proceed-to-checkout-block,
.wc-block-cart__submit {
  margin-top: 20px !important;
  width: 100% !important;
}

.wc-block-cart__submit-button,
.wc-block-components-checkout-button,
.wp-block-woocommerce-cart a.wc-block-cart__submit-button,
.wp-block-woocommerce-cart .wc-block-components-checkout-button a,
.wp-block-woocommerce-proceed-to-checkout-block a,
.wp-block-woocommerce-proceed-to-checkout-block button {
  background: #282829 !important;
  color: #FFFCC6 !important;
  border: none !important;
  border-radius: var(--radius-lg, 14px) !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  padding: 16px 28px !important;
  width: 100% !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  box-shadow: 0 6px 22px rgba(40, 40, 41, 0.25) !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-button:hover,
.wp-block-woocommerce-cart a.wc-block-cart__submit-button:hover,
.wp-block-woocommerce-proceed-to-checkout-block a:hover,
.wp-block-woocommerce-proceed-to-checkout-block button:hover {
  background: #4B4752 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(75, 71, 82, 0.35) !important;
  color: #FFFCC6 !important;
}

/* Trust Badges below Checkout Button */
.wc-block-cart__sidebar::after,
.wp-block-woocommerce-cart-totals-block::after,
.woocommerce-cart .cart-collaterals::after {
  content: "✦ 100% Authentic Vedic Gemstones & Herbs \A ✦ Prana Pratishtha & Energized before Dispatch \A ✦ Free Insured Shipping Across India \A ✦ 256-Bit SSL Encrypted Checkout";
  white-space: pre-line;
  display: block;
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-align: left;
  line-height: 1.7;
}

/* ── 3. Empty Cart State (Both Block & Classic) ── */
.with-empty-cart-icon::before,
.wc-block-cart__empty-cart__title::before,
.wp-block-woocommerce-empty-cart-block .with-empty-cart-icon::before {
  display: none !important;
  content: none !important;
}

.wp-block-woocommerce-empty-cart-block {
  max-width: 680px !important;
  margin: 24px auto 44px !important;
  padding: 48px 32px !important;
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow-sm) !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title,
.wp-block-woocommerce-empty-cart-block h2:first-of-type {
  font-family: var(--font-display) !important;
  font-size: clamp(26px, 3.5vw, 34px) !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.25 !important;
}

/* Elegant subtitle message for empty cart */
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title::after {
  content: "Looks like you haven't added any sacred remedies to your cart yet. Explore our newly consecrated arrivals below.";
  display: block;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1.6;
}

/* HIDE 'New in store' heading, separator, and default products in empty cart block */
.wp-block-woocommerce-empty-cart-block hr,
.wp-block-woocommerce-empty-cart-block hr.is-style-dots,
.wp-block-woocommerce-empty-cart-block h2:not(:first-of-type),
.wp-block-woocommerce-empty-cart-block ul.wc-block-grid__products,
.wp-block-woocommerce-empty-cart-block .wc-block-grid,
.wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Classic Empty Cart notice */
.woocommerce .cart-empty,
p.cart-empty {
  text-align: center !important;
  padding: 48px 24px 16px !important;
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0 !important;
  margin: 20px auto 0 !important;
  max-width: 640px !important;
  font-family: var(--font-display) !important;
  font-size: 24px !important;
  color: var(--ink) !important;
}

.woocommerce .return-to-shop,
p.return-to-shop {
  text-align: center !important;
  padding: 0 24px 48px !important;
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-top: none !important;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl) !important;
  margin: 0 auto 48px !important;
  max-width: 640px !important;
}

.woocommerce .return-to-shop a.button,
.wc-block-cart__empty-cart a.wc-block-components-button {
  background: #282829 !important;
  color: #FFFCC6 !important;
  padding: 14px 32px !important;
  border-radius: var(--radius) !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  text-decoration: none !important;
  display: inline-flex !important;
  transition: all var(--t) !important;
  box-shadow: 0 4px 16px rgba(40, 40, 41, 0.25) !important;
}

.woocommerce .return-to-shop a.button:hover,
.wc-block-cart__empty-cart a.wc-block-components-button:hover {
  background: #4B4752 !important;
  color: #FFFCC6 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(75, 71, 82, 0.35) !important;
}

/* ── 4. Responsive: Tablet & Mobile ── */
@media (max-width: 960px) {

  .woocommerce-cart .woocommerce,
  .wp-block-woocommerce-cart .wp-block-woocommerce-filled-cart-block,
  .wc-block-cart.wp-block-woocommerce-cart,
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout,
  .wc-block-components-sidebar-layout.wc-block-cart {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .woocommerce-cart .cart-collaterals,
  .wc-block-cart__sidebar,
  .wp-block-woocommerce-cart-totals-block,
  .wc-block-components-sidebar.wc-block-cart__sidebar {
    grid-column: 1 !important;
    position: static !important;
  }

  .woocommerce table.shop_table {
    display: block !important;
    overflow-x: auto !important;
  }

  .wp-block-woocommerce-empty-cart-block ul.wc-block-grid__products {
    grid-template-columns: 1fr !important;
  }
}

/* ─── CHECKOUT: Sticky order summary + better fields ────────── */
.woocommerce-checkout .woocommerce {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-xl) var(--gutter);
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-template-areas:
    "billing  summary"
    "payment  summary";
  gap: var(--space-xl);
  align-items: start;
}

.woocommerce-checkout #customer_details {
  grid-area: billing;
}

.woocommerce-checkout #payment {
  grid-area: payment;
}

.woocommerce-checkout #order_review_heading {
  display: none;
}

.woocommerce-checkout #order_review {
  grid-area: summary;
  position: sticky;
  top: 88px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.woocommerce-checkout .form-row-wide {
  grid-column: 1 / -1;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  padding: 10px 14px !important;
  background: var(--white) !important;
  color: var(--ink) !important;
  width: 100% !important;
  font-size: 14px !important;
  transition: border-color var(--t) !important;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  border-color: var(--terracotta) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(200, 85, 61, .08) !important;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}

/* Checkout trust row */
.woocommerce-checkout .soma-checkout-trust {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
  padding: 0 var(--space-md) var(--space-md);
}

.woocommerce-checkout .soma-checkout-trust span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.woocommerce-checkout #payment .place-order {
  padding: var(--space-md) var(--space-md) 0;
}

.woocommerce-checkout #payment #place_order {
  margin-bottom: 0;
}

/* Override checkout responsive breakpoint */
@media (max-width: 900px) {
  .woocommerce-cart .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-cart .cart-collaterals {
    grid-column: 1;
    position: static;
  }

  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
    grid-template-areas: "billing" "payment" "summary";
  }

  .woocommerce-checkout #order_review {
    grid-area: summary;
    position: static;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   COMPONENT CLASSES — extracted from inline styles
   All widths/max-widths in % or clamp(); no px for layout sizing
   ═══════════════════════════════════════════════════════════════ */

/* ─── CTA Block ───────────────────────────────────────────────── */
.cta-block {
  background: var(--ink);
  color: var(--ivory);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5%, 56px) clamp(24px, 4%, 48px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(24px, 4%, 40px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  right: -5%;
  top: -12%;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--terracotta) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.cta-text {
  position: relative;
}

.cta-text h2 {
  color: var(--ivory);
  font-size: clamp(24px, 3.5vw, 42px);
  margin-bottom: 10px;
}

.cta-text p {
  opacity: 0.7;
  max-width: 42ch;
  line-height: 1.65;
}

.cta-text .btn {
  margin-top: 20px;
}

.cta-om {
  position: relative;
  aspect-ratio: 1;
  max-width: 70%;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-hi);
  font-size: clamp(56px, 7vw, 96px);
  color: var(--gold-soft);
}

.cta-om-ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

/* ─── Full-width CTA Section (Cinematic Hero Texture) ────────── */
.cta-fullwidth {
  position: relative;
  width: 100%;
  padding: 85px 0 90px;
  background-color: #1E1C20;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #FFFFFF;
  border-top: 1px solid rgba(75, 71, 82, 0.45);
  border-bottom: 1px solid rgba(75, 71, 82, 0.45);
}

.cta-fullwidth::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 50%, rgba(255, 252, 198, 0.09) 0%, transparent 60%),
    radial-gradient(circle at 10% 85%, rgba(75, 71, 82, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, rgba(30, 28, 32, 0.55) 0%, transparent 25%, transparent 75%, rgba(30, 28, 32, 0.75) 100%);
  pointer-events: none;
  z-index: 1;
}

.cta-fullwidth-container {
  position: relative;
  z-index: 2;
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: 0 var(--gutter, 24px);
}

.cta-fullwidth-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-fullwidth-content {
  position: relative;
}

.cta-eyebrow {
  display: flex;
  align-items: center;
  font-family: var(--font-mono, monospace);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFCC6;
  margin-bottom: 18px;
}

.cta-fullwidth-title {
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.cta-fullwidth-desc {
  font-family: var(--font-body, 'IBM Plex Serif', serif);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
  margin: 0 0 28px 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.cta-fullwidth-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-fullwidth-om-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cta-fullwidth-om {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 252, 198, 0.35);
  display: grid;
  place-items: center;
  font-family: var(--font-hi, sans-serif);
  font-size: 96px;
  color: #FFFCC6;
  text-shadow: 0 0 24px rgba(255, 252, 198, 0.4);
  box-shadow: 0 0 45px rgba(255, 252, 198, 0.10), inset 0 0 30px rgba(255, 252, 198, 0.06);
  background: radial-gradient(circle, rgba(255, 252, 198, 0.05) 0%, transparent 70%);
}

.cta-fullwidth-om-ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 252, 198, 0.30);
  pointer-events: none;
  animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .cta-fullwidth {
    padding: 60px 0 65px;
  }

  .cta-fullwidth-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .cta-eyebrow {
    justify-content: center;
  }

  .cta-fullwidth-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-fullwidth-actions {
    justify-content: center;
  }

  .cta-fullwidth-om-wrap {
    justify-content: center;
  }

  .cta-fullwidth-om {
    width: 180px;
    height: 180px;
    font-size: 72px;
  }
}

/* ─── Astrologers section ─────────────────────────────────────── */
.astro-strip h2 {
  font-size: clamp(22px, 3vw, 36px);
  margin: 12px 0;
}

.astro-strip>div>p {
  color: var(--ink-soft);
  max-width: 36ch;
  line-height: 1.65;
}

.astro-strip>div>.btn {
  margin-top: 18px;
}

/* ─── Footer ──────────────────────────────────────────────────── */
.logo {
  display: inline-flex;
}

.footer .logo {
  margin-bottom: 16px;
}

.logo small {
  color: var(--gold-soft);
}

.footer-version {
  font-family: var(--font-mono);
}

/* ─── Header — mobile lang toggle ────────────────────────────── */
.mobile-menu .lang-toggle {
  margin-top: 16px;
}

/* ─── Archive — listing header pieces ────────────────────────── */
.eyebrow.inline-flex {
  display: inline-flex;
  margin-bottom: 8px;
}

.term-desc {
  color: var(--ink-soft);
  margin: 6px 0 0;
  max-width: 60ch;
}

.listing-sort {
  text-align: right;
  flex-shrink: 0;
}

.sort-select {
  font-size: 13px;
  padding: 8px 14px;
  cursor: pointer;
}

.product-count {
  margin-top: 8px;
  font-family: var(--font-mono);
}

.pagination-wrap {
  margin-top: 48px;
  text-align: center;
}

.no-products {
  padding: 10% 0;
  text-align: center;
  color: var(--muted);
}

.no-products p {
  font-size: 18px;
  margin-bottom: 16px;
}

/* ─── Consultation: page shell ────────────────────────────────── */
.consult-page {
  height: calc(100vh - 68px);
  overflow: hidden;
}

.form-side {
  padding: clamp(28px, 5%, 60px) clamp(20px, 5%, 56px);
  border-right: 1px solid var(--line);
  overflow-y: auto;
  height: 100%;
}

.form-visual {
  background: var(--beige);
  display: grid;
  place-items: center;
  position: sticky;
  top: 0;
  height: calc(100vh - 68px);
  overflow: hidden;
}

.orbit-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── Consultation: form elements ────────────────────────────── */
.form-stepper {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.stepper-bar {
  width: 28px;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
}

.stepper-bar.active {
  background: var(--terracotta);
}

.form-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.eyebrow-line {
  width: 20px;
  height: 1px;
  background: var(--terracotta);
  display: inline-block;
  flex-shrink: 0;
}

.form-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
}

.form-title em {
  color: var(--terracotta);
  font-style: italic;
}

.form-subtitle {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 42ch;
  margin-bottom: 36px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field-lg {
  margin-bottom: 36px;
}

.form-field.pos-rel {
  position: relative;
}

.form-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-label-gap {
  margin-bottom: 10px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--t);
}

.form-input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(200, 85, 61, .1);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 4px;
}

.form-hint {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}

.pob-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(44, 36, 22, .1);
}

.chip-label {
  cursor: pointer;
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--white);
  cursor: pointer;
  transition: .18s;
}

.chip:hover {
  border-color: var(--terracotta);
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.form-error {
  display: none;
  font-size: 13px;
  color: #e53e3e;
  width: 100%;
}

.trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

/* ─── Single product ──────────────────────────────────────────── */
.pdp-breadcrumb {
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.pdp-breadcrumb .current {
  color: var(--ink);
}

.pdp-gallery-sticky {
  position: sticky;
  top: 88px;
  align-self: start;
}

.pdp-ph-sq {
  aspect-ratio: 1;
  border-radius: 8px;
}

.pdp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.rating-row .rating-muted {
  color: var(--muted);
}

.rating-row .auth-guarantee {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sage-deep);
}

.mval-hi {
  font-family: var(--font-hi);
  font-size: 13px;
}

.qty-input {
  width: 40px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  background: none;
  border: none;
}

.qty-ship {
  font-size: 12px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pdp-cta .btn {
  flex: 1;
  justify-content: center;
}

.pdp-oos {
  padding: 16px;
  background: var(--beige);
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pdp-trust {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.pdp-trust-item {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.pdp-tabs-section {
  margin-top: 16px;
}

.tab-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--beige);
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 4px;
}

.tab-panels {
  max-width: 82%;
  padding-top: 8px;
}

.tab-desc-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.classical-ref {
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
}

.classical-ref-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.classical-ref-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
}

.classical-ref-note {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.vidhi-list {
  padding-left: 20px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-size: 14.5px;
}

.reviews-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.reviews-big-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 500;
  color: var(--terracotta);
}

.reviews-stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 16px;
}

.reviews-count {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.gem-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.gem-section-h {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}

.gem-activation-box {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gem-activation-box h4 {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 12px;
}

.yantra-placement-box {
  margin-bottom: 16px;
  padding: 14px 18px;
  background: var(--beige);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink);
}

.tab-care-text {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.tab-ship-text {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.ship-list {
  padding-left: 20px;
  margin-top: 10px;
}

.related-section {
  padding: clamp(24px, 4%, 40px) 0 clamp(40px, 6%, 60px);
}

.related-section-head {
  text-align: left;
  margin-bottom: 28px;
}

.related-h2 {
  font-size: clamp(22px, 3vw, 32px);
}

/* ─── Responsive: tablet (≤1024px) ───────────────────────────── */
@media (max-width: 1024px) {
  .cta-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text p {
    margin: 0 auto;
  }

  .cta-text .btn {
    margin: 20px auto 0;
  }

  .cta-om {
    max-width: 40%;
    margin: 0 auto;
  }

  .tab-panels {
    max-width: 100%;
  }

  .gem-guide-grid {
    grid-template-columns: 1fr 1fr;
  }


}

/* ─── Responsive: mobile (≤768px) ────────────────────────────── */
@media (max-width: 768px) {

  /* Consultation page */
  .consult-page {
    height: auto;
    overflow: visible;
    flex-direction: column;
  }

  .form-page.consult-page {
    display: flex;
    flex-direction: column;
  }

  .form-side {
    padding: 32px 20px;
    border-right: none;
    border-bottom: 1px solid var(--line);
    height: auto;
    overflow: visible;
  }

  .form-visual {
    position: static;
    height: 56vw;
    min-height: 260px;
  }

  .orbit-wrap {
    width: 60vw;
    height: 60vw;
    max-width: 260px;
    max-height: 260px;
  }

  .orbit-ring.r1 {
    width: 60vw;
    height: 60vw;
    max-width: 260px;
    max-height: 260px;
    margin: -30vw 0 0 -30vw;
  }

  .orbit-ring.r2 {
    width: 47vw;
    height: 47vw;
    max-width: 210px;
    max-height: 210px;
    margin: -23.5vw 0 0 -23.5vw;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .form-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .chip-wrap {
    gap: 6px;
  }

  .form-actions {
    gap: 8px;
  }

  .trust-badges {
    gap: 12px;
  }

  /* CTA block */
  .cta-block {
    padding: 40px 24px;
  }

  .cta-glow {
    width: 50%;
  }

  .cta-om {
    max-width: 50%;
    font-size: 56px;
  }

  /* Archive listing */
  .listing-hdr {
    flex-direction: column;
    gap: 12px;
  }

  .listing-sort {
    text-align: left;
  }

  /* Single product */
  .pdp-gallery-sticky {
    position: static;
  }

  .pdp-trust {
    gap: 12px;
  }

  .tab-panels {
    max-width: 100%;
  }

  .gem-guide-grid {
    grid-template-columns: 1fr;
  }

  .reviews-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Astrologers */
  .astro-strip h2 {
    font-size: clamp(20px, 5vw, 28px);
  }
}

/* ─── Responsive: small mobile (≤480px) ──────────────────────── */
@media (max-width: 480px) {
  .cta-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-om {
    max-width: 60%;
  }

  .pdp-breadcrumb {
    font-size: 12px;
  }

  .classical-ref {
    padding: 14px 16px;
  }

  .gem-activation-box {
    padding: 14px 16px;
  }

  .related-section {
    padding: 20px 0 32px;
  }

  .form-subtitle {
    font-size: 13px;
  }
}

/* ══════════════════════════════════════════════════════════
   RICH PRODUCT PAGE (PDP) & OFFERS STYLING
═══════════════════════════════════════════════════════════ */

/* ─── Breadcrumb Navigation (PDP) ───────────────────────────── */
.pdp-breadcrumb-nav {
  padding: 14px 0 20px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pdp-breadcrumb-nav::-webkit-scrollbar {
  display: none;
}

.pdp-breadcrumb-list {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  font-size: 13px;
  font-family: var(--font-body);
}

.pdp-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0 !important;
}

.pdp-breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.pdp-breadcrumb-link:hover {
  color: #2a2047;
  background: rgba(42, 32, 71, 0.06);
}

.pdp-breadcrumb-link svg {
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}

.pdp-breadcrumb-link:hover svg {
  opacity: 1;
  transform: translateY(-1px);
  color: #2a2047;
}

.pdp-breadcrumb-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  opacity: 0.7;
  user-select: none;
  flex-shrink: 0 !important;
}

.pdp-breadcrumb-item.current {
  flex-shrink: 0 !important;
}

.pdp-breadcrumb-current {
  color: #2a2047;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(42, 32, 71, 0.05);
  border: 1px solid rgba(42, 32, 71, 0.12);
  border-radius: 6px;
  white-space: nowrap;
  display: inline-block;
  flex-shrink: 0 !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: unset !important;
}

@media (max-width: 768px) {
  .pdp-breadcrumb-nav {
    padding: 10px 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pdp-breadcrumb-list {
    display: inline-flex;
    flex-wrap: nowrap;
    width: max-content;
    font-size: 12px;
    gap: 6px;
    padding-right: 16px;
  }

  .pdp-breadcrumb-item {
    flex-shrink: 0 !important;
  }

  .pdp-breadcrumb-link {
    padding: 3px 6px;
  }

  .pdp-breadcrumb-current {
    padding: 3px 8px;
    flex-shrink: 0 !important;
    max-width: none !important;
    overflow: visible !important;
    text-overflow: unset !important;
  }
}

/* Floating discount tag */
.pdp-discount-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #282829;
  color: #FFFCC6;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 9px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 5;
  box-shadow: 0 3px 10px rgba(40, 40, 41, 0.35);
}

.pdp-discount-badge.listing-badge {
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  font-size: 10.5px;
}

/* Top discount pill next to/above title (Legacy fallback) */
.pdp-top-discount-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #282829;
  color: #FFFCC6;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* Top Marquee Ticker Pill above Product Title */
.pdp-title-marquee-pill {
  display: flex;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  border: 1px solid rgba(255, 252, 198, 0.28);
  border-radius: 999px;
  padding: 5px 0;
  margin-bottom: 12px;
  position: relative;
  user-select: none;
  box-shadow: 0 3px 10px rgba(40, 40, 41, 0.25);
}

.pdp-title-marquee-track {
  display: flex;
  width: max-content;
  animation: pdpTitleMarqueeRTL 16s linear infinite;
}

.pdp-title-marquee-pill:hover .pdp-title-marquee-track {
  animation-play-state: paused;
}

.pdp-title-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #FFFCC6;
  padding: 0 14px;
  white-space: nowrap;
}

.pdp-title-marquee-item .pdp-marquee-star {
  color: var(--gold, #d4af37);
  font-size: 10px;
}

@keyframes pdpTitleMarqueeRTL {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .pdp-title-marquee-pill {
    max-width: 100%;
  }
}

/* Product title */
.pdp-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.22;
  margin: 0 0 4px;
}

.pdp-title-hi {
  display: block;
  font-family: var(--font-hi);
  font-size: 15px;
  color: var(--terracotta);
  margin-top: 4px;
  font-weight: 500;
}

/* Ratings */
.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 14px;
}

.stars-gold {
  color: #d97706;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 1;
}

.rcount-text {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}

.pdp-rating-anchor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.pdp-rating-anchor:hover .rcount-text {
  text-decoration: underline;
  color: var(--ink);
}

.pdp-rating-sep {
  color: #cbd5e1;
  font-weight: 700;
  margin: 0 4px;
}

.pdp-quick-write-review-btn {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 700;
  color: #b45309;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pdp-quick-write-review-btn:hover {
  color: var(--terracotta);
}

/* Price */
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.pdp-curr-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
}

.pdp-mrp-price {
  font-size: 17px;
  color: var(--muted);
  text-decoration: line-through;
}

/* Highlight Pills Row (Dark cards with gold icons) */
.pdp-highlights-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

@media (max-width: 440px) {
  .pdp-highlights-wrap {
    grid-template-columns: 1fr;
  }
}

.pdp-highlight-pill {
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  color: #ffffff;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pill-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d4a34b;
  color: #1c1815;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.pill-title {
  font-size: 11.5px;
  font-weight: 800;
  color: #e5be70;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.pill-sub {
  font-size: 11px;
  color: #f1f5f9;
  margin-top: 1px;
}

/* Siddh / Pran Pratishtha Consecration Box */
.pdp-siddh-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1.5px solid #d4a34b;
  background: #fffcf4;
  border-radius: 12px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.pdp-siddh-box:hover {
  border-color: #b8862d;
  background: #fff9eb;
  box-shadow: 0 4px 14px rgba(184, 134, 45, 0.12);
}

.siddh-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.siddh-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #1c1815;
  cursor: pointer;
}

.siddh-emblem {
  padding: 3px 8px;
  background: #fdf2e9;
  border: 1px dashed #d4a34b;
  border-radius: 6px;
  font-family: var(--font-hi);
  font-size: 11px;
  font-weight: 700;
  color: #b45309;
}

.siddh-label-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #1c1815;
}

.siddh-price-tag {
  font-size: 13.5px;
  font-weight: 700;
  color: #1c1815;
}

/* Quantity + Add to cart row */
.pdp-buy-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.pdp-qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid #d0d7de;
  border-radius: 8px;
  background: #fff;
  height: 48px;
}

.qty-btn {
  width: 38px;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: #1c1815;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-num {
  width: 44px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  color: #1c1815;
}

.pdp-btn-add-cart {
  flex: 1;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  color: #FFFCC6 !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(75, 71, 82, 0.25);
}

.pdp-btn-add-cart:hover {
  background: linear-gradient(135deg, #5d5966 0%, #6e6978 50%, #858585 100%) !important;
  filter: brightness(1.12);
}


.wc-block-cart__main .wc-block-cart-items .wc-block-cart-item__image {
  padding-right: 0px !important;
  margin: 30px 10px;
}

.wc-block-cart-item__total-price-and-sale-badge-wrapper {
  margin-right: 15px;
}

/* Cash On Delivery Prominent CTA Button */
.pdp-btn-cod {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  color: #FFFCC6 !important;
  border: none;
  border-radius: 8px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 14px rgba(75, 71, 82, 0.28);
}

.pdp-btn-cod:hover {
  background: linear-gradient(135deg, #5d5966 0%, #6e6978 50%, #858585 100%) !important;
  color: #FFFCC6 !important;
  filter: brightness(1.12);
}

.pdp-btn-cod:active {
  transform: scale(0.99);
}

/* Estimated Delivery Date & Pincode Checker Card */
.pdp-delivery-card {
  background: #faf6ee;
  border: 1px solid #f0e6d2;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 22px;
}

.del-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.del-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #1c1815;
}

.del-sub {
  font-size: 12px;
  color: #718096;
  margin-top: 2px;
}

.del-input-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 4px 6px 4px 12px;
  margin-bottom: 12px;
}

.del-pin-icon {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

#soma-pincode-input {
  border: none;
  background: transparent;
  font-size: 13.5px;
  width: 100%;
  outline: none;
  color: #1c1815;
}

.del-check-btn {
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  color: #FFFCC6 !important;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.del-check-btn:hover {
  background: linear-gradient(135deg, #5d5966 0%, #6e6978 50%, #858585 100%) !important;
  filter: brightness(1.1);
}

.pdp-pincode-result {
  font-size: 12.5px;
  padding: 9px 12px;
  background: #edf7ed;
  color: #1e4620;
  border: 1px solid #c8e6c9;
  border-radius: 6px;
  margin-bottom: 14px;
  line-height: 1.45;
}

.del-perks-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eedec3;
  padding-top: 12px;
  gap: 12px;
}

.del-perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a5568;
}

.perk-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.25;
}

.perk-text strong {
  color: #1c1815;
  font-size: 12.5px;
}

/* Exclusive Offers Section */
.pdp-offers-section {
  margin-bottom: 22px;
}

.offers-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.offers-pct-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  color: #FFFCC6 !important;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offers-head h3 {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #1c1815;
  margin: 0;
  text-transform: uppercase;
}

.offers-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 600px) {
  .offers-cards-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }
}

.coupon-card {
  background: #ffffff;
  border: 1.5px dashed #cbd5e1;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coupon-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.coupon-title {
  font-size: 12px;
  font-weight: 700;
  color: #1c1815;
  line-height: 1.2;
}

.coupon-desc {
  font-size: 10.5px;
  color: #64748b;
  line-height: 1.35;
  margin-bottom: 10px;
  min-height: 28px;
}

.coupon-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed #e2e8f0;
  padding-top: 8px;
}

.coupon-code {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #282829;
}

.coupon-code.auto {
  color: #4B4752;
  font-size: 10px;
}

.coupon-copy-btn {
  background: none;
  border: none;
  font-size: 11px;
  color: #3b82f6;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

/* "Goes well with" Cross-sell */
.pdp-cross-sell-section {
  width: calc(100% - 24px); /* left-right 12px gap */
  max-width: 717px;
  margin: 0 auto 22px;
  box-sizing: border-box;
}

.cross-sell-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cross-sell-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1c1815;
  margin: 0;
}

.cross-sell-nav {
  display: flex;
  gap: 6px;
}

.cs-nav-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  color: #64748b;
  transition: all 0.2s ease;
  user-select: none;
}

.cs-nav-btn:hover:not(:disabled) {
  background: #1c1815;
  color: #ffffff;
  border-color: #1c1815;
}

.cs-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cross-sell-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.cross-sell-slider-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1px;
  margin: 0;
}

.cross-sell-slider-track::-webkit-scrollbar {
  display: none;
}

.cross-sell-slider-track .cross-sell-card {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  scroll-snap-align: start;
  box-sizing: border-box;
}

.cross-sell-card {
  background: #faf6ee;
  border: 1px solid #f0e6d2;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cs-img-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.cs-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #fbbf24;
  color: #1c1815;
  font-size: 7.5px;
  font-weight: 800;
  padding: 2px 4px;
  text-transform: uppercase;
}

.cs-info {
  flex: 1;
  min-width: 0;
}

.cs-title {
  font-size: 13px;
  font-weight: 600;
  color: #1c1815;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cs-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}

.cs-price {
  font-size: 13.5px;
  font-weight: 700;
  color: #1c1815;
}

.cs-mrp {
  font-size: 11px;
  color: #718096;
  text-decoration: line-through;
}

.cs-add-btn {
  background: #ffffff;
  border: 1.5px solid #1c1815;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  color: #1c1815;
  transition: all 0.2s;
}

.cs-add-btn:hover {
  background: #1c1815;
  color: #ffffff;
}

/* Accordions */
.pdp-accordions-wrap {
  border-top: 1px solid #e2e8f0;
  margin-bottom: 22px;
}

.pdp-accordion-item {
  border-bottom: 1px solid #e2e8f0;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 14.5px;
  font-weight: 600;
  color: #1c1815;
  transition: color 0.2s;
}

.trigger-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trigger-arrow {
  font-size: 14px;
  color: #718096;
  transition: transform 0.25s ease;
}

.pdp-accordion-item.active .trigger-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  padding-bottom: 18px;
  color: #4a5568;
  font-size: 13.5px;
  line-height: 1.65;
}

.faq-item {
  margin-bottom: 14px;
}

.faq-item strong {
  display: block;
  color: #1c1815;
  margin-bottom: 4px;
  font-size: 13.5px;
}

.faq-item p {
  margin: 0;
  color: #4a5568;
  font-size: 13px;
}

/* Need Help Card */
.pdp-need-help-card {
  background: #edf6f9;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  border: 1px solid #d8edf3;
}

.help-title {
  font-size: 13px;
  font-weight: 800;
  color: #1c1815;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.help-time {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 6px;
}

.help-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #0284c7;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* Product Specifications HTML Content (Tables, Lists, Typography) */
.spec-html-content {
  margin-top: 6px;
  color: var(--ink-soft, #475569);
  line-height: 1.6;
  font-size: 13.5px;
}

.spec-html-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.spec-html-content th,
.spec-html-content td {
  padding: 8px 12px;
  text-align: left;
  border: 1px solid #e2e8f0;
  font-size: 13px;
}

.spec-html-content th {
  background: #f8fafc;
  font-weight: 700;
  color: #1e293b;
}

.spec-html-content tr:nth-child(even) td {
  background: #fcfcfd;
}

.spec-html-content ul,
.spec-html-content ol {
  padding-left: 20px;
  margin: 6px 0;
}

.spec-html-content li {
  margin-bottom: 4px;
}

.spec-html-content strong {
  color: #1e293b;
}

/* ─── Breadcrumb Responsive ─────────────────────────────────── */
.pdp-breadcrumb-nav {
  padding: 14px 0 10px;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pdp-breadcrumb-nav::-webkit-scrollbar {
  display: none;
}

/* ─── Gallery Column Sticky Support ─────────────────────────── */
.pdp-gallery-col {
  position: sticky;
  top: 88px;
  align-self: start;
}

/* ─── Mobile Product Page Revamp (App-Like Fluidity) ───────── */
@media (max-width: 900px) {
  .pdp-gallery-col {
    position: static !important;
    top: auto !important;
    width: 100% !important;
  }

  .pdp {
    display: block;
  }

  .pdp-gallery {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .pdp-main-img {
    order: 1 !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .pdp-main-img img,
  .pdp-main-img .ph {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }

  .pdp-thumbs {
    order: 2 !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    justify-content: space-between !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 4px 2px !important;
    scrollbar-width: none !important;
  }

  .pdp-thumbs::-webkit-scrollbar {
    display: none !important;
  }

  .pdp-thumbs .t {
    width: 62px !important;
    height: 62px !important;
    flex-shrink: 0 !important;
    border-radius: 10px !important;
    border: 2px solid #e2e8f0 !important;
    overflow: hidden !important;
  }

  .pdp-thumbs .t.active {
    border-color: #d4a34b !important;
  }

  .pdp-thumbs .t img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

@media (max-width: 768px) {
  body.single-product {
    padding-bottom: 74px !important;
  }

  .pdp {
    padding: 8px 0 20px !important;
    gap: 16px !important;
  }

  .pdp-title {
    font-size: 21px !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
  }

  .pdp-title-hi {
    font-size: 13.5px !important;
  }

  .pdp-rating-row {
    flex-wrap: wrap !important;
    gap: 6px 10px !important;
    margin: 6px 0 12px !important;
  }

  .pdp-price-row {
    margin-bottom: 14px !important;
    gap: 10px !important;
    align-items: baseline !important;
  }

  .pdp-curr-price {
    font-size: 26px !important;
  }

  .pdp-mrp-price {
    font-size: 15px !important;
  }

  .pdp-highlights-wrap {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-bottom: 14px !important;
  }

  .pdp-highlight-pill {
    padding: 8px 10px !important;
    gap: 8px !important;
    border-radius: 10px !important;
  }

  .pill-icon-circle {
    width: 28px !important;
    height: 28px !important;
  }

  .pill-title {
    font-size: 10.5px !important;
  }

  .pill-sub {
    font-size: 9.5px !important;
  }

  .pdp-siddh-box {
    padding: 10px 12px !important;
    margin-bottom: 14px !important;
    border-radius: 10px !important;
  }

  .siddh-left {
    gap: 8px !important;
    min-width: 0 !important;
  }

  .siddh-label-title {
    font-size: 12.5px !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
  }

  .siddh-price-tag {
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .pdp-buy-row {
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  .pdp-qty-stepper {
    height: 44px !important;
  }

  .qty-btn {
    width: 32px !important;
  }

  .qty-num {
    width: 34px !important;
    font-size: 14px !important;
  }

  .pdp-btn-add-cart {
    height: 44px !important;
    font-size: 13.5px !important;
  }

  .pdp-btn-cod {
    height: 46px !important;
    font-size: 14.5px !important;
    margin-bottom: 18px !important;
  }

  .pdp-delivery-card {
    padding: 14px !important;
    margin-bottom: 18px !important;
    border-radius: 12px !important;
  }

  .del-header {
    gap: 10px !important;
    margin-bottom: 10px !important;
  }

  .del-title {
    font-size: 13.5px !important;
  }

  .del-sub {
    font-size: 11.5px !important;
  }

  #soma-pincode-input {
    min-width: 0 !important;
    flex: 1 !important;
  }

  .del-perks-row {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .offers-cards-grid {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 10px !important;
    padding: 2px 2px 10px 2px !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .offers-cards-grid::-webkit-scrollbar {
    display: none !important;
  }

  .coupon-card {
    min-width: 175px !important;
    max-width: 195px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
  }

  .pdp-cross-sell-section {
    margin-bottom: 18px !important;
  }

  .cross-sell-card {
    padding: 10px 12px !important;
    gap: 10px !important;
  }

  .cs-info {
    min-width: 0 !important;
  }

  .pdp-need-help-card {
    padding: 14px 16px !important;
    margin-bottom: 20px !important;
    border-radius: 10px !important;
  }

  .accordion-content .prose-content,
  .spec-html-content {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .spec-grid {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .pdp-highlights-wrap {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .pdp-thumbs .t {
    width: 54px !important;
    height: 54px !important;
  }

  .pdp-image-marquee {
    padding: 6px 0 !important;
  }

  .pdp-image-marquee-track .pdp-marquee-item {
    font-size: 10px !important;
    padding: 0 12px !important;
  }

  .pdp-title-marquee-pill {
    max-width: 100% !important;
  }

  .pdp-mobile-sticky-bar {
    padding: 8px 12px !important;
  }

  .sticky-bar-price {
    font-size: 16px !important;
  }

  .sticky-bar-btn-atc {
    padding: 8px 10px !important;
    font-size: 11.5px !important;
  }

  .sticky-bar-btn-buy {
    padding: 8px 13px !important;
    font-size: 11.5px !important;
  }
}

/* ── Mobile Sticky Bottom Buy Bar ── */
.pdp-mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 26, 36, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 252, 198, 0.2);
  padding: 10px 16px;
  z-index: 9999;
  box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-mobile-sticky-bar.visible {
  display: flex !important;
  transform: translateY(0);
}

.sticky-bar-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sticky-bar-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.sticky-bar-price {
  font-size: 18px;
  font-weight: 800;
  color: #FFFCC6;
}

.sticky-bar-mrp {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.sticky-bar-rating {
  font-size: 10.5px;
  color: #fbbf24;
  margin-top: 2px;
}

.sticky-bar-actions {
  display: flex;
  gap: 8px;
}

.sticky-bar-btn-atc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.sticky-bar-btn-buy {
  background: linear-gradient(135deg, #d4a34b 0%, #b45309 100%);
  border: none;
  color: #1c1815;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(212, 163, 75, 0.4);
}

/* ══════════════════════════════════════════════════════════════
   CUSTOMER REVIEWS & SOCIAL PROOF SYSTEM (ZERO PLUGIN NATIVE)
   ══════════════════════════════════════════════════════════════ */
.pdp-reviews-section {
  max-width: 1240px;
  margin: 56px auto 32px;
  padding: 48px 24px;
  border-top: 1px solid #ffe4ea;
  font-family: var(--font-body);
}

.reviews-section-head {
  text-align: center;
  margin-bottom: 36px;
}

.reviews-section-head h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.reviews-sub {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

/* Rating Overview Card */
.reviews-overview-card {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 36px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 10px 30px rgba(40, 40, 41, 0.05);
}

.overview-left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overview-big-score {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: #1c1815;
  letter-spacing: -1px;
}

.stars-gold-big {
  color: #2a2047;
  font-size: 26px;
  letter-spacing: 3px;
  margin: 8px 0 4px;
}

.overview-count {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
}

.overview-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 10px;
  border: 1px solid #a7f3d0;
}

.overview-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.star-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.bar-label {
  width: 38px;
  text-align: right;
  white-space: nowrap;
}

.bar-track {
  flex: 1;
  height: 10px;
  background: #f1f5f9;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
    background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  border-radius: 6px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-pct {
  width: 42px;
  font-size: 12.5px;
  color: #64748b;
  text-align: right;
}

.overview-action {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.btn-write-review {
      background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  color: #ffffff;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.btn-write-review:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(75, 71, 82, 0.35);
}

.overview-action small {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

/* Interactive Review Form Box */
.review-form-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 36px;
  margin-top: 32px;
  box-shadow: 0 14px 40px rgba(40, 40, 41, 0.08);
  animation: somaFadeInDown 0.3s ease-out;
}

@keyframes somaFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-inner .form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.form-inner .form-head h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1c1815;
  margin: 0;
}

.form-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
}

.form-close-btn:hover {
  color: var(--terracotta);
}

/* Star Rating Chooser (1 to 5 Stars) */
.star-chooser-wrap {
  margin-bottom: 22px;
}

.chooser-label {
  font-size: 14px;
  font-weight: 700;
  color: #1c1815;
  display: block;
  margin-bottom: 8px;
}

.star-picker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.star-item {
  font-size: 34px;
  color: #cbd5e1;
  cursor: pointer;
  transition: transform 0.15s ease, color 0.15s ease;
  line-height: 1;
  user-select: none;
}

.star-item:hover {
  transform: scale(1.22);
}

.star-item.active {
  color: #f59e0b;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.star-feedback {
  margin-left: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
}

/* Form Inputs Grid */
.form-row-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

.form-row-grid label,
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.form-row-grid input,
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-row-grid input:focus,
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--terracotta);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(75, 71, 82, 0.15);
}

.form-field {
  margin-bottom: 20px;
}

/* Photo & Video Upload Dropzones */
.form-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 26px;
}

.media-upload-card {
  border: 2px dashed #cbd5e1;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  background: #f8fafc;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.media-upload-card:hover {
  border-color: var(--terracotta);
  background: var(--beige);
}

.media-upload-card label {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 13.5px;
  font-weight: 600;
}

.media-upload-card label svg {
  stroke: var(--terracotta);
}

.media-upload-card input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.media-preview-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
}

.media-preview-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.media-preview-video {
  max-width: 180px;
  max-height: 100px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

/* Form Submit Row */
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-submit-review {
  background: #059669;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.25);
  transition: all 0.2s ease;
}

.btn-submit-review:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(5, 150, 105, 0.35);
}

.btn-submit-review:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.review-status-msg {
  font-size: 14px;
  font-weight: 600;
}

.review-status-msg.success {
  color: #047857;
}

.review-status-msg.error {
  color: #dc2626;
}

/* Customer Reviews Carousel Feed & Cards */
.reviews-carousel-wrap {
  margin-top: 36px;
  position: relative;
}

.reviews-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.reviews-carousel-heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}

.reviews-carousel-viewport {
  position: relative;
  width: 100%;
}

.reviews-feed.reviews-carousel-track {
  margin-top: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 20px 4px;
  scrollbar-width: none;
}

.reviews-feed.reviews-carousel-track::-webkit-scrollbar {
  display: none;
}

.reviews-feed.reviews-carousel-track .review-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 320px;
  max-width: 440px;
  scroll-snap-align: start;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0;
  height: auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 4px 16px rgba(40, 40, 41, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.reviews-feed.reviews-carousel-track .review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(40, 40, 41, 0.08);
}

.reviews-feed.reviews-carousel-track .review-card .review-card-body {
  flex: 1;
}

@media (max-width: 1024px) {
  .reviews-feed.reviews-carousel-track .review-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 280px;
  }
}

@media (max-width: 640px) {
  .reviews-feed.reviews-carousel-track .review-card {
    flex: 0 0 85%;
    min-width: 260px;
  }
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
    background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  color: #FFFCC6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(40, 40, 41, 0.25);
  flex-shrink: 0;
}

.reviewer-meta {
  flex: 1;
}

.reviewer-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.r-name {
  font-weight: 700;
  font-size: 15px;
  color: #1e293b;
}

.r-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid #a7f3d0;
}

.reviewer-sub {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

.review-stars-gold {
  color: #f59e0b;
  font-size: 17px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.review-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.review-card-body {
  font-size: 14px;
  line-height: 1.68;
  color: #334155;
  margin-bottom: 12px;
}

.review-card-body p {
  margin: 0 0 6px 0;
}

.review-card-body p:last-child {
  margin-bottom: 0;
}

.review-card-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.review-photo-thumb {
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-photo-thumb:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.review-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-card-video {
  margin-top: 14px;
}

/* Responsive Reviews Styles */
@media (max-width: 900px) {
  .reviews-overview-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding: 24px 20px;
  }

  .form-row-grid {
    grid-template-columns: 1fr;
  }

  .form-media-grid {
    grid-template-columns: 1fr;
  }

  .pdp-reviews-section {
    padding: 32px 16px;
  }
}

@media (max-width: 768px) {
  .pdp-reviews-section {
    margin: 36px auto 20px !important;
    padding: 28px 12px !important;
  }

  .reviews-section-head {
    margin-bottom: 24px !important;
  }

  .reviews-section-head h2 {
    font-size: 24px !important;
  }

  .reviews-sub {
    font-size: 13.5px !important;
  }

  .reviews-overview-card {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 18px !important;
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }

  .overview-big-score {
    font-size: 46px !important;
  }

  .stars-gold-big {
    font-size: 22px !important;
  }

  .star-bar-row {
    font-size: 12px !important;
    gap: 8px !important;
  }

  .btn-write-review {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 12px 20px !important;
    box-sizing: border-box !important;
  }

  .review-form-box {
    padding: 20px 14px !important;
    border-radius: 14px !important;
    margin-top: 20px !important;
  }

  .form-inner .form-head h3 {
    font-size: 18px !important;
  }

  .form-row-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .form-media-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .star-picker {
    flex-wrap: wrap !important;
    gap: 4px !important;
  }

  .star-item {
    font-size: 28px !important;
  }

  .star-feedback {
    display: block !important;
    margin-left: 0 !important;
    margin-top: 6px !important;
    font-size: 12.5px !important;
    width: 100% !important;
  }

  .form-submit-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .btn-submit-review {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 12px 20px !important;
  }

  .reviews-carousel-wrap {
    margin-top: 24px !important;
  }

  .reviews-carousel-header {
    margin-bottom: 14px !important;
    gap: 10px !important;
  }

  .reviews-carousel-heading {
    font-size: 20px !important;
  }

  .reviews-feed.reviews-carousel-track {
    gap: 12px !important;
    padding: 6px 2px 16px 2px !important;
  }

  .reviews-feed.reviews-carousel-track .review-card {
    flex: 0 0 88% !important;
    min-width: 250px !important;
    padding: 18px 16px !important;
    border-radius: 14px !important;
  }

  .reviewer-avatar {
    width: 38px !important;
    height: 38px !important;
    font-size: 16px !important;
  }

  .r-name {
    font-size: 14px !important;
  }

  .review-card-title {
    font-size: 14px !important;
  }

  .review-card-body {
    font-size: 13px !important;
  }

  .review-photo-thumb {
    width: 68px !important;
    height: 68px !important;
  }
}

/* ─── NEWLY ADDED PRODUCTS CAROUSEL ────────────────────────── */
.soma-new-arrivals-section {
  width: 100% !important;
  margin-top: 64px !important;
  padding: 56px 0 36px 0 !important;
  border-top: 1px solid #4B4752 !important;
  box-sizing: border-box !important;
  display: block !important;
  position: relative;
}

.soma-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 20px;
  flex-wrap: wrap;
}

.soma-carousel-title-col {
  max-width: 640px;
}

.soma-carousel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.soma-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 0 rgba(75, 71, 82, 0.7);
  animation: somaPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes somaPulse {
  to {
    box-shadow: 0 0 0 8px rgba(75, 71, 82, 0);
  }
}

.soma-carousel-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 6px 0;
}

.soma-carousel-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.soma-carousel-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.soma-carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--t) ease;
}

.soma-carousel-btn:hover:not(:disabled) {
  background: var(--terracotta);
  color: #FFFCC6;
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(40, 40, 41, 0.3);
}

.soma-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.soma-carousel-viewport {
  position: relative;
  width: 100%;
}

.soma-carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 20px 4px;
  scrollbar-width: none;
  /* Firefox */
}

.soma-carousel-track::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.soma-carousel-slide {
  flex: 0 0 calc(25% - 17px);
  min-width: 260px;
  max-width: 320px;
  scroll-snap-align: start;
  box-sizing: border-box;
  display: flex;
}

.soma-carousel-slide .product-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .soma-carousel-slide {
    flex: 0 0 calc(33.333% - 15px);
    min-width: 240px;
  }
}

@media (max-width: 768px) {
  .soma-carousel-slide {
    flex: 0 0 calc(50% - 11px);
    min-width: 200px;
  }

  .soma-carousel-header {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .soma-carousel-slide {
    flex: 0 0 78%;
    min-width: 220px;
  }
}

/* ─── Login / Register Page Background with Vignette Shading ─── */
.soma-auth-page-wrap,
body.woocommerce-account:not(.logged-in) .soma-auth-page-wrap {
  width: 100%;
  min-height: calc(100vh - 90px);
  padding: 64px 20px 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #18171b;
  background-image:
    linear-gradient(rgba(18, 17, 22, 0.72), rgba(18, 17, 22, 0.85)),
    url('../img/loginpage.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  box-sizing: border-box;
}

.soma-auth-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

.soma-auth-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 252, 198, 0.28) 100%);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-top: 2px solid rgba(255, 252, 198, 0.95);
  border-left: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 40px 34px;
  box-shadow:
    0 30px 60px -12px rgba(40, 40, 41, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
    0 2px 5px rgba(255, 252, 198, 0.5) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.soma-auth-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 34px 68px -12px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset,
    0 2px 7px rgba(255, 255, 255, 0.6) inset;
}

@media (max-width: 768px) {
  .soma-auth-page-wrap {
    padding: 32px 14px 64px;
    min-height: auto;
  }

  .soma-auth-card {
    padding: 26px 20px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .soma-auth-page-wrap {
    padding: 20px 10px 48px;
  }

  .soma-auth-card {
    padding: 22px 16px;
    border-radius: 16px;
  }
}

/* ─── Shared Auth Form, Lost Password & Reset Elements ─── */
.soma-auth-header {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(75, 71, 82, 0.15);
  padding-bottom: 16px;
}

.soma-auth-title {
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: 26px;
  font-weight: 700;
  color: #282829;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
  margin: 0 0 6px;
}

.soma-auth-subtitle {
  font-size: 13.5px;
  color: #4B4752;
  font-weight: 500;
  margin: 0;
  line-height: 1.55;
}

.soma-form-row {
  margin-bottom: 20px;
}

.soma-form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #282829;
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

.soma-form-row .required {
  color: #757575;
}

.soma-form-row input[type="text"],
.soma-form-row input[type="email"],
.soma-form-row input[type="password"],
.soma-auth-card input.input-text {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  font-size: 14.5px;
  color: #282829;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 6px rgba(40, 40, 41, 0.04) inset;
  transition: border-color .2s, background .2s, box-shadow .2s;
  box-sizing: border-box;
}

.soma-form-row input:focus,
.soma-auth-card input.input-text:focus {
  outline: none;
  border-color: #4B4752;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 4px rgba(75, 71, 82, 0.20);
}

.soma-lost-password {
  color: #4B4752;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color .18s;
}

.soma-lost-password:hover {
  color: #282829;
  text-decoration: underline;
}

.soma-auth-btn {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  color: #FFFCC6 !important;
  border: none;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, opacity .2s;
  box-shadow: 0 4px 16px rgba(40, 40, 41, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.soma-auth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(75, 71, 82, 0.35);
  opacity: 0.96;
  color: #FFFCC6 !important;
}

.soma-auth-root {
  margin: 0 !important;
  padding: 0 !important;
  background-color: #282829 !important;
}

.soma-auth-root .entry-content,
.soma-auth-root .woocommerce {
  margin: 0 !important;
  padding: 0 !important;
}

.soma-auth-root .woocommerce>.woocommerce-notices-wrapper:empty,
.woocommerce-notices-wrapper:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
}

.soma-auth-root .woocommerce>.woocommerce-notices-wrapper {
  max-width: 480px;
  margin: 0 auto 20px;
  padding: 0;
}

.soma-auth-container .woocommerce-notices-wrapper {
  margin-bottom: 20px;
}

/* ─── 28. BLOG ARCHIVE (Thoughts & Insights Layout — Light Theme) ── */
.blog-archive-page {
  background-color: transparent;
  color: var(--ink);
  padding: 50px 0 90px;
  min-height: 80vh;
  position: relative;
}

.blog-container {
  position: relative;
  z-index: 1;
}

/* Header Section */
.blog-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 52px;
}

.blog-pill-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4B4752;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(40, 40, 41, 0.05);
}

.blog-main-title {
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px 0;
}

.blog-subtitle {
  font-family: var(--font-body, 'IBM Plex Serif', serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 auto 28px;
}

/* Category Filter Pills */
.blog-categories-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 1px 4px rgba(40, 40, 41, 0.04);
}

.blog-cat-pill .pill-count {
  font-family: var(--font-mono, monospace);
  font-size: 10.5px;
  background: var(--beige-deep);
  color: #4B4752;
  padding: 1px 7px;
  border-radius: 999px;
  font-weight: 600;
}

.blog-cat-pill:hover {
  background: var(--white);
  border-color: #4B4752;
  color: #282829;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 40, 41, 0.08);
}

.blog-cat-pill.active {
  background: #282829;
  border-color: #282829;
  color: #FFFCC6;
  box-shadow: 0 4px 14px rgba(40, 40, 41, 0.16);
}

.blog-cat-pill.active .pill-count {
  background: #4B4752;
  color: #FFFCC6;
}

/* ─── Featured Post Card ──────────────────────────────────────── */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 44px;
  box-shadow: 0 4px 20px rgba(40, 40, 41, 0.06);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.blog-featured-card:hover {
  border-color: #4B4752;
  box-shadow: 0 12px 34px rgba(40, 40, 41, 0.11);
}

.featured-card-media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: var(--beige);
}

.featured-media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.featured-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-featured-card:hover .featured-card-media img {
  transform: scale(1.03);
}

.featured-card-body {
  padding: 38px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  color: #757575;
  flex-wrap: wrap;
}

.badge-cat {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--beige);
  border: 1px solid var(--line-soft);
  color: #282829;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.badge-cat:hover {
  background: #282829;
  border-color: #282829;
  color: #FFFCC6;
}

.meta-dot {
  color: #757575;
  opacity: 0.6;
}

.meta-date,
.meta-reading {
  letter-spacing: 0.08em;
  color: #757575;
}

.featured-card-title {
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 14px 0;
}

.featured-card-title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-card-title a:hover {
  color: #4B4752;
}

.featured-card-excerpt {
  font-family: var(--font-body, 'IBM Plex Serif', serif);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 24px 0;
}

.featured-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.featured-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #282829;
  border: 1px solid #4B4752;
  color: #FFFCC6;
  display: grid;
  place-items: center;
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(40, 40, 41, 0.12);
}

.author-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.btn-read-article {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #282829;
  border: 1.5px solid #4B4752;
  color: #FFFCC6 !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 2px 8px rgba(40, 40, 41, 0.15);
}

.btn-read-article:hover {
  background: #4B4752;
  border-color: #282829;
  color: #FFFCC6 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(75, 71, 82, 0.25);
}

.btn-read-article .btn-arrow {
  transition: transform 0.2s ease;
}

.btn-read-article:hover .btn-arrow {
  transform: translateX(3px);
}

/* ─── 4-Column Post Grid ─────────────────────────────────────── */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.blog-grid-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(40, 40, 41, 0.04);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-grid-card:hover {
  border-color: #4B4752;
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(40, 40, 41, 0.10);
}

.grid-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--beige);
}

.grid-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-grid-card:hover .grid-card-media img {
  transform: scale(1.04);
}

.grid-card-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.grid-meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.badge-cat-sm {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--beige);
  border: 1px solid var(--line-soft);
  color: #282829;
  font-family: var(--font-mono, monospace);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.badge-cat-sm:hover {
  background: #282829;
  border-color: #282829;
  color: #FFFCC6;
}

.grid-meta-date {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  color: #757575;
}

.grid-card-title {
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.grid-card-title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.grid-card-title a:hover {
  color: #4B4752;
}

.grid-card-excerpt {
  font-family: var(--font-body, 'IBM Plex Serif', serif);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 14px 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.grid-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
}

.grid-reading-time {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  color: #757575;
}

.grid-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #282829;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.grid-read-more:hover {
  color: #4B4752;
  transform: translateX(2px);
}

/* ─── Blog Pagination ────────────────────────────────────────── */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.blog-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  font-family: var(--font-mono, monospace);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-pagination .page-numbers:hover {
  background: var(--beige);
  border-color: #4B4752;
  color: #282829;
  transform: translateY(-2px);
}

.blog-pagination .page-numbers.current {
  background: #282829;
  border-color: #282829;
  color: #FFFCC6;
  box-shadow: 0 2px 8px rgba(40, 40, 41, 0.15);
}

.blog-pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  color: #757575;
}

/* Empty state */
.blog-empty-state {
  text-align: center;
  padding: 70px 24px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(40, 40, 41, 0.05);
}

.blog-empty-state .empty-icon {
  font-size: 30px;
  color: #4B4752;
  margin-bottom: 14px;
}

.blog-empty-state h2 {
  color: var(--ink);
  margin-bottom: 8px;
}

.blog-empty-state p {
  color: var(--ink-soft);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .blog-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .featured-card-body {
    padding: 28px 22px;
  }

  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .blog-archive-page {
    padding: 36px 0 50px;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .featured-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-read-article {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE ARTICLE / POST PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */
.single-article-page {
  background: var(--sand, #F9F7F4);
  color: var(--ink, #282829);
  min-height: 100vh;
}

/* ── 1. Hero with Featured Image Background ── */
.article-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 130px 0 80px;
  text-align: center;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-hero-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.article-meta-top {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 13px;
  flex-wrap: wrap;
  justify-content: center;
}

.article-meta-top .badge-cat {
  background: rgba(75, 71, 82, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 252, 198, 0.35);
  color: #FFFCC6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.article-meta-top .badge-cat:hover {
  background: #4B4752;
  color: #FFFFFF;
  border-color: #FFFCC6;
}

.article-meta-top .meta-dot {
  color: rgba(255, 255, 255, 0.4);
}

.article-meta-top .meta-date,
.article-meta-top .meta-reading {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.article-hero-title {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.24;
  color: #FFFFFF;
  margin: 0 0 28px 0;
  max-width: 900px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.01em;
}

.article-hero-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(40, 40, 41, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 18px 6px 8px;
  border-radius: 999px;
  text-align: left;
}

.article-hero-author .author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #4B4752, #282829 80%);
  color: #FFFCC6;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid rgba(255, 252, 198, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.article-hero-author .author-info {
  display: flex;
  flex-direction: column;
}

.article-hero-author .author-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.25;
}

.article-hero-author .author-role {
  font-size: 11px;
  color: #A09E9B;
  font-family: var(--font-mono, monospace);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── 2. Main Content & TOC Grid Layout ── */
.article-main-wrap {
  padding: 44px 0 70px;
}

.article-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-grid-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: start;
}

.article-main-col {
  min-width: 0;
}

/* ── Social Share Bar ── */
.article-share-bar {
  background: #19181B;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.article-share-bar .share-label {
  font-size: 13px;
  font-weight: 600;
  color: #A09E9B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono, monospace);
}

.article-share-bar .share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-share-bar .share-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #E2DFD8;
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s ease;
  position: relative;
}

.article-share-bar .share-btn:hover {
  background: #4B4752;
  color: #FFFCC6;
  border-color: rgba(255, 252, 198, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.article-share-bar .share-copy {
  border: none;
  outline: none;
}

.article-share-bar .copy-tooltip {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #282829;
  color: #FFFCC6;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(255, 252, 198, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.article-share-bar .copy-tooltip.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Article Content Typography ── */
.article-body-content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink, #282829);
  letter-spacing: 0.01em;
}

.article-body-content p {
  margin-bottom: 24px;
}

.article-body-content h2 {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 700;
  color: #282829;
  margin: 44px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(40, 40, 41, 0.1);
  scroll-margin-top: 110px;
  line-height: 1.3;
}

.article-body-content h3 {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  color: #4B4752;
  margin: 32px 0 14px;
  scroll-margin-top: 110px;
  line-height: 1.35;
}

.article-body-content h4,
.article-body-content h5,
.article-body-content h6 {
  font-family: var(--font-display, 'Cinzel', serif);
  font-weight: 600;
  color: #282829;
  margin: 24px 0 12px;
}

.article-body-content blockquote {
  border-left: 4px solid #4B4752;
  background: rgba(75, 71, 82, 0.05);
  padding: 20px 28px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: #4B4752;
}

.article-body-content ul,
.article-body-content ol {
  margin: 18px 0 28px 24px;
  padding-left: 12px;
}

.article-body-content li {
  margin-bottom: 10px;
  line-height: 1.75;
}

.article-body-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 28px 0;
  box-shadow: 0 6px 20px rgba(40, 40, 41, 0.08);
}

.article-body-content a {
  color: #4B4752;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.article-body-content a:hover {
  color: #282829;
}

/* ── Tags Wrap ── */
.article-tags-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(40, 40, 41, 0.1);
}

.article-tags-wrap .tags-label {
  font-size: 13px;
  font-weight: 700;
  color: #757575;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono, monospace);
}

.article-tags-wrap .tags-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.article-tag-item {
  background: rgba(75, 71, 82, 0.08);
  color: #4B4752;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s ease;
}

.article-tag-item:hover {
  background: #282829;
  color: #FFFCC6;
  transform: translateY(-1px);
}

/* ── Right Column: Sticky Table of Contents Card ── */
.article-sidebar-col {
  position: relative;
}

.article-toc-card {
  position: sticky;
  top: 100px;
  background: #19181B;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 24px;
  color: #FFFFFF;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 252, 198, 0.2) transparent;
}

.article-toc-card::-webkit-scrollbar {
  width: 4px;
}

.article-toc-card::-webkit-scrollbar-thumb {
  background: rgba(255, 252, 198, 0.2);
  border-radius: 4px;
}

.article-toc-card .toc-heading {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.article-toc-card .toc-icon {
  color: #FFFCC6;
  font-size: 12px;
}

.toc-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toc-item {
  margin: 0;
}

.toc-subitem {
  padding-left: 14px;
}

.toc-link {
  font-size: 13.5px;
  color: #A09E9B;
  text-decoration: none;
  line-height: 1.45;
  display: block;
  border-left: 2px solid transparent;
  padding-left: 8px;
  margin-left: -8px;
  transition: all 0.2s ease;
}

.toc-link:hover {
  color: #FFFCC6;
  padding-left: 12px;
}

.toc-link.active {
  color: #FFFCC6;
  font-weight: 600;
  border-left-color: #FFFCC6;
  padding-left: 10px;
}

/* ── 4. Comments Area ── */
.article-comments-area {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid rgba(40, 40, 41, 0.12);
}

.comments-header .comments-title {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 24px;
  font-weight: 700;
  color: #282829;
  margin: 0 0 24px 0;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
}

.comment-list li.comment {
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(40, 40, 41, 0.12);
}

.comment-list li.comment .comment-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-author .fn {
  font-weight: 700;
  color: #282829;
}

.comment-metadata a {
  font-size: 12px;
  color: #757575;
  text-decoration: none;
  font-family: var(--font-mono, monospace);
}

.comment-content {
  font-size: 15px;
  line-height: 1.65;
  color: #4B4752;
}

.comment-reply-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #4B4752;
  text-decoration: underline;
  margin-top: 4px;
}

/* Comment Form Reply Card */
.comment-respond {
  background: #F4F1EC;
  border: 1px solid rgba(40, 40, 41, 0.08);
  border-radius: 18px;
  padding: 34px 32px;
  box-shadow: 0 6px 24px rgba(40, 40, 41, 0.04);
}

.comment-reply-title {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 22px;
  font-weight: 700;
  color: #282829;
  margin: 0 0 8px 0;
}

.comment-notes {
  font-size: 13.5px;
  color: #757575;
  margin-bottom: 24px;
}

.comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.comment-form-comment {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comment-form-comment textarea {
  width: 100%;
  border: 1px solid rgba(40, 40, 41, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  background: #FFFFFF;
  font-family: inherit;
  font-size: 14.5px;
  color: #282829;
  min-height: 130px;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-form-comment textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus {
  border-color: #4B4752 !important;
  box-shadow: 0 0 0 3px rgba(75, 71, 82, 0.15) !important;
  outline: none;
}

.comment-form-author,
.comment-form-email {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-comment label {
  font-size: 12.5px;
  font-weight: 600;
  color: #4B4752;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comment-form input[type="text"],
.comment-form input[type="email"] {
  width: 100%;
  border: 1px solid rgba(40, 40, 41, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  background: #FFFFFF;
  font-size: 14px;
  color: #282829;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-form-cookies-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #757575;
}

.form-submit {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.btn-comment-submit {
  background: #282829;
  color: #FFFCC6;
  border: 1px solid #4B4752;
  border-radius: 999px;
  padding: 13px 32px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-comment-submit:hover {
  background: #4B4752;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(40, 40, 41, 0.25);
}

/* ── Responsive Queries for Single Article ── */
@media (max-width: 980px) {
  .article-grid-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .article-sidebar-col {
    order: -1;
  }

  .article-toc-card {
    position: static;
    max-height: none;
  }
}

@media (max-width: 680px) {
  .article-hero {
    padding: 100px 0 60px;
  }

  .comment-form {
    grid-template-columns: 1fr;
  }

  .comment-respond {
    padding: 24px 18px;
  }
}

/* ─── 16. SOMA CUSTOMER JOURNEY SECTION (ON-SCROLL STICKY FLOW) ─── */
.soma-journey-section {
  position: relative;
  width: 100%;
  background: #FFFFFF !important;
  color: #282829;
  padding: 50px 0;
}

.soma-journey-track {
  height: 480vh;
  /* 5 steps with ample scrolling room */
  position: relative;
  width: 100%;
}

.soma-journey-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #FFFFFF !important;
  padding: 26px 0 20px;
  box-sizing: border-box;
}

/* Top bar: Heading & Live Stepper */
.journey-top-bar {
  text-align: center;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  padding-bottom: 20px;
}

.journey-section-head {
  max-width: 760px;
  margin: 0 auto 14px;
  text-align: center;
}

.journey-section-head h2 {
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  color: #282829;
  margin: 0 0 8px 0;
}

.journey-section-head h2 em {
  font-style: italic;

  text-shadow: none;
}

.journey-section-head .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin: 0 auto;
  max-width: 680px;
}

/* Stepper Navigation */
.journey-stepper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #F5F4EE;
  border: 1px solid #E5E2D9;
  border-radius: 999px;
  padding: 6px 14px;
  max-width: 900px;
  margin: 0 auto;
}

.journey-step-btn {
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #555555;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  font-size: 12px;
}

.journey-step-btn:hover {
  color: #282829;
  background: rgba(0, 0, 0, 0.05);
}

.journey-step-btn.active {
  background: linear-gradient(135deg, #4B4752 0%, #5D5966 100%);
  color: #FFFCC6;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(75, 71, 82, 0.25);
  border: 1px solid rgba(75, 71, 82, 0.2);
}

.journey-step-btn .step-num {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  opacity: 0.85;
}

.journey-step-btn.active .step-num {
  color: #2a2047;
  background: #FFFCC6;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 10px;
}

.step-line {
  width: 16px;
  height: 1px;
  background: #DDD8CE;
  flex-shrink: 0;
}

/* Viewport and Horizontal Slides */
.journey-viewport {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.journey-slides-wrap {
  display: flex;
  width: 500vw;
  height: 100%;
  will-change: transform;
}

.journey-slide {
  position: relative;
  overflow: hidden;
  width: calc(100vw - 48px);
  min-width: calc(100vw - 48px);
  max-width: calc(100vw - 48px);
  margin: 0 24px;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 24px 4vw 32px;
  background: #4B4752 !important;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(75, 71, 82, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 1 !important;
  transform: none !important;
  color: #FFFFFF;
}

/* Background image & gradient overlay (Exact match to 2nd section cards) */
.journey-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  border-radius: inherit;
}

.journey-slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.88;
  filter: saturate(1.15) contrast(1.08);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.journey-slide:hover .journey-slide-bg-img {
  transform: scale(1.03);
}

.journey-slide-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(75, 71, 82, 0.98) 0%,
      rgba(75, 71, 82, 0.95) 38%,
      rgba(93, 89, 102, 0.47) 55%,
      rgba(93, 89, 102, 0) 75%,
      rgba(117, 117, 117, 0) 100%) !important;
  pointer-events: none;
}

.journey-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 252, 198, 0.08) 0%, transparent 20%, transparent 80%, rgba(40, 40, 41, 0.35) 100%);
  pointer-events: none;
}

.journey-slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1360px;
}

/* Left Slide Info */
.journey-slide-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 650px;
}

.journey-badge {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #FFFCC6;
  background: #2a2047;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 252, 198, 0.25);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.journey-badge::before {
  display: none;
}

.journey-title {
  font-family: var(--font-display, 'IBM Plex Serif', serif);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 16px 0;
}

.journey-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(237, 236, 228, 0.85);
  margin: 0 0 24px 0;
}

.journey-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.journey-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.journey-highlights .hl-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #2a2047;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: #FFFCC6;
}

.journey-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: #2a2047;
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(42, 32, 71, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.25s ease;
  width: fit-content;
}

.journey-btn-primary:hover {
  background: #3b2e61;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(42, 32, 71, 0.6);
  border-color: rgba(255, 252, 198, 0.4);
}

.journey-btn-primary .btn-arrow {
  transition: transform 0.25s ease;
}

.journey-btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Right Mockup Containers */
.journey-slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.journey-card-mockup {
  width: 100%;
  max-width: 500px;
  background: rgba(33, 31, 37, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(196, 98, 45, 0.08);
  transition: transform 0.3s ease;
}

.journey-card-mockup:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 252, 198, 0.25);
}

/* Mockup Header */
.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(20, 19, 23, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-dots span:nth-child(1) {
  background: #e06c75;
}

.mockup-dots span:nth-child(2) {
  background: #e5c07b;
}

.mockup-dots span:nth-child(3) {
  background: #98c379;
}

.mockup-title {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
}

.mockup-status {
  font-size: 11px;
  color: #98c379;
  font-family: var(--font-mono, monospace);
  text-transform: uppercase;
}

.mockup-status.tag-free {
  color: #FFFCC6;
  background: rgba(255, 252, 198, 0.12);
  border: 1px solid rgba(255, 252, 198, 0.25);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}

/* Mockup Body Elements */
.mockup-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mockup-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-brand-row .om-symbol {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2047 0%, #3b2e61 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #FFFCC6;
  font-weight: 700;
}

.mockup-brand-row h4 {
  margin: 0;
  font-size: 15px;
  color: #FFFFFF;
}

.mockup-brand-row p {
  margin: 2px 0 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.mockup-fake-field {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
}

.field-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
  font-family: var(--font-mono, monospace);
}

.field-val {
  font-size: 13.5px;
  color: #EDECE4;
  font-weight: 500;
}

.field-otp {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.field-otp span {
  width: 32px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(42, 32, 71, 0.6);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #FFFCC6;
}

.mockup-fake-btn {
  background: #2a2047;
  color: #FFFFFF;
  padding: 11px 16px;
  border-radius: 9px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(42, 32, 71, 0.4);
}

.mockup-fake-btn.mockup-btn-gold {
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  color: #FFFCC6;
  border: 1px solid rgba(255, 252, 198, 0.25);
}

.mockup-footnote {
  text-align: center;
  font-size: 12px;
  color: #98c379;
  font-family: var(--font-mono, monospace);
}

.mockup-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Step 3 Diagnosis Mockup Specifics */
.dasha-alert-box {
  background: rgba(196, 98, 45, 0.12);
  border: 1px solid rgba(196, 98, 45, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
}

.dasha-alert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.dasha-alert-header strong {
  color: #FFFCC6;
  font-size: 13.5px;
}

.badge-active {
  font-size: 11px;
  font-family: var(--font-mono, monospace);
  color: #98c379;
}

.dasha-alert-box p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.remedy-match-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 252, 198, 0.22);
  border-radius: 12px;
  padding: 14px;
}

.remedy-pill {
  font-size: 10px;
  font-family: var(--font-mono, monospace);
  text-transform: uppercase;
  color: #FFFCC6;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.remedy-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.remedy-thumb {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.remedy-details {
  flex: 1;
}

.remedy-details h5 {
  margin: 0 0 3px 0;
  font-size: 13px;
  color: #FFFFFF;
}

.remedy-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  display: block;
}

.remedy-price {
  font-family: var(--font-mono, monospace);
  font-size: 14px;
  font-weight: 700;
  color: #FFFCC6;
}

.mockup-guarantee-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* Step 4 Live Chat Mockup Specifics */
.mockup-chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(20, 19, 23, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2a2047;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.chat-agent strong {
  display: block;
  font-size: 13.5px;
  color: #FFFFFF;
}

.agent-state {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #98c379;
}

.dot-online {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #98c379;
}

.chat-wallet-meter {
  text-align: right;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px 10px;
}

.meter-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  text-transform: uppercase;
}

.meter-val {
  font-family: var(--font-mono, monospace);
  font-size: 13px;
  font-weight: 700;
  color: #FFFCC6;
  display: block;
}

.meter-rate {
  font-size: 9.5px;
  color: #98c379;
  display: block;
}

.mockup-chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  max-width: 86%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.5;
}

.bubble-user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border-bottom-right-radius: 2px;
}

.bubble-ai {
  align-self: flex-start;
  background: rgba(42, 32, 71, 0.25);
  border: 1px solid rgba(42, 32, 71, 0.45);
  color: #FFFCC6;
  border-bottom-left-radius: 2px;
  display: flex;
  gap: 8px;
}

.ai-sparkle {
  color: #2a2047;
  font-size: 14px;
  flex-shrink: 0;
}

.mockup-chat-footer {
  padding: 12px 16px;
  background: rgba(20, 19, 23, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-recharge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.quick-recharge-pill .chip {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-mono, monospace);
  font-size: 11px;
}

.quick-recharge-pill .chip.active {
  background: #2a2047;
  color: #FFFFFF;
  border-color: #2a2047;
  font-weight: 700;
}

/* Step 5 Dashboard Mockup Specifics */
.dash-preview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.dash-stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.stat-k {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-family: var(--font-mono, monospace);
  margin-bottom: 2px;
}

.stat-v {
  font-size: 12px;
  font-weight: 600;
  color: #EDECE4;
}

.stat-v.highlight {
  color: #FFFCC6;
}

.dash-mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
}

.mini-icon {
  font-size: 18px;
}

.mini-info {
  flex: 1;
}

.mini-info strong {
  display: block;
  font-size: 12.5px;
  color: #FFFFFF;
}

.mini-info span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.badge-transit,
.badge-saved {
  font-size: 10px;
  font-family: var(--font-mono, monospace);
  padding: 3px 8px;
  border-radius: 999px;
}

.badge-transit {
  background: rgba(152, 195, 121, 0.15);
  color: #98c379;
  border: 1px solid rgba(152, 195, 121, 0.3);
}

.badge-saved {
  background: rgba(255, 252, 198, 0.12);
  color: #FFFCC6;
  border: 1px solid rgba(255, 252, 198, 0.25);
}

/* ─── Responsive Media Queries for Journey ─── */
@media (max-width: 1024px) {
  .journey-slide-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
  }

  .journey-slide-info {
    text-align: center;
    align-items: center;
  }

  .journey-highlights {
    align-items: flex-start;
  }

  .journey-stepper {
    max-width: 95%;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 6px 10px;
  }
}

@media (max-width: 768px) {
  .soma-journey-section {
    padding: 24px 0 !important;
    display:none;
  }

  .soma-journey-track {
    height: 260vh !important;
    /* Snappy, fluid on-scroll distance instead of 420vh */
  }

  .soma-journey-sticky {
    padding: 10px 0 14px !important;
    height: 100dvh !important;
    min-height: 560px !important;
    justify-content: flex-start !important;
    gap: 8px !important;
  }

  .journey-top-bar {
    padding-bottom: 6px !important;
  }

  .journey-section-head {
    margin: 0 auto 6px !important;
  }

  .journey-section-head h2 {
    font-size: 22px !important;
    margin-bottom: 2px !important;
  }

  .journey-section-head .desc {
    font-size: 11px !important;
    line-height: 1.35 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    max-width: 340px !important;
    margin: 0 auto !important;
  }

  .journey-stepper {
    max-width: 100% !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 4px 8px !important;
    gap: 4px !important;
    justify-content: flex-start !important;
    border-radius: 999px !important;
  }

  .journey-stepper::-webkit-scrollbar {
    display: none !important;
  }

  .journey-step-btn {
    padding: 4px 10px !important;
    font-size: 11px !important;
    gap: 5px !important;
    flex-shrink: 0 !important;
  }

  .journey-step-btn .step-label {
    display: inline-block !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
  }

  .journey-step-btn.active {
    background: #2a2047 !important;
    color: #ffffff !important;
    border-color: #2a2047 !important;
  }

  .journey-step-btn.active .step-num {
    background: #ffffff !important;
    color: #2a2047 !important;
  }

  .step-line {
    width: 6px !important;
  }

  .journey-viewport {
    flex: 1 !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: stretch !important;
  }

  .journey-slide {
    width: calc(100vw - 20px) !important;
    min-width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    margin: 0 10px !important;
    border-radius: 18px !important;
    padding: 12px 14px 14px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .journey-slide::-webkit-scrollbar {
    display: none !important;
  }

  .journey-slide-inner {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    max-width: 100% !important;
  }

  .journey-slide-info {
    text-align: left !important;
    align-items: flex-start !important;
  }

  .journey-badge {
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 3px !important;
  }

  .journey-title {
    font-size: 15.5px !important;
    line-height: 1.25 !important;
    margin-bottom: 3px !important;
    color: #FFFCC6 !important;
  }

  .journey-desc {
    font-size: 11px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin-bottom: 6px !important;
  }

  .journey-highlights {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    margin-bottom: 6px !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .journey-highlights li {
    font-size: 10px !important;
    line-height: 1.25 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(4px) !important;
    padding: 2px 7px !important;
    border-radius: 5px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    color: #f1f5f9 !important;
  }

  .journey-actions {
    margin-bottom: 2px !important;
  }

  .journey-btn-primary {
    padding: 6px 14px !important;
    font-size: 11px !important;
    border-radius: 999px !important;
  }

  .journey-slide-visual {
    width: 100% !important;
  }

  .journey-card-mockup {
    padding: 0 !important;
    border-radius: 12px !important;
    font-size: 11.5px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22) !important;
  }

  .mockup-header {
    padding: 6px 10px !important;
  }

  .mockup-title {
    font-size: 10.5px !important;
  }

  .mockup-status {
    font-size: 8.5px !important;
    padding: 2px 5px !important;
  }

  .mockup-body {
    padding: 8px 10px !important;
  }

  .mockup-brand-row {
    margin-bottom: 6px !important;
  }

  .mockup-brand-row h4 {
    font-size: 12px !important;
    margin: 0 !important;
  }

  .mockup-brand-row p {
    font-size: 10px !important;
  }

  .mockup-fake-field {
    margin-bottom: 5px !important;
  }

  .field-label {
    font-size: 9px !important;
    margin-bottom: 1px !important;
  }

  .field-val {
    padding: 5px 8px !important;
    font-size: 11px !important;
    border-radius: 5px !important;
  }

  .field-otp {
    gap: 5px !important;
  }

  .field-otp span {
    width: 28px !important;
    height: 30px !important;
    font-size: 13px !important;
  }

  .mockup-fake-btn {
    padding: 7px !important;
    font-size: 11px !important;
    margin-top: 5px !important;
    border-radius: 6px !important;
  }

  .mockup-footnote {
    font-size: 9.5px !important;
    margin-top: 3px !important;
  }

  .mockup-grid-2 {
    grid-template-columns: 1fr 1fr !important;
    gap: 5px !important;
  }

  .mockup-chat-head {
    padding: 6px 10px !important;
  }

  .agent-avatar {
    width: 26px !important;
    height: 26px !important;
    font-size: 11px !important;
  }

  .mockup-chat-body {
    padding: 6px 8px !important;
    gap: 5px !important;
    max-height: 120px !important;
    overflow-y: auto !important;
  }

  .chat-bubble {
    padding: 5px 8px !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    border-radius: 8px !important;
  }

  .dash-preview-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 4px !important;
    margin-bottom: 6px !important;
  }

  .dash-stat-box {
    padding: 5px 3px !important;
    text-align: center !important;
  }

  .stat-k {
    font-size: 8px !important;
  }

  .stat-v {
    font-size: 10.5px !important;
  }

  .dash-mini-card {
    padding: 5px 7px !important;
    margin-bottom: 3px !important;
  }

  .mini-icon {
    font-size: 13px !important;
  }

  .mini-info strong {
    font-size: 10.5px !important;
  }

  .mini-info span {
    font-size: 9px !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   SOMA NATIVE LUXURY SIDE CART DRAWER STYLES
══════════════════════════════════════════════════════════════ */
.soma-sidecart-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.35s ease;
}

.soma-sidecart-overlay.active,
.soma-sidecart-overlay.open,
#soma-sidecart-overlay.active,
#soma-sidecart-overlay.open {
  visibility: visible !important;
  pointer-events: auto !important;
  display: block !important;
}

.soma-sidecart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 13, 16, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.soma-sidecart-overlay.active .soma-sidecart-backdrop,
.soma-sidecart-overlay.open .soma-sidecart-backdrop,
#soma-sidecart-overlay.active #soma-sidecart-backdrop,
#soma-sidecart-overlay.open #soma-sidecart-backdrop,
.soma-sidecart-backdrop.active,
.soma-sidecart-backdrop.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.soma-sidecart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  max-height: 100vh;
  background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
  color: #f7f3ee !important;
  z-index: 1000000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.55);
  border-left: 1px solid rgba(255, 252, 198, 0.12);
  box-sizing: border-box;
}

.soma-sidecart-overlay.active .soma-sidecart-drawer,
.soma-sidecart-overlay.open .soma-sidecart-drawer,
#soma-sidecart-overlay.active #soma-sidecart-drawer,
#soma-sidecart-overlay.open #soma-sidecart-drawer,
.soma-sidecart-drawer.active,
.soma-sidecart-drawer.open {
  transform: translateX(0) !important;
}

.soma-sidecart-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Header */
.soma-sidecart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.soma-sidecart-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.soma-sidecart-icon {
  color: #FFFCC6;
  font-size: 14px;
}

.soma-sidecart-title {
  font-family: var(--font-display, inherit);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.02em;
}

.soma-sidecart-count-badge {
  background: #5c8dec;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  line-height: 1.1;
}

.soma-sidecart-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2ded8;
  cursor: pointer;
  transition: all 0.22s ease;
  padding: 0;
}

.soma-sidecart-close-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFCC6;
  transform: rotate(90deg);
}

/* Shipping Progress Meter */
.soma-sidecart-shipping-meter {
  padding: 12px 22px;
  background: rgba(255, 252, 198, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.soma-shipping-meter-text {
  font-size: 12px;
  color: #e2ded8;
  margin-bottom: 8px;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.soma-shipping-meter-text .amount,
.soma-shipping-meter-text .woocommerce-Price-amount {
  color: #FFFCC6;
  font-weight: 700;
}

.soma-shipping-unlocked {
  color: #FFFCC6;
  font-weight: 600;
}

.soma-shipping-meter-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.soma-shipping-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #bfa15f 0%, #FFFCC6 100%);
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(255, 252, 198, 0.5);
}

/* Body / Items */
.soma-sidecart-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 18px 22px;
}

.soma-sidecart-body::-webkit-scrollbar {
  width: 4px;
}

.soma-sidecart-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 4px;
}

/* Empty State */
.soma-sidecart-empty {
  text-align: center;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

.soma-empty-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 252, 198, 0.05);
  border: 1px solid rgba(255, 252, 198, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #FFFCC6;
}

.soma-empty-star {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 14px;
  color: #FFFCC6;
  animation: pulseGold 2s infinite ease-in-out;
}

@keyframes pulseGold {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.soma-empty-title {
  font-family: var(--font-display, inherit);
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.soma-empty-sub {
  font-size: 13.5px;
  color: #a49ea8;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 280px;
}

/* Items List */
.soma-sidecart-items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.soma-sidecart-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
  position: relative;
}

.soma-sidecart-item.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

.soma-sidecart-item.is-removing {
  opacity: 0;
  transform: translateX(40px);
}

.soma-sidecart-item-thumb {
  width: 74px;
  height: 82px;
  border-radius: 10px;
  overflow: hidden;
  background: #141316;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.soma-sidecart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.soma-sidecart-item-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.soma-sidecart-item-cat {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFCC6;
  opacity: 0.8;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.soma-sidecart-item-name {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 6px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.soma-sidecart-item-name a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.18s;
}

.soma-sidecart-item-name a:hover {
  color: #FFFCC6;
}

.soma-sidecart-item-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.soma-sidecart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: #FFFCC6;
}

.soma-sidecart-item-mrp {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.soma-sidecart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* Stepper Pill */
.soma-sidecart-qty-stepper {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 2px 4px;
}

.soma-sidecart-qty-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s;
  padding: 0;
  line-height: 1;
}

.soma-sidecart-qty-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFCC6;
}

.soma-sidecart-qty-val {
  min-width: 24px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
}

.soma-sidecart-item-remove {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s, transform 0.18s;
}

.soma-sidecart-item-remove:hover {
  color: #ef4444;
  transform: scale(1.1);
}

/* Footer */
.soma-sidecart-footer {
  padding: 18px 22px 24px;
  background: #19181c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.soma-sidecart-subtotal-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.soma-subtotal-label {
  display: flex;
  flex-direction: column;
}

.soma-subtotal-label span {
  font-size: 15px;
  font-weight: 600;
  color: #e2ded8;
}

.soma-subtotal-label small {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
}

.soma-subtotal-amount {
  font-family: var(--font-display, inherit);
  font-size: 20px;
  font-weight: 700;
  color: #FFFCC6;
}

/* Trust Badges Strip */
.soma-sidecart-trust-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 10px 0;
  margin-bottom: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.soma-trust-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

.soma-trust-chip .chip-dot {
  color: #FFFCC6;
  font-size: 8px;
}

/* Primary CTA Button */
.soma-sidecart-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background: #5c8dec !important;
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(92, 141, 236, 0.42);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
}

.soma-sidecart-btn-primary:hover {
  background: #4676dd !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(92, 141, 236, 0.55);
}

.soma-sidecart-btn-primary:active {
  transform: scale(0.98);
}

.soma-sidecart-btn-primary .btn-arrow {
  font-size: 16px;
  transition: transform 0.2s;
}

.soma-sidecart-btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.soma-sidecart-secondary-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.soma-sidecart-link-cart,
.soma-sidecart-link-continue {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.18s;
}

.soma-sidecart-link-cart:hover,
.soma-sidecart-link-continue:hover {
  color: #FFFCC6;
}

.soma-sidecart-secondary-links .sep {
  color: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .soma-sidecart-drawer {
    width: 100% !important;
    max-width: 100% !important;
    border-left: none !important;
  }

  .soma-sidecart-header {
    padding: 16px 18px 12px;
  }

  .soma-sidecart-body {
    padding: 14px 18px;
  }

  .soma-sidecart-footer {
    padding: 16px 18px 20px;
  }
}

/* Cart & Order Summary Badges */
.nav-actions .soma-cart-badge,
.soma-sidecart-count-badge,
.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
  background: linear-gradient(135deg,
      #4B4752 0%,
      #5d5966 50%,
      #757575 100%) !important;


  z-index: 1;
  font-size: 12px !important;
  border: 1px solid red;
  animation: soma-wave-spread 1.8s ease-out infinite !important;
}



/* Ripple animation */
@keyframes soma-wave-spread {
  0% {
    transform: scale(1);

  }

  70% {
    transform: scale(1.8);

  }

  100% {
    transform: scale(1);

  }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE DUAL FLOATING ACTIONS (SUPPORT & CHAT WITH SOMA AI)
══════════════════════════════════════════════════════════════ */
.soma-mobile-floating-actions {
  display: none;
}

.soma-support-sheet-overlay {
  display: none;
}

@media (max-width: 768px) {
  .soma-mobile-floating-actions,
  .soma-float-actions-container {
    display: none !important;
  }

  /* ─── SUPPORT QUESTIONS BOTTOM SHEET ─── */
  .soma-support-sheet-overlay {
    display: block !important;
    position: fixed;
    inset: 0;
    z-index: 999999;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: visibility 0.32s ease, opacity 0.32s ease;
  }

  .soma-support-sheet-overlay.active {
    visibility: visible !important;
    pointer-events: auto !important;
    opacity: 1 !important;
  }

  .soma-support-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(14, 13, 16, 0.76);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .soma-support-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 88vh;
    width: 100%;
    background: linear-gradient(135deg, #675E81 0%, #58475a 50%, #71678a 100%) !important;
    color: #f7f3ee !important;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    border-top: 1px solid rgba(255, 252, 198, 0.22);
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    z-index: 1000000;
  }

  .soma-support-sheet-overlay.active .soma-support-sheet {
    transform: translateY(0);
  }

  .soma-support-grab-bar {
    width: 42px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    margin: 10px auto 4px;
    flex-shrink: 0;
  }

  .soma-support-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 14px 20px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .soma-support-badge {
    font-size: 10px;
    font-family: var(--font-mono);
    color: #FFFCC6;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 4px;
  }

  .soma-support-title {
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
  }

  .soma-support-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    line-height: 1.4;
  }

  .soma-support-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FFFCC6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .soma-support-body {
    padding: 16px 18px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
  }

  /* FAQ Cards */
  .soma-support-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }

  .soma-faq-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s;
  }

  .soma-faq-card.is-open {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 252, 198, 0.3);
  }

  .soma-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #FFFFFF;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .soma-faq-trigger .faq-icon {
    font-size: 15px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
  }

  .soma-faq-trigger .faq-question {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.35;
  }

  .soma-faq-card.is-open .faq-question {
    color: #FFFCC6;
  }

  .soma-faq-trigger .faq-arrow {
    font-size: 11px;
    color: #FFFCC6;
    transition: transform 0.28s ease;
    flex-shrink: 0;
  }

  .soma-faq-card.is-open .faq-arrow {
    transform: rotate(180deg);
  }

  .soma-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.24s ease;
    padding: 0 14px;
  }

  .soma-faq-card.is-open .soma-faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: 2px 14px 14px;
  }

  .soma-faq-answer p {
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
  }

  /* Support Action Buttons at Bottom */
  .soma-support-actions-box {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px 16px;
    text-align: center;
  }

  .support-actions-title {
    font-size: 12px;
    font-weight: 700;
    color: #FFFCC6;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
  }

  .support-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .support-act-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease;
  }

  .support-act-btn:active {
    transform: scale(0.97);
  }

  .support-act-wa {
    background: #25D366 !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  }

  .support-act-ai {
    background: linear-gradient(135deg, #c4622d 0%, #a84b29 100%) !important;
    color: #FFFCC6 !important;
    border: 1px solid rgba(255, 252, 198, 0.3);
    box-shadow: 0 4px 16px rgba(196, 98, 45, 0.4);
  }

  .support-act-email {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
  }
}

/* ══════════════════════════════════════════════════════════════
   SOMA SACRED LUXURY COOKIE CONSENT BANNER / POPUP
══════════════════════════════════════════════════════════════ */
/* Backdrop for mandatory interaction */
.soma-cookie-backdrop {
  display: none !important;
  position: fixed;
  inset: 0;
  background: rgba(18, 14, 24, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999998;
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.soma-cookie-backdrop.soma-backdrop-show {
  display: none !important;
  opacity: 1 !important;
}

.soma-cookie-banner {
  display: none !important;
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 440px;
  width: calc(100% - 48px);
  z-index: 999999;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1), transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.soma-cookie-banner.soma-banner-modal {
  bottom: 50% !important;
  left: 50% !important;
  right: auto !important;
  transform: translate(-50%, 50%) scale(1) !important;
  max-width: 460px !important;
  z-index: 999999 !important;
}

.soma-cookie-banner.soma-banner-show {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}

.soma-cookie-banner.soma-banner-modal.soma-banner-show {
  transform: translate(-50%, 50%) scale(1) !important;
}

.soma-cookie-banner.soma-banner-hide {
  opacity: 0 !important;
  transform: translateY(24px) scale(0.97) !important;
  pointer-events: none !important;
}

.soma-cookie-card {
  background: linear-gradient(135deg, rgba(58, 54, 64, 0.97) 0%, rgba(75, 71, 82, 0.97) 50%, rgba(93, 89, 102, 0.96) 100%) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 252, 198, 0.22) !important;
  border-radius: 18px !important;
  padding: 20px 22px !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.48), 0 0 1px rgba(255, 252, 198, 0.35) !important;
  color: #FFFFFF !important;
  box-sizing: border-box !important;
  position: relative !important;
}

/* Header */
.soma-cookie-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 12px !important;
}

.soma-cookie-badge-wrap {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.soma-cookie-emblem {
  color: #FFFCC6 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  animation: soma-sparkle-glow 3s ease-in-out infinite alternate;
}

@keyframes soma-sparkle-glow {
  0% {
    transform: scale(1);
    opacity: 0.9;
    filter: drop-shadow(0 0 2px rgba(255, 252, 198, 0.3));
  }

  100% {
    transform: scale(1.08);
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(255, 252, 198, 0.7));
  }
}

.soma-cookie-tag {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #FFFCC6 !important;
  font-family: var(--font-mono, monospace) !important;
}

.soma-cookie-close-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: all 0.2s ease !important;
}

.soma-cookie-close-btn:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 252, 198, 0.35) !important;
  transform: scale(1.05);
}

/* Content */
.soma-cookie-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #FFFCC6 !important;
  margin: 0 0 6px 0 !important;
  font-family: var(--font-display, serif) !important;
  line-height: 1.35 !important;
}

.soma-cookie-desc {
  font-size: 12.5px !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.84) !important;
  margin: 0 0 16px 0 !important;
}

.soma-cookie-policy-link {
  color: #FFFCC6 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  font-weight: 600 !important;
  margin-left: 4px !important;
  transition: color 0.2s ease;
}

.soma-cookie-policy-link:hover {
  color: #FFFFFF !important;
}

/* Granular Preferences Box */
.soma-cookie-prefs-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(0, 0, 0, 0.26) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  margin-bottom: 14px !important;
}

.soma-cookie-pref-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
}

.soma-cookie-pref-item .pref-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.soma-cookie-pref-item .pref-name {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #FFFCC6 !important;
}

.soma-cookie-pref-item .pref-desc {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.35 !important;
}

.soma-cookie-pref-item .pref-badge.always-active {
  font-size: 9.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  background: rgba(255, 252, 198, 0.15) !important;
  color: #FFFCC6 !important;
  border: 1px solid rgba(255, 252, 198, 0.3) !important;
  border-radius: 4px !important;
  padding: 3px 6px !important;
  white-space: nowrap !important;
}

/* Toggle Switch */
.soma-toggle-switch {
  position: relative !important;
  display: inline-block !important;
  width: 36px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
}

.soma-toggle-switch input {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
}

.soma-toggle-slider {
  position: absolute !important;
  cursor: pointer !important;
  inset: 0 !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  transition: 0.3s !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.soma-toggle-slider:before {
  position: absolute !important;
  content: "" !important;
  height: 14px !important;
  width: 14px !important;
  left: 2px !important;
  bottom: 2px !important;
  background-color: #FFFFFF !important;
  transition: 0.3s !important;
  border-radius: 50% !important;
}

.soma-toggle-switch input:checked+.soma-toggle-slider {
  background-color: #c4622d !important;
  border-color: #FFFCC6 !important;
}

.soma-toggle-switch input:checked+.soma-toggle-slider:before {
  transform: translateX(16px) !important;
  background-color: #FFFCC6 !important;
}

/* Action Buttons */
.soma-cookie-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
}

.soma-cookie-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 11px 14px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  user-select: none !important;
  border: none !important;
  text-align: center !important;
  font-family: inherit !important;
  -webkit-tap-highlight-color: transparent !important;
}

.soma-cookie-btn:active {
  transform: scale(0.97) !important;
}

/* Accept All Button */
.soma-cookie-accept {
  background: linear-gradient(135deg, #FFFCC6 0%, #E6C280 100%) !important;
  color: #211E26 !important;
  box-shadow: 0 4px 16px rgba(255, 252, 198, 0.28) !important;
}

.soma-cookie-accept:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(255, 252, 198, 0.45) !important;
}

.soma-cookie-accept .btn-sparkle {
  color: #B37D28 !important;
  font-size: 12px !important;
}

/* Reject Button */
.soma-cookie-reject {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 252, 198, 0.24) !important;
}

.soma-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 252, 198, 0.4) !important;
  transform: translateY(-1px) !important;
}

/* Footer Links & Preferences Toggle */
.soma-cookie-footer-links {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.soma-cookie-prefs-toggle {
  background: none !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 2px 0 !important;
  transition: color 0.2s ease !important;
  font-family: inherit !important;
}

.soma-cookie-prefs-toggle:hover {
  color: #FFFCC6 !important;
}

.soma-cookie-prefs-toggle .prefs-toggle-icon {
  transition: transform 0.24s ease !important;
}

.soma-cookie-prefs-toggle.is-open .prefs-toggle-icon {
  transform: rotate(180deg) !important;
}

.soma-cookie-btn-save-prefs {
  background: rgba(255, 252, 198, 0.16) !important;
  border: 1px solid rgba(255, 252, 198, 0.32) !important;
  color: #FFFCC6 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.soma-cookie-btn-save-prefs:hover {
  background: rgba(255, 252, 198, 0.26) !important;
  color: #FFFFFF !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .soma-cookie-banner {
    bottom: 14px !important;
    left: 12px !important;
    right: 12px !important;
    width: calc(100% - 24px) !important;
    max-width: 440px !important;
    margin: 0 auto !important;
  }

  .soma-cookie-card {
    padding: 16px 18px !important;
    border-radius: 16px !important;
  }

  .soma-cookie-title {
    font-size: 15px !important;
  }

  .soma-cookie-desc {
    font-size: 12px !important;
    margin-bottom: 14px !important;
  }

  .soma-cookie-actions {
    gap: 8px !important;
  }

  .soma-cookie-btn {
    padding: 10px 10px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 360px) {
  .soma-cookie-actions {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   VEDIC MUHURTA & SHASTRA SHUDDHI PDP WIDGETS
   ══════════════════════════════════════════════════════════════════════════ */

.pdp-live-buying-bar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.45;
  transition: all 0.3s ease;
}

.pdp-live-buying-bar.pdp-muhurta-shubh {
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.95), rgba(240, 253, 244, 0.95));
  border: 1px solid #a7f3d0;
  color: #064e3b;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
}

.pdp-live-buying-bar.pdp-muhurta-rahu {
  background: linear-gradient(135deg, rgba(254, 242, 242, 0.95), rgba(255, 241, 242, 0.95));
  border: 1px solid #fecaca;
  color: #991b1b;
}

.pdp-live-buying-bar.pdp-muhurta-mod {
  background: linear-gradient(135deg, rgba(254, 252, 232, 0.95), rgba(255, 251, 235, 0.95));
  border: 1px solid #fef08a;
  color: #854d0e;
}

.buying-bar-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}

.pulse-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: somaPulseGreen 1.8s infinite;
}

.pdp-muhurta-rahu .pulse-dot {
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: somaPulseRed 1.8s infinite;
}

.pdp-muhurta-mod .pulse-dot {
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: somaPulseAmber 1.8s infinite;
}

@keyframes somaPulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes somaPulseRed {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@keyframes somaPulseAmber {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.buying-bar-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.buying-bar-sub {
  font-size: 12px;
  opacity: 0.9;
}

/* Vedic Muhurta Section */
.pdp-vedic-muhurta-section {
  background: #fdfbf7;
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 24px 0;
  box-shadow: 0 4px 16px rgba(180, 83, 9, 0.04);
}

.muhurta-sec-header {
  margin-bottom: 18px;
}

.muhurta-sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef3c7;
  color: #92400e;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.muhurta-sec-title {
  font-family: var(--font-display, serif);
  font-size: 19px;
  color: #1f2937;
  margin: 0 0 6px;
}

.muhurta-sec-desc {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.muhurta-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .muhurta-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.muhurta-grid-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.muhurta-grid-item:hover {
  border-color: #d97706;
  transform: translateY(-2px);
}

.m-item-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.m-item-icon {
  font-size: 14px;
}

.m-item-label {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.m-item-val {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.m-badge-today {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #065f46;
  background: #ecfdf5;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #a7f3d0;
}

.m-badge-info {
  display: inline-block;
  font-size: 11px;
  color: #4b5563;
  background: #f3f4f6;
  padding: 2px 8px;
  border-radius: 4px;
}

.m-badge-warn {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #991b1b;
  background: #fef2f2;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #fecaca;
}

.m-badge-hora {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #854d0e;
  background: #fefce8;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #fef08a;
}

.m-btn-kundli-check {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #b45309;
  text-decoration: none;
  background: #fef3c7;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #fde68a;
  transition: all 0.2s ease;
}

.m-btn-kundli-check:hover {
  background: #fde68a;
  color: #78350f;
  text-decoration: none;
}

.muhurta-sec-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(217, 119, 6, 0.2);
}

.m-footer-note {
  font-size: 12px;
  color: #78350f;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .muhurta-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   FULL-WIDTH DETAILED VEDIC MUHURTA & SHASTRA SHUDDHI SECTION
   ══════════════════════════════════════════════════════════════════════════ */

.pdp-muhurta-detailed-section {
  padding: 60px 0;
  background: #fffcf8;
  border-top: 1px solid #f0eae1;
  border-bottom: 1px solid #f0eae1;
  margin-top: 40px;
}

.muhurta-detailed-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.muhurta-full-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 40px;
}

.muhurta-om-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef3c7;
  color: #92400e;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid #fde68a;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.muhurta-main-title {
  font-family: var(--font-display, serif);
  font-size: 30px;
  color: #111827;
  margin: 0 0 12px;
  font-weight: 800;
  line-height: 1.35;
}

.muhurta-main-sub {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.muhurta-two-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.muhurta-pillar-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.muhurta-pillar-card.pillar-buying {
  border-top: 4px solid #10b981;
}

.muhurta-pillar-card.pillar-dharan {
  border-top: 4px solid #d97706;
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pillar-icon {
  font-size: 32px;
  line-height: 1;
}

.pillar-tag {
  font-size: 11px;
  font-weight: 800;
  color: #9ca3af;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
}

.pillar-title {
  font-size: 20px;
  margin: 0;
  color: #111827;
  font-weight: 700;
}

.pillar-status-pill {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pillar-status-pill.status-green {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.pillar-status-pill.status-amber {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.pillar-status-pill.status-gold {
  background: #fefce8;
  color: #854d0e;
  border: 1px solid #fef08a;
}

.pillar-rule-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 18px;
}

.pillar-data-box {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  margin-top: auto;
}

.pillar-data-box .data-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.pillar-data-box .data-label {
  color: #6b7280;
  font-weight: 600;
  min-width: 120px;
}

.pillar-data-box .data-val {
  color: #111827;
  text-align: right;
  font-weight: 600;
}

.pillar-data-box .data-val.highlight {
  color: #059669;
  font-weight: 700;
}

/* Tithi Table Card */
.muhurta-tithi-table-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.card-mini-head {
  margin-bottom: 18px;
}

.card-mini-head h4 {
  font-size: 18px;
  color: #111827;
  margin: 0 0 6px;
  font-weight: 700;
}

.card-mini-head p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.tithi-table-responsive {
  overflow-x: auto;
}

.soma-tithi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.5;
}

.soma-tithi-table th {
  background: #f9fafb;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: #374151;
  border-bottom: 2px solid #e5e7eb;
}

.soma-tithi-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
  color: #1f2937;
  vertical-align: middle;
}

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

.soma-tithi-table tr.active-tithi-row {
  background: #f0fdf4;
  font-weight: 600;
}

.badge-shubh {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #065f46;
  background: #ecfdf5;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid #a7f3d0;
}

.badge-ashubh {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #991b1b;
  background: #fef2f2;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid #fecaca;
}

.tithi-note-warn {
  margin-top: 6px;
  font-size: 12px;
  color: #b45309;
  line-height: 1.4;
}

/* Gochar Shuddhi Card */
.muhurta-gochar-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.gochar-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.gochar-head-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gochar-icon {
  font-size: 26px;
}

.gochar-head-left h4 {
  font-size: 18px;
  color: #111827;
  margin: 0 0 4px;
  font-weight: 700;
}

.gochar-head-left p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.gochar-verified-tag {
  background: #ecfdf5;
  color: #065f46;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #a7f3d0;
}

.gochar-guest-tag {
  background: #fef3c7;
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #fde68a;
}

.gochar-rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.gochar-box {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.dot-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #1f2937;
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.box-title h5 {
  font-size: 15px;
  margin: 0;
  color: #111827;
  font-weight: 700;
}

.box-desc {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 12px;
}

.box-result {
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.45;
}

.box-result.result-pass {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.box-result.result-fail {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.box-result.result-neutral {
  background: #ffffff;
  color: #4b5563;
  border: 1px solid #e5e7eb;
}

.gochar-check-banner {
  margin-top: 20px;
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.gochar-check-banner .banner-left {
  display: flex;
  flex-direction: column;
}

.gochar-check-banner strong {
  color: #92400e;
  font-size: 14px;
}

.gochar-check-banner small {
  color: #78350f;
  font-size: 12px;
}

.btn-kundli-cta {
  background: #b45309;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.25);
  transition: all 0.2s ease;
}

.btn-kundli-cta:hover {
  background: #92400e;
  transform: translateY(-1px);
}

/* Vidhi Steps Card */
.muhurta-vidhi-steps-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.muhurta-vidhi-steps-card h4 {
  font-size: 18px;
  color: #111827;
  margin: 0 0 18px;
  font-weight: 700;
}

.vidhi-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.step-card {
  background: #fafaf9;
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #2a2047;
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card h6 {
  font-size: 14px;
  color: #1c1917;
  margin: 0 0 6px;
  font-weight: 700;
}

.step-card p {
  font-size: 12px;
  color: #57534e;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 768px) {
  .muhurta-main-title {
    font-size: 24px;
  }

  .muhurta-two-pillars {
    grid-template-columns: 1fr;
  }
}

html {
  scroll-behavior: smooth;
}

#pdp-muhurta-detailed-section {
  scroll-margin-top: 80px;
}

/* Buying Bar Anchor Link */
.buying-bar-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #b45309;
  text-decoration: none;
  border-bottom: 1px dashed #d97706;
  transition: all 0.2s ease;
}

.buying-bar-link:hover {
  color: #78350f;
  border-bottom-style: solid;
}

/* Auspicious Timings Grid */
.muhurta-auspicious-times-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.muhurta-times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.time-slot-box {
  background: #fafaf9;
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.time-slot-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.time-slot-box.slot-shubh {
  border-top: 3px solid #10b981;
}

.time-slot-box.slot-most-shubh {
  border-top: 3px solid #059669;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.time-slot-box.slot-caution {
  border-top: 3px solid #ef4444;
  background: #fff5f5;
  border-color: #fed7d7;
}

.time-slot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.time-slot-title {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.time-slot-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
}

.time-slot-badge.badge-green {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.time-slot-badge.badge-gold {
  background: #fefce8;
  color: #854d0e;
  border: 1px solid #fef08a;
}

.time-slot-badge.badge-red {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.time-slot-val {
  font-family: var(--font-mono, monospace);
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.time-slot-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}

/* Associated Planet Shubha Hora Schedule Card */
.muhurta-hora-schedule-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.hora-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hora-slot-item {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s ease;
}

.hora-slot-item.active-hora {
  background: #ecfdf5;
  border-color: #10b981;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.15);
}

.hora-slot-time {
  font-family: var(--font-mono, monospace);
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.hora-slot-status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #6b7280;
}

.hora-slot-item.active-hora .hora-slot-status {
  color: #059669;
}

/* Sacred Shloka Card */
.muhurta-shloka-card {
  background: #faf8f5;
  border: 1px solid #e7dfd3;
  border-left: 4px solid #b45309;
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 24px;
}

.shloka-sanskrit {
  font-family: var(--font-hi, serif);
  font-size: 17px;
  font-weight: 600;
  color: #78350f;
  margin-bottom: 6px;
  line-height: 1.6;
}

.shloka-translation {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 6px;
}

.shloka-ref {
  font-size: 11px;
  color: #8c7659;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Locked Muhurta Birth Chart Prompt */
.muhurta-locked-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.locked-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b45309;
  background: #fef3c7;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid #fde68a;
  margin-bottom: 14px;
}

.locked-title {
  font-family: var(--font-display, serif);
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px;
}

.locked-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 28px;
}

.locked-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
  margin-bottom: 30px;
}

.locked-feat-box {
  background: #fafaf9;
  border: 1px solid #e7e5e4;
  border-radius: 10px;
  padding: 16px;
}

.locked-feat-num {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 800;
  color: #b45309;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  display: block;
}

.locked-feat-title {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.locked-feat-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}

.locked-cta-btn {
  display: inline-block;
  background: #b45309;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.25);
  transition: all 0.2s ease;
}

.locked-cta-btn:hover {
  background: #92400e;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(180, 83, 9, 0.35);
}

.locked-footnote {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 12px;
}

/* Keep the journey panel usable when the viewport is short. */
@media (max-height: 820px) and (min-width: 769px) {
  .soma-journey-sticky {
    height: max(100vh, 680px);
    min-height: 680px;
  }

  .journey-viewport {
    min-height: 420px;
  }

  .journey-slide {
    align-items: flex-start;
    overflow-y: auto;
    padding-top: clamp(20px, 3vh, 32px);
    padding-bottom: 32px;
    scrollbar-width: thin;
  }

  .journey-slide-inner {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .soma-journey-sticky {
    height: max(100dvh, 560px);
    min-height: 560px;
  }

  .journey-slide {
    align-items: flex-start;
    overflow-y: auto;
  }

  .journey-slide-inner {
    align-items: flex-start;
  }
}