/* ═══════════════════════════════════════════════════════════════════════════
   STUD LOGIX — Visual Harmony System v2.0
   ═══════════════════════════════════════════════════════════════════════════
   Universal CSS fixes applied to ALL pages:
   1. Zero-Overlap Rule — z-index stacking system
   2. Legibility Upgrade — contrast fixes + glass-blur for text on white
   3. Golden Spacing Rule — consistent p-8 padding on containers
   4. Eye-Pleasing Geometry — rounded-2xl cards, shadow-sm
   5. Button Active States — visual feedback on every click
   6. Responsive Overlap Prevention — flex-col + gap-12 stacking
   7. Toast Notification — login prompts, feedback
   8. Emerald Precision Palette — canonical colour tokens
   9. Detail-Page Overlap Fix — sections never collide
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. Z-INDEX STACKING SYSTEM ───────────────────────────────────────────── */
header[class*="sticky"], nav[class*="sticky"] {
  z-index: 50 !important;
  position: sticky;
}
.notif-badge, .cart-count {
  z-index: 5;
}
[class*="brick-float"], .particle-grid, .particle, .ticker-glow {
  z-index: 0 !important;
  pointer-events: none;
}
[class*="lightbox"], [class*="modal"], .fixed.inset-0 {
  z-index: 999;
}
.toast, [role="alert"], [id*="toast"] {
  z-index: 1000;
}


/* ── 2. LEGIBILITY UPGRADE — Contrast & Glass Blur ────────────────────────── */
footer a, footer p, footer span,
.text-\[\#64748B\],
[class*="text-on-surface-variant"] {
  color: #475569 !important;
}
/* Canonical brand colors — force correct values, not "revert" */
.text-primary,
[class*="text-primary"]:not([class*="text-on-primary"]) {
  color: #006a28 !important;
}
.text-on-primary,
[class*="text-on-primary"],
.bg-primary > *,
button.bg-primary,
a.bg-primary,
button[class*="bg-primary"]:not([class*="bg-primary/"]):not([class*="bg-primary-container"]),
a[class*="bg-primary"]:not([class*="bg-primary/"]):not([class*="bg-primary-container"]) {
  color: #ffffff !important;
}
/* Preserve white text inside primary-colored buttons even with nested spans */
button.bg-primary *, a.bg-primary *,
button[class*="bg-primary"]:not([class*="bg-primary/"]):not([class*="bg-primary-container"]) *,
a[class*="bg-primary"]:not([class*="bg-primary/"]):not([class*="bg-primary-container"]) * {
  color: inherit;
}
.text-error, [class*="text-error"] { color: #b02500 !important; }
.text-white { color: #ffffff !important; }

.glass-text-bg {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 8px;
}
[class*="opacity-40"], [class*="opacity-30"], [class*="opacity-20"] {
  opacity: 0.6 !important;
}
.dark footer a, .dark footer p, .dark footer span,
.dark [class*="text-on-surface-variant"] {
  color: #94a3b8 !important;
}


/* ── 3. GOLDEN SPACING RULE — Consistent Container Padding (p-8) ─────────── */
.bg-surface-container,
.bg-surface-container-low,
.bg-surface-container-high,
.bg-surface-container-lowest,
[class*="bg-surface-container"] {
  padding: clamp(1.5rem, 5vw, 2rem);
}
/* Don't force padding on structural flex/grid containers */
.bg-surface-container.flex,
.bg-surface-container.grid,
[class*="bg-surface-container"].flex,
[class*="bg-surface-container"].grid {
  padding: unset;
}

.sl-card {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.sl-card > *:first-child { margin-top: 0; }
.sl-card > *:last-child  { margin-bottom: 0; }


/* ── 4. EYE-PLEASING GEOMETRY — Standardized Radius & Shadows ─────────────── */
[class*="shadow-md"], [class*="shadow-lg"], [class*="shadow-xl"] {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.04) !important;
}
[class*="shadow-md"]:hover, [class*="shadow-lg"]:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
}
.dark [class*="shadow-md"], .dark [class*="shadow-lg"], .dark [class*="shadow-xl"] {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
}


/* ── 5. BUTTON ACTIVE STATES — Visual Feedback on Every Click ─────────────── */
/* Scoped to a/button only — never body/div/main/section/header/footer */
a.bg-primary,
button.bg-primary,
a[class*="bg-primary-container"],
button[class*="bg-primary-container"] {
  transition: all 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.bg-primary:active, a.bg-primary:active, button.bg-primary:active {
  transform: scale(0.95) !important;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}
button:not(.bg-primary):not([disabled]),
a[class*="border"]:not(.bg-primary) {
  transition: all 0.15s ease;
}
button:not(.bg-primary):not([disabled]):active {
  transform: scale(0.97);
  opacity: 0.85;
}
button[disabled], [disabled] {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none !important;
}
button[class*="rounded-full"]:active,
a[class*="rounded-full"]:active {
  transform: scale(0.88);
}
input[type="radio"]:checked + span,
input[type="checkbox"]:checked + span {
  color: #006a28;
  font-weight: 700;
}


/* ── 6. RESPONSIVE OVERLAP PREVENTION ─────────────────────────────────────── */
@media (max-width: 768px) {
  .overflow-x-auto {
    -webkit-overflow-scrolling: touch;
  }
  footer .grid {
    gap: 1.5rem !important;
  }
  .grid > [class*="col-span"] {
    min-width: 0;
  }
  /* Detail page hero: stack to column on mobile */
  section[class*="lg:grid-cols"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
}
.relative {
  isolation: isolate;
}


/* ── 7. TOAST NOTIFICATION ────────────────────────────────────────────────── */
.sl-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: #1e293b;
  color: white;
  padding: 14px 28px;
  border-radius: 1rem;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sl-toast.visible {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.sl-toast .sl-toast-icon {
  font-size: 18px;
  color: #5cfd80;
}


/* ── 8. EMERALD PRECISION PALETTE ENFORCEMENT ─────────────────────────────── */
:root {
  --sl-emerald: #006a28;
  --sl-emerald-light: #5cfd80;
  --sl-emerald-surface: rgba(0, 106, 40, 0.06);
  --sl-surface: #f7f5ff;
  --sl-text: #2d2e36;
  --sl-text-secondary: #475569;
  --sl-border: #adacb6;
  --sl-error: #b02500;
}


/* ── 9. DETAIL PAGE OVERLAP FIX ───────────────────────────────────────────── */
/* Ensure sections on detail pages stack cleanly with gap-12 spacing */
main > section + section,
main > div > section + section {
  margin-top: 3rem;
}
/* Prevent grid children from overflowing and causing overlap */
.grid > * {
  min-width: 0;
}


/* ── 10. GLASS BLUR CONTRAST OVERLAY ─────────────────────────────────────── */
/* Ensure text over white/light backgrounds never blends in */

/* Buttons that sit over images (I Own This, Wishlist, Alert) */
[data-action="add-collection"],
button[id*="wanted"],
button[id*="wishlist"],
button[id*="alert"] {
  backdrop-filter: blur(8px) saturate(1.3);
  -webkit-backdrop-filter: blur(8px) saturate(1.3);
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Text badges overlaying light backgrounds */
.absolute [class*="font-bold"],
.absolute [class*="font-black"] {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

/* Generic glass overlay helper — apply to any text sitting on white */
.sl-glass-overlay {
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.dark .sl-glass-overlay {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.04);
}


/* ══════════════════════════════════════════════════════════════════════════
   v1.2 — HUMAN-POLISH FIXES (reduce AI-generated look)
   ══════════════════════════════════════════════════════════════════════════ */

/* ── 11. CARD LAYOUT STABILITY — title/price rows never overlap ─────────── */
/* Any flex row containing an h1/h2/h3/h4 + a price/badge should be stable */
.flex.justify-between > h1,
.flex.justify-between > h2,
.flex.justify-between > h3,
.flex.justify-between > h4,
.flex.justify-between > div:has(h1, h2, h3, h4) {
  min-width: 0;
}
/* Price/badge elements shouldn't shrink when space is tight */
.flex.justify-between > [class*="font-black"],
.flex.justify-between > [class*="font-bold"]:last-child:not(div) {
  flex-shrink: 0;
}

/* Long titles in cards truncate cleanly */
.max-w-sm h3:not(.truncate),
.max-w-md h3:not(.truncate),
.max-w-xs h3:not(.truncate) {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ── 12. STABLE FONT WEIGHTS — stop mixing font-black with thin fonts ─── */
/* Inter renders font-black (900) poorly on small text; cap to 800 below 16px */
[class*="text-xs"][class*="font-black"],
[class*="text-sm"][class*="font-black"] {
  font-weight: 800;
}

/* ── 13. INPUT/TEXTAREA POLISH ──────────────────────────────────────────── */
input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
input[type="number"], input[type="search"], input[type="url"], textarea {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}
input::placeholder, textarea::placeholder {
  color: #94a3b8 !important;
  opacity: 1;
  font-weight: 400;
  font-style: normal;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 106, 40, 0.12) !important;
}

/* ── 14. BUTTON TEXT STABILITY — never let button labels wrap weirdly ──── */
button, a[class*="bg-primary"]:not([class*="w-9"]):not([class*="w-10"]):not([class*="w-11"]) {
  white-space: nowrap;
}
/* Exception: multi-line button content (Sell Now with subtitle) */
button.flex-col, a.flex-col {
  white-space: normal;
}

/* ── 15. GRADIENT STABILISATION — no weird colour transitions ─────────── */
/* Force any gradient involving "primary" to use emerald, not random colours */
[class*="from-primary"] {
  --tw-gradient-from: #006a28;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 106, 40, 0));
}
[class*="to-primary"] {
  --tw-gradient-to: #006a28;
}
[class*="to-secondary"] {
  --tw-gradient-to: #545f73;
}

/* ── 16. CARD HOVER — subtle, not floaty ────────────────────────────── */
[class*="hover:scale-105"]:hover {
  transform: scale(1.02) !important;
}
[class*="hover:scale-110"]:hover {
  transform: scale(1.04) !important;
}
/* Kill jittery infinite animations on main content */
.animate-float {
  animation-duration: 6s !important;
  animation-timing-function: ease-in-out !important;
}

/* ── 17. TEXT OVERFLOW GLOBAL GUARD ────────────────────────────────── */
h1, h2, h3, h4, p, span, a {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ── 18. CONSISTENT BORDER RADIUS — stop mixing 0.25/0.5/0.75/1rem ────── */
.rounded-lg { border-radius: 0.625rem !important; }  /* 10px */
.rounded-xl { border-radius: 0.875rem !important; }  /* 14px */
.rounded-2xl { border-radius: 1.125rem !important; } /* 18px */

/* ── 19. SELL NOW / PRIMARY CTAs — Guarantee white text ────────────── */
a[href*="create_a_listing"].bg-primary,
a[href*="create_a_listing"][class*="bg-primary"],
button.bg-primary,
a.bg-primary {
  color: #ffffff !important;
}
a[href*="create_a_listing"].bg-primary span,
a[href*="create_a_listing"][class*="bg-primary"] span,
button.bg-primary span,
a.bg-primary span {
  color: #ffffff !important;
}


/* ══════════════════════════════════════════════════════════════════════════
   v2.0 — DEEP HUMAN-POLISH LAYER
   Focus: typographic rhythm, spacing scale, dark-mode parity,
          card consistency, form polish, motion subtlety
   ══════════════════════════════════════════════════════════════════════════ */

/* ── 20. TYPOGRAPHIC RHYTHM (Inter font stack + metrics) ─────────────────── */
html {
  font-feature-settings: "kern", "liga", "calt", "ss01";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.005em;
  line-height: 1.55;
}
/* Headings: tighter tracking, consistent leading */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.022em;
  line-height: 1.15;
  font-feature-settings: "kern", "liga", "calt", "ss01", "cv11";
}
h1, [class*="text-5xl"], [class*="text-6xl"], [class*="text-7xl"] { letter-spacing: -0.032em; line-height: 1.05; }
h2, [class*="text-4xl"] { letter-spacing: -0.028em; line-height: 1.1; }
h3, [class*="text-3xl"] { letter-spacing: -0.022em; line-height: 1.15; }
h4, [class*="text-2xl"] { letter-spacing: -0.018em; line-height: 1.2; }
[class*="text-xl"] { letter-spacing: -0.012em; line-height: 1.3; }
[class*="text-lg"] { letter-spacing: -0.008em; line-height: 1.4; }
[class*="text-base"], [class*="text-sm"] { letter-spacing: -0.003em; }
[class*="text-xs"], [class*="text-\[10px\]"], [class*="text-\[11px\]"] {
  letter-spacing: 0.002em;
}

/* Tabular numbers for prices & stats — stops wobble between rows */
[class*="font-black"], [class*="font-bold"],
.text-primary + p, .text-primary + span,
[class*="font-mono"] {
  font-variant-numeric: tabular-nums;
}

/* ── 21. SPACING SCALE NORMALIZATION ─────────────────────────────────────── */
/* Non-standard Tailwind padding like py-3.5, py-2.5 — snap to 4px grid */
[class*="py-3\\.5"], .py-3\.5 { padding-top: 0.875rem !important; padding-bottom: 0.875rem !important; }
[class*="px-3\\.5"], .px-3\.5 { padding-left: 0.875rem !important; padding-right: 0.875rem !important; }
[class*="py-2\\.5"], .py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }

/* ── 22. UNIFIED CARD SURFACE (any .bg-white card behaves like a design-system card) ─ */
.bg-white.rounded-2xl, .bg-white.rounded-xl,
.bg-white[class*="shadow"] {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.dark .bg-white.rounded-2xl, .dark .bg-white.rounded-xl,
.dark .bg-white[class*="shadow"] {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
}

/* ── 23. CONSISTENT SECTION PADDING ─────────────────────────────────────── */
section[class*="py-24"], section[class*="py-20"], section[class*="py-16"] {
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}

/* ── 24. LINK POLISH — no more default blue, no jumpy underlines ───────── */
a:not([class*="text-"]):not([class*="bg-"]) {
  color: #006a28;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:not([class*="text-"]):not([class*="bg-"]):hover {
  color: #14a84a;
}
a[class*="underline"] {
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

/* ── 25. FORM FIELD HEIGHT CONSISTENCY ──────────────────────────────────── */
/* All text-like inputs snap to a consistent 44px tap target */
input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
input[type="number"], input[type="search"], input[type="url"], input[type="date"],
select:not([multiple]) {
  min-height: 44px;
  font-size: 15px;
  line-height: 1.4;
}
/* Small utility override when inline-sized */
input[class*="w-12"], input[class*="w-14"], input[class*="w-16"] {
  min-height: unset;
}
textarea {
  font-size: 15px;
  line-height: 1.5;
}

/* ── 26. CHECKBOX / RADIO VISUAL POLISH ─────────────────────────────────── */
input[type="checkbox"], input[type="radio"] {
  accent-color: #006a28;
  cursor: pointer;
}

/* ── 27. DARK-MODE PARITY — catch stray light-mode-only styles ─────────── */
.dark body { color: #e2e8f0; }
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 { color: #f1f5f9; }
.dark .bg-surface, .dark [class*="bg-surface"]:not([class*="dark:bg"]) {
  background-color: #0f172a;
}
.dark .text-\[\#12131A\], .dark [class*="text-[#12131A]"]:not([class*="dark:text"]) {
  color: #f1f5f9 !important;
}
.dark .text-on-surface, .dark [class*="text-on-surface"]:not([class*="dark:text"]) {
  color: #e2e8f0;
}
.dark [class*="border-gray-100"]:not([class*="dark:border"]) {
  border-color: rgba(255, 255, 255, 0.06);
}

/* ── 28. IMAGE AND ICON STABILITY ────────────────────────────────────── */
img { max-width: 100%; height: auto; }
img[loading="lazy"] { background: #f1f5f9; }
.dark img[loading="lazy"] { background: #1e293b; }
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
  user-select: none;
}
/* Icon + text baseline alignment */
button > .material-symbols-outlined,
a > .material-symbols-outlined,
span > .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* ── 29. MOTION SUBTLETY — respect reduced-motion, tame infinite loops ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
[class*="animate-pulse"], [class*="animate-bounce"], [class*="animate-ping"] {
  animation-duration: 2.4s !important;
}

/* ── 30. SCROLLBAR POLISH (webkit + firefox) ────────────────────────── */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 106, 40, 0.35) transparent;
}
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
  background: rgba(0, 106, 40, 0.25);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
*::-webkit-scrollbar-thumb:hover { background: rgba(0, 106, 40, 0.45); background-clip: padding-box; border: 2px solid transparent; }

/* ── 31. FOOTER UNIFORMITY ─────────────────────────────────────────── */
footer {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
footer h3, footer h4 {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #475569 !important;
  margin-bottom: 1rem !important;
}
.dark footer h3, .dark footer h4 { color: #94a3b8 !important; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 0.5rem; }
footer ul a { font-size: 14px; font-weight: 500; line-height: 1.6; }
footer ul a:hover { color: #006a28 !important; }

/* ── 32. HEADER UNIFORMITY ─────────────────────────────────────────── */
header[class*="sticky"] {
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
}
header nav a, header nav button {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.003em;
}

/* ── 33. TABLE POLISH ─────────────────────────────────────────────── */
table {
  border-collapse: separate;
  border-spacing: 0;
  font-variant-numeric: tabular-nums;
}
table th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #64748b;
}
.dark table th { color: #94a3b8; }

/* ── 34. SELECTION COLOUR ──────────────────────────────────────────── */
::selection { background: rgba(92, 253, 128, 0.55); color: #003b15; }
.dark ::selection { background: rgba(0, 106, 40, 0.7); color: #f0fdf4; }

/* ── 35. HORIZONTAL RULE ────────────────────────────────────────────── */
hr { border: none; border-top: 1px solid rgba(15, 23, 42, 0.08); margin: 1.5rem 0; }
.dark hr { border-top-color: rgba(255, 255, 255, 0.08); }

/* ── 36. FOCUS RING — consistent across all interactive elements ────── */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid #006a28;
  outline-offset: 2px;
  border-radius: 6px;
}

/* ── 37. LABEL POLISH ─────────────────────────────────────────────── */
label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.002em;
  color: #334155;
}
.dark label { color: #cbd5e1; }

/* ── 38. DISABLED STATE — globally dimmed, not opaque ─────────────── */
[disabled], .disabled, [aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── 39. BLOCKQUOTE ───────────────────────────────────────────────── */
blockquote {
  border-left: 3px solid #006a28;
  padding-left: 1rem;
  color: #475569;
  font-style: italic;
}
.dark blockquote { color: #cbd5e1; border-left-color: #5cfd80; }

/* ── 40. KEY AI-TELL KILLERS ──────────────────────────────────────── */
/* Kill the "giant font-black on a chip" look — chips should never use font-black */
[class*="rounded-full"][class*="font-black"][class*="text-xs"],
[class*="rounded-full"][class*="font-black"][class*="text-\[10px\]"],
[class*="rounded-full"][class*="font-black"][class*="text-\[11px\]"] {
  font-weight: 700 !important;
}
/* Soften random drop-shadows on text */
[class*="drop-shadow-2xl"] { filter: drop-shadow(0 4px 6px rgba(0,0,0,0.08)) !important; }
/* Never let a CTA button have a wavy gradient background */
button.bg-primary, a.bg-primary {
  background: #006a28 !important;
}
button.bg-primary:hover, a.bg-primary:hover {
  background: #005420 !important;
}
/* Primary-container buttons get a clean lime background */
button.bg-primary-container, a.bg-primary-container {
  background: #5cfd80 !important;
  color: #003b15 !important;
}
button.bg-primary-container:hover, a.bg-primary-container:hover {
  background: #4be070 !important;
}

