/**
 * Soria Natural Bulgaria - Design System CSS
 * For WordPress Shoptimizer Child Theme + Elementor
 * 
 * This file contains:
 * 1. CSS Custom Properties (Design Tokens)
 * 2. Typography System
 * 3. Color Palette
 * 4. Spacing System
 * 5. Component Styles
 * 6. Animations & Transitions
 * 
 * Usage: Add this file to your WordPress child theme's style.css or
 * import it in Elementor's Custom CSS section
 */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */

:root {
  /* Colors - OKLCH Format (Modern CSS Color Space) */
  --primary: oklch(0.4 0.12 142);
  --primary-foreground: oklch(1 0 0);
  --accent: oklch(0.55 0.15 142);
  --accent-foreground: oklch(0.141 0.005 285.823);
  
  /* Emerald Color Palette (Primary Brand Colors) */
  --emerald-50: oklch(0.97 0.01 142);
  --emerald-100: oklch(0.94 0.03 142);
  --emerald-200: oklch(0.88 0.06 142);
  --emerald-300: oklch(0.80 0.10 142);
  --emerald-400: oklch(0.70 0.12 142);
  --emerald-500: oklch(0.60 0.14 142);
  --emerald-600: oklch(0.52 0.14 142);
  --emerald-700: oklch(0.40 0.12 142);
  --emerald-800: oklch(0.30 0.10 142);
  --emerald-900: oklch(0.20 0.08 142);
  
  /* Neutral Colors */
  --background: oklch(0.98 0 0);
  --foreground: oklch(0.2 0.01 65);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.235 0.015 65);
  --muted: oklch(0.967 0.001 286.375);
  --muted-foreground: oklch(0.552 0.016 285.938);
  --border: oklch(0.9 0.002 286.32);
  --input: oklch(0.95 0.001 286.32);
  
  /* Semantic Colors */
  --success: oklch(0.60 0.14 142);
  --warning: oklch(0.70 0.15 70);
  --error: oklch(0.577 0.245 27.325);
  --info: oklch(0.50 0.14 260);
  
  /* Spacing Scale (8px base) */
  --spacing-xs: 0.25rem;   /* 4px */
  --spacing-sm: 0.5rem;    /* 8px */
  --spacing-md: 1rem;      /* 16px */
  --spacing-lg: 1.5rem;    /* 24px */
  --spacing-xl: 2rem;      /* 32px */
  --spacing-2xl: 2.5rem;   /* 40px */
  --spacing-3xl: 3rem;     /* 48px */
  --spacing-4xl: 4rem;     /* 64px */
  
  /* Border Radius */
  --radius: 0.65rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */
  
  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--foreground);
  background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--foreground);
}

h1 {
  font-size: var(--text-6xl);
  font-weight: var(--font-extrabold);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
}

h4 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
}

h5 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
}

h6 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  line-height: var(--leading-relaxed);
}

small {
  font-size: var(--text-sm);
}

/* ============================================================
   3. BUTTONS
 

button,
.btn,
[role="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-lg);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}


.btn-primary,
button:not([class*="btn-"]):not([class*="outline"]) {
  background-color: var(--emerald-700);
  color: white;
}

.btn-primary:hover,
button:not([class*="btn-"]):not([class*="outline"]):hover {
  background-color: var(--emerald-800);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary:active,
button:not([class*="btn-"]):not([class*="outline"]):active {
  transform: translateY(0);
}


.btn-secondary,
.btn-outline,
button[class*="outline"] {
  background-color: transparent;
  color: var(--emerald-700);
  border: 2px solid var(--emerald-300);
}

.btn-secondary:hover,
.btn-outline:hover,
button[class*="outline"]:hover {
  background-color: var(--emerald-50);
  border-color: var(--emerald-700);
}
  ============================================================ */

/* ============================================================
   4. CARDS & CONTAINERS
   ============================================================ */

.card,
[class*="card"] {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-300);
}

/* ============================================================
   5. FORMS
   ============================================================ */

input,
textarea,
select {
  width: 100%;
  padding: var(--spacing-md);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background-color: var(--input);
  color: var(--foreground);
  transition: all var(--transition-base);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: var(--font-semibold);
  color: var(--foreground);
}

/* ============================================================
   6. NAVIGATION


nav {
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
}

nav a {
  color: var(--foreground);
  text-decoration: none;
  transition: color var(--transition-base);
}

nav a:hover {
  color: var(--emerald-700);
}

   ============================================================ */

/* ============================================================
   7. HERO SECTION
   ============================================================ */


.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--emerald-50) 0%, var(--background) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  ...
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: white;
  border: 1px solid var(--emerald-200);
  border-radius: 9999px;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--emerald-700);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   8. TRUST STRIP
   ============================================================ */

.trust-strip {
  background-color: var(--emerald-50);
  border-top: 1px solid var(--emerald-100);
  border-bottom: 1px solid var(--emerald-100);
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 9999px;
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  color: var(--emerald-700);
}

.trust-item:hover .trust-icon {
  background-color: var(--emerald-100);
  transform: scale(1.1);
}

.trust-title {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--foreground);
  margin-bottom: var(--spacing-xs);
}

.trust-subtitle {
  font-size: var(--text-xs);
  color: var(--muted-foreground);
}

/* ============================================================
   9. ACCORDION
   ============================================================ */

.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

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

.accordion-trigger {
  width: 100%;
  padding: var(--spacing-lg);
  background-color: var(--card);
  border: none;
  text-align: left;
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
}

.accordion-trigger:hover {
  background-color: var(--emerald-50);
  color: var(--emerald-700);
}

.accordion-trigger[aria-expanded="true"] {
  background-color: var(--emerald-50);
  color: var(--emerald-700);
}

.accordion-content {
  padding: var(--spacing-lg);
  background-color: var(--background);
  color: var(--foreground);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   10. GRID & LAYOUT
   ============================================================ */

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

@media (min-width: 640px) {
  .container {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
    max-width: 1280px;
  }
}

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-5 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   11. ANIMATIONS & TRANSITIONS
   ============================================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-base);
}

.animate-slide-in-up {
  animation: slideInUp var(--transition-base);
}

.animate-slide-in-down {
  animation: slideInDown var(--transition-base);
}

.animate-scale-in {
  animation: scaleIn var(--transition-base);
}

/* ============================================================
   12. UTILITY CLASSES
   ============================================================ */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: var(--spacing-md);
}

.gap-8 {
  gap: var(--spacing-xl);
}

.mt-4 {
  margin-top: var(--spacing-md);
}

.mb-4 {
  margin-bottom: var(--spacing-md);
}

.p-4 {
  padding: var(--spacing-md);
}

.p-6 {
  padding: var(--spacing-lg);
}

.rounded {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.transition {
  transition: all var(--transition-base);
}

.transition-fast {
  transition: all var(--transition-fast);
}

.transition-slow {
  transition: all var(--transition-slow);
}

/* ============================================================
   13. RESPONSIVE UTILITIES
   ============================================================ */

@media (max-width: 768px) {
  h1 {
    font-size: var(--text-4xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
  
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 769px) {
  .show-mobile {
    display: none;
  }
}

/* ============================================================
   14. ACCESSIBILITY
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--emerald-500);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================================================
   Old CUSTOM.CSS starts from here
   ============================================================ */

/**
 * Custom CSS
 * Soria Natural - Botanical Modernism Design
 */

/* ============================================
   Global Styles


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}
============================================ */

/* ============================================
   Categories cards
============================================ */

.card-categories-section {
  background: #f3f5ef !important;
  padding: 1.6rem !important;
}

.card-categories-section .elementor-heading-title {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
}

.card-categories-section .elementor-widget-text-editor,
.card-categories-section .elementor-widget-text-editor p {
  color: #667a6d;
}

.card-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media (min-width: 768px) {
  .card-categories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .card-categories {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
  }
}

.card-categories > * {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: unset !important;
}

.category-card {
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  padding: 12px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(18, 76, 49, 0.08);
  box-shadow: 0 6px 18px rgba(10, 43, 29, 0.045);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.category-card:hover {
  transform: none !important;
  background: #ffffff;
  border-color: #0f8a43;
  box-shadow:
    0 10px 28px rgba(10, 43, 29, 0.08),
    0 0 0 1px rgba(15, 138, 67, 0.06);
}

.category-icon .elementor-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  background: #edf5f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.category-card:hover .category-icon .elementor-icon {
  transform: none !important;
  background: #eef7f1;
  box-shadow: inset 0 0 0 1px rgba(15, 138, 67, 0.08);
}

.category-icon .elementor-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  transition: color 220ms ease;
}

.category-card-name {
  font-size: 10px !important;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #123b2b;
  transition: color 220ms ease;
  word-break: keep-all;
  overflow-wrap: normal;
}

.category-card:hover .category-card-name {
  color: var(--color-primary);
}

.category-card .elementor-widget-html,
.category-card .elementor-widget-container {
  position: static !important;
}

.category-card a.card-link-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 10 !important;
  display: block !important;
  pointer-events: auto !important;
  background: transparent !important;
  text-indent: -9999px;
}

.category-card a.card-link-overlay:focus-visible {
  outline: 2px solid #0f8a43;
  outline-offset: 4px;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .category-card {
    xmin-height: 154px;
    padding: 18px 12px !important;
  }
}



/* ============================================
   Footer Base


footer,
.site-footer {
  background-color: var(--color-forest);
  color: white;
  padding: 3rem 0 1rem;
}

footer a,
.site-footer a {
  color: var(--color-emerald-light);
  text-decoration: none;
  transition: color 0.3s ease;
}


footer a:hover,
.site-footer a:hover {
  color: white;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  font-size: var(--fs-sm);
  opacity: 0.8;
}
============================================ */


/* ============================================
   WooCommerce Customizations


.woocommerce .product {
  border: none;
}

.woocommerce .product-title {
  font-family: var(--font-display);
  font-weight: 700;
}

.widget .widget-title,
.widget .widgettitle,
.widget.widget_block h2,
.site footer.site-footer .widget .widget-title,
.site-footer .widget.widget_block h2 {
  font-family: Montserrat;
  font-size: 12px;
  letter-spacing: 0.25px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 700;
}

.woocommerce .price {
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.woocommerce .star-rating {
  color: #fbbf24;
}

.woocommerce .button {
  background-color: var(--color-primary);
  color: white;
}

.woocommerce .button:hover {
  background-color: var(--color-primary-dark);
}
============================================ */

/* ============================================
   Responsive Design


@media (max-width: 768px) {
  .hero-title {
    font-size: var(--fs-5xl);
  }

  .hero-subtitle {
    font-size: var(--fs-base);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .science-grid,
  .methods-grid,
  .blog-grid,
  .testimonials-grid,
  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--fs-3xl);
  }

  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
============================================ */
/* ============================================
   Print Styles


@media print {
  .navbar,
  nav,
  footer,
  .site-footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
  }
}
============================================ */

/* ============================================
   Wellness Section
============================================ */

.soria-wellness-section {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
  background: hsl(80, 25%, 97%);
}

@media (min-width: 1024px) {
  .soria-wellness-section {
    padding: 6rem 0 6.5rem;
  }
}

.soria-wellness-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 137, 62, 0.035), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(0, 137, 62, 0.03), transparent 45%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.soria-wellness-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3rem;
}

@media (min-width: 1024px) {
  .soria-wellness-header {
    margin-bottom: 4rem;
  }
}

.soria-wellness-title .accent {
  color: #00893e;
}

.soria-wellness-pillars {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 1200px) {
  .soria-wellness-pillars {
    gap: 2.4rem;
  }
}

.soria-wellness-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1rem 0;
  row-gap: 0.625rem;
}

.soria-wellness-pillar:hover {
  transform: none;
}

.soria-wellness-pillar-image {
  position: relative;
  width: 10.5rem;
  height: 10.5rem;
  margin: 0 0 0.95rem !important;
  padding: 4px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 137, 62, 0.2);
  box-shadow: 0 8px 20px rgba(17, 59, 44, 0.06);
}

.soria-wellness-pillar-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.soria-wellness-pillar:hover .soria-wellness-pillar-image img {
  transform: scale(1.05);
}

.soria-wellness-pillar-image::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 137, 62, 0.12), transparent 70%);
  z-index: -1;
}

.soria-wellness-pillar-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .soria-wellness-pillar-image {
    width: 11rem;
    height: 11rem;
  }
}

@media (min-width: 1024px) {
  .soria-wellness-pillar-image {
    width: 11.15rem;
    height: 11.15rem;
  }
}

.soria-wellness-pillar .elementor-heading-title,
.soria-wellness-pillar-title {
  margin: 0 0 0.7rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1d2d27;
  max-width: 20ch;
}

@media (min-width: 640px) {
  .soria-wellness-pillar .elementor-heading-title,
  .soria-wellness-pillar-title {
    font-size: 1.08rem;
  }
}

.soria-wellness-pillar .elementor-widget-text-editor,
.soria-wellness-pillar .elementor-widget-text-editor p,
.soria-wellness-pillar-desc {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  line-height: 1.72;
  color: #71857b;
}

.soria-wellness-pillar .elementor-widget-text-editor {
  margin-bottom: 1rem;
}

.soria-wellness-pillar .elementor-widget-heading + .elementor-widget-text-editor {
  margin-top: 0;
}

@media (max-width: 767px) {
  .soria-wellness-header {
    margin-bottom: 2.4rem;
  }

  .soria-wellness-pillar {
    padding-top: 0.5rem;
  }

  .soria-wellness-pillar-desc,
  .soria-wellness-pillar .elementor-widget-text-editor p {
    max-width: 22rem;
  }
}



/* ============================================
   Blog Section
============================================ */

.sn-health-guide {
  position: relative;
}

.sn-blog-section {
  background: var(--sn-secondary, #f3f5ef);
  padding: 5rem 0 5.4rem;
}

@media (max-width: 767px) {
  .sn-blog-section {
    padding: 4rem 0 4.3rem;
  }
}

.sn-blog-section > .elementor-container,
.sn-blog-section > .e-con-inner,
.sn-blog-section .elementor-container,
.sn-blog-section .e-con-inner {
  position: relative;
}


.sn-blog-section .elementor-heading-title {
  font-family: var(--sn-font-display, "Playfair Display", Georgia, serif);
  font-size: clamp(2.1rem, 3vw, 2.95rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #16362b;
}

.sn-blog-section .elementor-widget-text-editor,
.sn-blog-section .elementor-widget-text-editor p {
  color: rgba(31, 47, 40, 0.68);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 680px;
  margin-left: 0;
  margin-right: 0;
}

.sn-health-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .sn-health-guide__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.sn-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(18, 76, 49, 0.08);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(10, 43, 29, 0.03);
  transition:
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.sn-card:hover {
  transform: none;
  box-shadow: 0 8px 18px rgba(10, 43, 29, 0.04);
  border-color: rgba(18, 76, 49, 0.1);
}

.sn-card a,
.sn-card a:hover,
.sn-card a:focus,
.sn-card a:active {
  text-decoration: none !important;
  box-shadow: none !important;
  border-bottom: 0 !important;
}

.sn-card__img {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eaf0ea;
  border-radius: 26px 26px 0 0;
}

.sn-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 520ms cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.sn-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 62%,
    rgba(0, 0, 0, 0.08) 100%
  );
  pointer-events: none;
}

.sn-card:hover .sn-card__img::before {
  transform: scale(1.06);
}

.sn-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 22px 20px;
  background: transparent;
}

.sn-card__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  min-height: 34px;
  flex-wrap: wrap;
}

.sn-card__cat {
  display: inline-flex;
  align-items: center;
  max-width: max-content;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 137, 62, 0.07);
  border: 1px solid rgba(0, 137, 62, 0.1);
  color: #167346 !important;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    color 240ms ease;
}

.sn-card:hover .sn-card__cat {
  background: rgba(0, 137, 62, 0.09);
  border-color: rgba(0, 137, 62, 0.14);
}

.sn-card__cat-icon {
  display: none !important;
}

.sn-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  font-size: 12px;
  color: rgba(31, 47, 40, 0.62);
  margin-left: auto;
  white-space: nowrap;
  line-height: 1;
}

.sn-card__date-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: rgba(31, 47, 40, 0.58);
  opacity: 1;
}

.sn-card__date-icon svg {
  width: 14px;
  height: 14px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sn-card__title {
  margin: 0 0 12px;
  font-family: var(--sn-font-display, "Playfair Display", Georgia, serif);
  font-size: clamp(1.18rem, 1.4vw, 1.42rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #17362b;
}

.sn-card__title a {
  position: relative;
  color: inherit;
  transition: color 240ms ease;
}

.sn-card__title a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: rgba(0, 137, 62, 0.72);
  transition: width 260ms ease;
}

.sn-card:hover .sn-card__title a {
  color: rgba(0, 137, 62, 0.96);
}

.sn-card:hover .sn-card__title a::after {
  width: 100%;
}

.sn-card__excerpt {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(31, 47, 40, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sn-card__readmore {
  margin: 16px 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sn-primary, #167346);
  transition: color 240ms ease, opacity 240ms ease;
}

.sn-card__readmore::after {
  content: "→";
  display: inline-block;
  transition: transform 240ms ease;
}

.sn-card__readmore:hover::after {
  transform: translateX(3px);
}

.sn-card__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(22, 54, 43, 0.07);
}

.sn-card__reading-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1;
  font-weight: 500;
  color: rgba(31, 47, 40, 0.62);
}

.sn-card__reading-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: rgba(31, 47, 40, 0.56);
}

.sn-card__reading-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

@media (max-width: 1024px) {
  .sn-card {
    border-radius: 24px;
  }

  .sn-card__img {
    border-radius: 24px 24px 0 0;
  }

  .sn-card__body {
    padding: 18px 18px 16px;
  }

  .sn-card__title {
    font-size: 1.28rem;
  }

  .sn-card__excerpt {
    -webkit-line-clamp: 4;
  }

  .sn-blog-section .elementor-heading-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    text-align: left;
    font-weight: 600;
    letter-spacing: -0.015em;
  }

  .sn-blog-section .elementor-widget-text-editor,
  .sn-blog-section .elementor-widget-text-editor p {
    text-align: left;
  }
}

/* ============================================
   About / Pre-footer
============================================ */

.sn-about {
  background: var(--sn-primary);
  color: var(--sn-primary-foreground);
  padding: 78px 0 84px;
}

.sn-about .elementor-container,
.sn-about .e-con-inner {
  align-items: center;
}

.sn-about__content {
  max-width: 560px;
}

.sn-about__title,
.sn-about__title .elementor-heading-title {
  margin: 0 0 20px;
  color: var(--sn-primary-foreground);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.sn-about__title--accent {
  color: var(--sn-accent);
}

.sn-about__text {
  color: hsla(80, 30%, 97%, 0.78);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 20px;
  max-width: 52ch;
}

.sn-about__text:last-child {
  margin-bottom: 0;
}

.sn-about__stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
  width: 100%;
  margin-left: auto;
}

.sn-about__stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin: 0;
}

.sn-stat-card {
  min-width: 0;
  height: 156px;
  padding: 24px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sn-stat-card .elementor-widget,
.sn-stat-card .elementor-widget-container {
  margin: 0;
}

.sn-stat-card > * + * {
  margin-top: 0;
}

.sn-stat-card__icon {
  margin-bottom: 10px !important;
  opacity: 1;
  line-height: 1;
}

.sn-stat-card__icon i,
.sn-stat-card__icon svg {
  font-size: 27px;
  width: 27px;
  height: 27px;
  color: var(--sn-accent);
  fill: none;
  stroke: var(--sn-accent);
  stroke-width: 2.4;
  opacity: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sn-stat-card__value,
.sn-stat-card__value .elementor-heading-title {
  color: var(--sn-primary-foreground);
  font-weight: 600;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.12;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.sn-stat-card__label {
  color: hsla(80, 30%, 97%, 0.72);
  font-size: 0.96rem;
  line-height: 1.4;
  margin: 0;
}

.sn-stat-card .elementor-heading-title,
.sn-stat-card .elementor-icon-box-title,
.sn-stat-card h3,
.sn-stat-card h4 {
  color: var(--sn-primary-foreground);
}

.sn-stat-card p,
.sn-stat-card .elementor-widget-text-editor,
.sn-stat-card .elementor-icon-box-description {
  color: hsla(80, 30%, 97%, 0.72);
  margin: 0;
}

@media (min-width: 1025px) {
  .sn-about .elementor-container,
  .sn-about .e-con-inner {
    gap: 72px;
  }
}

@media (max-width: 1024px) {
  .sn-about {
    padding: 64px 0 72px;
  }

  .sn-about__stats {
    max-width: 100%;
    gap: 16px;
  }

  .sn-about__stats-row {
    gap: 16px;
  }

  .sn-stat-card {
    height: 148px;
    padding: 22px 18px;
  }

  .sn-about__text {
    font-size: 0.98rem;
    line-height: 1.72;
  }
}

@media (max-width: 767px) {
  .sn-about {
    padding: 52px 0 56px;
  }

  .sn-about__content {
    max-width: 100%;
  }

  .sn-about__title,
  .sn-about__title .elementor-heading-title {
    margin-bottom: 16px;
    font-weight: 700;
  }

  .sn-about__text {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .sn-about__stats {
    gap: 14px;
    margin-top: 24px;
  }

  .sn-about__stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .sn-stat-card {
    height: 132px;
    padding: 18px 14px;
    border-radius: 16px;
  }

  .sn-stat-card__icon {
    margin-bottom: 10px;
  }

  .sn-stat-card__icon i,
  .sn-stat-card__icon svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
    stroke-width: 2.35;
  }

  .sn-stat-card__value,
  .sn-stat-card__value .elementor-heading-title {
    font-size: 1rem;
  }

  .sn-stat-card__label {
    font-size: 0.88rem;
    line-height: 1.35;
  }
}

/* ============================================
   Footer Refined
============================================ */

.site-footer {
  background: var(--sn-primary) !important;
  color: var(--sn-primary-foreground) !important;
}

.site-footer,
.site-footer p,
.site-footer li,
.site-footer .widget {
  color: hsla(80, 30%, 97%, 0.74) !important;
}

.site-footer .widget-title {
  color: var(--sn-primary-foreground) !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  line-height: 1.25;
}

.site-footer .footer-logo {
  max-width: 128px;
  margin-bottom: 14px;
  display: block;
}

.site-footer .footer-brand-text {
  font-size: 12.5px !important;
  line-height: 1.68;
  color: hsla(80, 30%, 97%, 0.64) !important;
  margin: 0;
  max-width: 290px;
  opacity: 1;
}

.site-footer .footer-contacts {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer .footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.52;
  color: hsla(80, 30%, 97%, 0.72) !important;
}

.site-footer .footer-ico,
.site-footer .footer-contacts img,
.site-footer .footer-social img {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 3px;
  opacity: 0.82;
}

.site-footer .footer-contacts img,
.site-footer .footer-social img,
.site-footer img.footer-ico {
  filter: brightness(0) invert(1);
}

.site-footer a {
  color: hsla(80, 30%, 97%, 0.65) !important;
  opacity: 0.85;
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--sn-primary-foreground) !important;
  text-decoration: none !important;
  opacity: 1;
}

.site-footer .menu li {
  margin: 0 0 12px;
}

.site-footer .menu a {
  font-size: 13.5px;
  line-height: 1.42;
}

.site-footer .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.site-footer .footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsla(80, 30%, 97%, 0.11);
  background: hsla(80, 30%, 97%, 0.045);
  box-shadow: none;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.site-footer .footer-social a:hover {
  transform: translateY(-1px);
  background: hsla(80, 30%, 97%, 0.075);
  border-color: color-mix(in srgb, var(--sn-accent) 24%, transparent);
}

.site-footer .widget {
  margin-bottom: 1rem;
}

footer:last-child:not(:only-of-type) {
  margin-top: 0;
  border-top: 1px solid hsla(80, 30%, 97%, 0.06) !important;
  padding-top: 10px;
  background: var(--sn-primary) !important;
  box-shadow: none !important;
}

footer.copyright .widget {
  display: inline-block;
  text-align: left !important;
  margin-bottom: 0;
}

footer.copyright,
footer.copyright p,
footer.copyright span,
footer.copyright a,
.site-footer .sn-copyright,
span.sn-copyright {
  color: hsla(80, 30%, 97%, 0.55) !important;
  font-size: 12px !important;
  line-height: 1.55;
  text-shadow: none !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .site-footer .footer-brand-text {
    max-width: 100%;
  }

  .site-footer .widget-title {
    margin-bottom: 12px;
  }

  .site-footer .footer-social {
    margin-top: 12px;
  }
}

/* ============================================
   Navigation / Shop


.main-navigation ul.menu li.menu-item-has-children.full-width > .sub-menu-wrapper li.menu-item-has-children > a,
.main-navigation ul.menu li.menu-item-has-children.full-width > .sub-menu-wrapper li.heading > a,
.main-navigation ul.menu li.menu-item-has-children.full-width > .sub-menu-wrapper li.nolink > span {
  text-transform: uppercase !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.3;
  color: #1f2f28;
}

@media (max-width: 768px) {
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px;
    line-height: 1.35;
  }
}

.woocommerce ul.products li.product .price {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 137, 62, 0.75);
}
============================================ */

/* ============================================
   Programs Section
============================================ */

.sn-programs {
  padding: 5.6rem 0;
  background: var(--sn-secondary, #f3f5ef);
}

.sn-programs__grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.sn-programs__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* DESKTOP: 3 cards in a row */
.sn-programs__left-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
}

/* Reset Elementor child widths */
.sn-programs__left-bottom > * {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: unset !important;
}

.sn-programs .sn-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(18, 76, 49, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(10, 43, 29, 0.03);
  transition: box-shadow 280ms ease, border-color 280ms ease;
}

.sn-programs .sn-card:hover {
  transform: none !important;
  box-shadow: 0 10px 24px rgba(10, 43, 29, 0.06);
  border-color: rgba(18, 76, 49, 0.1);
}

.sn-programs .sn-routine-card__img,
.sn-programs .sn-routine-card__img > .elementor-widget-container,
.sn-programs .sn-routine-card__img img {
  display: block;
  width: 100%;
}

.sn-programs .sn-routine-card__img {
  line-height: 0;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 0 !important;
}

.sn-programs .sn-routine-card__img > .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
}

.sn-programs .sn-routine-card__img img {
  width: 100% !important;
  height: auto;
  object-fit: cover;
  border-radius: 0 !important;
  transform: scale(1);
  transition: transform 520ms cubic-bezier(.22, .61, .36, 1);
}

.sn-programs .sn-card:hover .sn-routine-card__img img {
  transform: scale(1.04);
}

.sn-programs .sn-card > .elementor-element:first-child,
.sn-programs .sn-card > .sn-routine-card__img:first-child {
  margin-top: 0 !important;
}

.sn-programs .sn-routine-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 20px 20px 18px !important;
}

.sn-programs .sn-card--small .sn-routine-card__body {
  padding: 20px 20px 18px !important;
}

.sn-programs .sn-card--large .sn-routine-card__body {
  padding: 22px 22px 20px !important;
}

.sn-programs .sn-routine-card__title,
.sn-programs .sn-routine-card__title .elementor-heading-title,
.sn-programs .sn-routine-card__title h1,
.sn-programs .sn-routine-card__title h2,
.sn-programs .sn-routine-card__title h3,
.sn-programs .sn-routine-card__title h4 {
  margin: 0 0 12px !important;
  font-family: var(--sn-font-display, "Playfair Display", Georgia, serif) !important;
  font-weight: 600 !important;
  letter-spacing: -0.018em !important;
  color: #17362b !important;
}

.sn-programs .sn-card--small .sn-routine-card__title,
.sn-programs .sn-card--small .sn-routine-card__title .elementor-heading-title,
.sn-programs .sn-card--small .sn-routine-card__title h1,
.sn-programs .sn-card--small .sn-routine-card__title h2,
.sn-programs .sn-card--small .sn-routine-card__title h3,
.sn-programs .sn-card--small .sn-routine-card__title h4 {
  font-size: 1.18rem !important;
  line-height: 1.22 !important;
}

.sn-programs .sn-card--large .sn-routine-card__title,
.sn-programs .sn-card--large .sn-routine-card__title .elementor-heading-title,
.sn-programs .sn-card--large .sn-routine-card__title h1,
.sn-programs .sn-card--large .sn-routine-card__title h2,
.sn-programs .sn-card--large .sn-routine-card__title h3,
.sn-programs .sn-card--large .sn-routine-card__title h4 {
  font-size: clamp(1.34rem, 1.5vw, 1.56rem) !important;
  line-height: 1.18 !important;
}

.sn-programs .sn-routine-card__desc,
.sn-programs .sn-routine-card__desc p,
.sn-programs .sn-routine-card__desc .elementor-widget-container {
  margin: 0 0 12px !important;
  color: rgba(31, 47, 40, 0.76) !important;
}

.sn-programs .sn-card--small .sn-routine-card__desc,
.sn-programs .sn-card--small .sn-routine-card__desc p,
.sn-programs .sn-card--small .sn-routine-card__desc .elementor-widget-container {
  font-size: 14px !important;
  line-height: 1.68 !important;
}

.sn-programs .sn-card--large .sn-routine-card__desc,
.sn-programs .sn-card--large .sn-routine-card__desc p,
.sn-programs .sn-card--large .sn-routine-card__desc .elementor-widget-container {
  font-size: 14px !important;
  line-height: 1.72 !important;
}

.sn-programs .sn-routine-card__more,
.sn-programs .sn-routine-card__more a,
.sn-programs .sn-routine-card__more .elementor-button,
.sn-programs .sn-routine-card__more .elementor-button-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: fit-content !important;
  margin-top: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
  font-weight: 600 !important;
  color: #2f7f59 !important;
  transition: color 240ms ease, gap 240ms ease, opacity 240ms ease !important;
  opacity: 0.95;
}

.sn-programs .sn-routine-card__more a::after,
.sn-programs .sn-routine-card__more .elementor-button-text::after {
  content: "→";
  display: inline-block;
  margin-left: 8px;
  transition: transform 240ms ease;
}

.sn-programs .sn-routine-card__more:hover,
.sn-programs .sn-routine-card__more a:hover,
.sn-programs .sn-routine-card__more .elementor-button:hover {
  color: #166744 !important;
  opacity: 1;
}

.sn-programs .sn-routine-card__more:hover a::after,
.sn-programs .sn-routine-card__more:hover .elementor-button-text::after,
.sn-programs .sn-routine-card__more a:hover::after {
  transform: translateX(2px);
}

.sn-programs .sn-routine-card__more .elementor-button-icon {
  display: none !important;
}

.sn-programs .sn-routine-card__button {
  margin-top: auto !important;
}

.sn-programs .sn-routine-card__button .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.sn-programs .sn-routine-card__button .elementor-button,
.sn-programs .sn-routine-card__button a.elementor-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: fit-content !important;
  min-height: 46px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #1b7a52 0%, #166744 100%) !important;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: 0 !important;
  box-shadow: 0 10px 24px rgba(10, 43, 29, 0.12) !important;
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease !important;
}

.sn-programs .sn-routine-card__button .elementor-button-content-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
}

.sn-programs .sn-routine-card__button .elementor-button-text::after {
  content: "→";
  display: inline-block;
  margin-left: 8px;
  transition: transform 240ms ease;
}

.sn-programs .sn-routine-card__button .elementor-button-icon {
  display: none !important;
}

.sn-programs .sn-routine-card__button .elementor-button:hover,
.sn-programs .sn-routine-card__button a.elementor-button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 14px 28px rgba(10, 43, 29, 0.16) !important;
  filter: brightness(1.03);
}

.sn-programs .sn-routine-card__button .elementor-button:hover .elementor-button-text::after,
.sn-programs .sn-routine-card__button a.elementor-button:hover .elementor-button-text::after {
  transform: translateX(2px);
}

/* TABLET */
@media (max-width: 1024px) {
  .sn-programs {
    padding: 4.8rem 0;
  }

  .sn-programs__left-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .sn-programs .sn-routine-card__body,
  .sn-programs .sn-card--small .sn-routine-card__body,
  .sn-programs .sn-card--large .sn-routine-card__body {
    padding: 20px 20px 18px !important;
  }

  .sn-programs .sn-card--small .sn-routine-card__title,
  .sn-programs .sn-card--small .sn-routine-card__title .elementor-heading-title {
    font-size: 1.14rem !important;
  }

  .sn-programs .sn-card--large .sn-routine-card__title,
  .sn-programs .sn-card--large .sn-routine-card__title .elementor-heading-title {
    font-size: 1.3rem !important;
  }

  .sn-programs .sn-routine-card__more,
  .sn-programs .sn-routine-card__more a,
  .sn-programs .sn-routine-card__more .elementor-button {
    font-size: 15px !important;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .sn-programs {
    padding: 4rem 0;
  }

  .sn-programs__left-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sn-programs .sn-routine-card__body,
  .sn-programs .sn-card--small .sn-routine-card__body,
  .sn-programs .sn-card--large .sn-routine-card__body {
    padding: 20px 20px 18px !important;
  }

  .sn-programs .sn-card--small .sn-routine-card__title,
  .sn-programs .sn-card--small .sn-routine-card__title .elementor-heading-title {
    font-size: 1.14rem !important;
  }

  .sn-programs .sn-card--large .sn-routine-card__title,
  .sn-programs .sn-card--large .sn-routine-card__title .elementor-heading-title {
    font-size: 1.3rem !important;
  }

  .sn-programs .sn-routine-card__more,
  .sn-programs .sn-routine-card__more a,
  .sn-programs .sn-routine-card__more .elementor-button {
    font-size: 15px !important;
  }
}

/* =========================================================
   3) GENERAL HARD CLEANUP
   ========================================================= */

.trust-label,
.trust-label *,
.trust-label p,
.trust-label span,
.trust-label .elementor-widget-container,
.trust-label .elementor-text-editor {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  text-decoration: none !important;
}


/* ===== HERO BANNER FINAL ===== 

.soria-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 0.68rem 1.15rem;
  border-radius: 999px;
  background: hsla(160, 55%, 12%, 0.45);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #f5f7f2;
  margin-bottom: 1.1rem;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
  animation: fadeInUp 0.4s ease-out;
	border: 1px solid rgba(255,255,255,0.15);
}
*/
/* ICON 
.soria-badge-icon-img {
  width: 14px;
  height: 14px;
  object-fit: contain;
*/
  /* makes SVG white 
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
*/

/* TEXT 
.soria-badge-text {
  line-height: 1;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(160, 55%, 12%, 0.85) 0%,
    hsla(160, 40%, 18%, 0.6) 50%,
    hsla(42, 50%, 30%, 0.4) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 42%,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.08) 28%,
      rgba(0, 0, 0, 0) 62%
    );
  z-index: 1;
  pointer-events: none;
}

.hero-section > .e-con-inner,
.hero-section > .elementor-container,
.hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: #fff;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5.5vw, 65px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin-bottom: 1.1rem;
  animation: fadeInUp 0.6s ease-out 0.1s both;
	color: #fff;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(245, 247, 242, 0.9);
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-subtitle,
.hero-subtitle p {
  max-width: 560px;
  width: 100%;
}

@media (max-width: 767px) {
  .hero-title {
font-size: 38px !important;
    line-height: 1.05;
    letter-spacing: -0.025em;
  }
}
*/

/* ===== HERO BUTTONS ===== 

.hero-buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.hero-buttons-container .elementor-button,
.btn-primary-hero .elementor-button,
.btn-secondary-hero .elementor-button {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 999px;
  padding: 20px 36px;
  transition:
    background-color 0.28s ease,
    box-shadow 0.28s ease;
  position: relative;
  overflow: visible;
  text-decoration: none;
}


.btn-primary-hero,
.btn-primary-hero .elementor-widget-container,
.btn-primary-hero .elementor-button-wrapper {
  overflow: visible !important;
}

.elementor-widget-button.btn-primary-hero .elementor-button,
.btn-primary-hero .elementor-button {
  background-color: #e6b33c  !important; 
  color: #1a1a1a !important;
  border: none !important;

  box-shadow: 0 8px 18px rgba(0, 80, 52, 0.16) !important; 
  transform: none !important;

  position: relative !important;
  z-index: 1 !important;
	
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);

  filter: saturate(1.05);
}


.elementor-widget-button.btn-primary-hero:hover .elementor-button,
.elementor-widget-button.btn-primary-hero .elementor-button:hover,
.btn-primary-hero:hover .elementor-button,
.btn-primary-hero .elementor-button:hover,
.btn-primary-hero .elementor-button:focus {
  background-color: #d9a82f   !important;
  color: #1a1a1a !important;
  filter: saturate(1.08);
  transform: none !important;
  box-shadow: 0 8px 18px rgba(0, 80, 52, 0.16) !important;
}


.elementor-widget-button.btn-primary-hero:hover .elementor-button::after,
.elementor-widget-button.btn-primary-hero .elementor-button:hover::after,
.btn-primary-hero:hover .elementor-button::after,
.btn-primary-hero .elementor-button:hover::after,
.btn-primary-hero .elementor-button:focus::after {
  opacity: 0.6;
  transform: translateX(-50%) scale(0.95);
}

*/

/* ===== SECONDARY BUTTON ===== 

.btn-secondary-hero .elementor-button {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.42);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.btn-secondary-hero .elementor-button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.65);

  transform: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

*/

/* ===== MOBILE ===== */

@media (max-width: 767px) {
  .hero-buttons-container {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons-container .elementor-button,
  .btn-primary-hero .elementor-button,
  .btn-secondary-hero .elementor-button {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.45rem;
  }
}





/* ============================================
   Reviews Section
============================================ */

.soria-reviews {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 5.4rem;
  background: hsl(80, 25%, 97%) !important;
}

@media (min-width: 1024px) {
  .soria-reviews {
    padding: 5.6rem 0 6rem;
  }
}

.soria-reviews::before {
  display: none;
}

.soria-reviews-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .soria-reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.soria-review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 328px;
  padding: 1.45rem 1.45rem 1.25rem;
  background: #fcfcfa;
  border: 1px solid #d9e1d8;
  border-radius: 24px;
  box-shadow: none !important;
  transform: none !important;
  transition: box-shadow 260ms ease, border-color 260ms ease;
}

.soria-review-card:hover {
  transform: none !important;
  box-shadow: 0 10px 24px rgba(10, 43, 29, 0.045) !important;
  border-color: #d3ddd3;
}

.soria-review-quote-icon {
  position: absolute;
  top: 1.2rem;
  right: 1.1rem;
  line-height: 1;
}

.soria-review-quote-icon svg,
.soria-review-quote-icon svg * {
  width: 84px;
  height: 84px;
  fill: none;
  stroke: #d7e5db !important;
  stroke-width: 1.6;
}

.soria-review-rating {
  display: flex;
  gap: 0.18rem;
  margin-bottom: 0.95rem;
}

.soria-review-rating svg {
  width: 16px;
  height: 16px;
}

.soria-review-rating svg.filled {
  fill: #e2a52c;
  color: #e2a52c;
}

.soria-review-text {
  margin: 0 0 1rem;
  color: hsl(var(--foreground) / 0.8) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem !important;
  line-height: 1.72;
  font-style: italic;
  font-weight: 400;
}

.soria-review-product {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: #edf3ee;
  color: #2f6f58;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
}

.soria-review-author {
  display: flex;
  align-items: center;
  gap: 0 !important;
  width: 100%;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #dde4dc;
}

.soria-review-author-image {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.soria-review-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: block;
}

.soria-review-author-name {
  margin: 0;
  color: #1e3429;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.22;
}

.soria-review-author-role {
  margin-top: 0.12rem;
  color: #738178;
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  line-height: 1.32;
}

.soria-review-author .elementor-heading-title,
.soria-review-author .elementor-widget-text-editor p,
.soria-review-card .soria-review-author-name,
.soria-review-card .soria-review-author-role {
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

@media (max-width: 767px) {
  .soria-reviews {
    padding: 4rem 0 4.3rem;
  }

  .soria-reviews-header {
    margin-bottom: 2rem;
  }

  .soria-review-card {
    min-height: auto;
    padding: 1.2rem 1rem 1rem;
    border-radius: 20px;
  }

  .soria-review-text {
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .soria-review-quote-icon svg,
  .soria-review-quote-icon svg * {
    width: 34px;
    height: 34px;
  }

  .soria-review-product {
    font-size: 0.78rem;
    padding: 0.3rem 0.64rem;
  }
}



/* ============================================
   TOP BAR — FINAL CLEAN SYSTEM
============================================ */

.top-bar {
  background: #1f7b59 !important;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	padding-top: 4px !important;
}

/* wrappers */
.top-bar-center,
.top-bar-right {
  display: flex;
  xalign-items: center;
  gap: 14px;
  line-height: 1;
}

/* ALL top bar interactive items */
.topbar-link,
.top-link,
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 11px;
  font-weight: 500;
  transition: color 0.22s ease, opacity 0.22s ease;
}

/* force inner text to inherit properly */
.topbar-link span,
.topbar-link strong,
.top-link span,
.top-link strong,
.topbar-item span,
.topbar-item strong {
  color: inherit !important;
}

.topbar-link strong,
.top-link strong,
.topbar-item strong {
  color: #ffffff !important;
  font-weight: 600;
}

/* icons */
.topbar-link img,
.top-link img,
.topbar-item img,
.topbar-link svg,
.top-link svg,
.topbar-item svg,
.topbar-link i,
.top-link i,
.topbar-item i {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform 0.22s ease, opacity 0.22s ease, filter 0.22s ease, color 0.22s ease;
}

/* svg files */
.topbar-link img[src$=".svg"],
.top-link img[src$=".svg"],
.topbar-item img[src$=".svg"] {
  filter: brightness(0) invert(1);
}

/* default slightly dimmed */
.topbar-item {
  color: rgba(255, 255, 255, 0.78) !important;
}

.topbar-item span {
  color: rgba(255, 255, 255, 0.78) !important;
}

/* hover */
.topbar-link:hover,
.top-link:hover,
.topbar-item:hover {
  color: #ffffff !important;
}

.topbar-link:hover span,
.top-link:hover span,
.topbar-item:hover span {
  color: #ffffff !important;
}

.topbar-link:hover img,
.top-link:hover img,
.topbar-item:hover img,
.topbar-link:hover svg,
.top-link:hover svg,
.topbar-item:hover svg,
.topbar-link:hover i,
.top-link:hover i,
.topbar-item:hover i {
  transform: scale(1.12);
  opacity: 1;
}

/* separator */
.topbar-separator {
  color: rgba(255, 255, 255, 0.28) !important;
}

/* highlighted item */
.topbar-highlight {
  color: rgba(255, 255, 255, 0.9) !important;
}

.topbar-highlight span {
  color: rgba(255, 255, 255, 0.9) !important;
}

.topbar-highlight strong {
  color: #ffffff !important;
}

/* exclusive */
.topbar-exclusive {
  color: rgba(255, 255, 255, 0.9) !important;
}

.topbar-exclusive span {
  color: rgba(255, 255, 255, 0.9) !important;
}

.topbar-exclusive:hover,
.topbar-exclusive:hover span {
  color: #ffffff !important;
}

/* =========================================================
   GLOBAL SECTION HEADING SYSTEM
   Reusable across homepage sections
   Works with Elementor headings + text editor output
   ========================================================= */

/* Eyebrow / kicker */
.section-kicker,
.section-kicker .elementor-heading-title,
.section-kicker.elementor-widget-heading .elementor-heading-title {
  margin: 0 0 0.72rem 0 !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 0.82rem !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
  color: #1f7a5a !important;
  opacity: 0.96;
}

/* Main title */
.section-heading,
.section-heading .elementor-heading-title,
.section-heading.elementor-widget-heading .elementor-heading-title {
  margin: 0 0 0.35rem 0 !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem) !important;
  line-height: 1.14 !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  color: #163629 !important;
  max-width: 30ch;
  text-wrap: balance;
}

/* Optional accent inside title */
.section-heading .accent,
.section-heading .text-primary,
.section-heading .elementor-heading-title .accent,
.section-heading .elementor-heading-title .text-primary {
  color: var(--color-primary) !important;
}

/* Subtitle / intro */
.section-intro,
.section-intro .elementor-widget-container,
.section-intro .elementor-text-editor,
.section-intro p {
  color: #6b7a73 !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 0.98rem !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
}

.section-intro {
  max-width: 680px;
  margin-top: 0;
}

.section-intro p {
  margin: 0;
}

/* Wrapper spacing */
.section-heading-block {
  xmargin-bottom: 2.75rem;
}

/* Width variants */
.section-intro.is-narrow,
.section-intro.is-narrow .elementor-widget-container,
.section-intro.is-narrow .elementor-text-editor,
.section-intro.is-narrow p {
  max-width: 560px;
}

/* Centered version */
.section-heading-block.is-centered {
  text-align: center;
}

.section-heading-block.is-centered .section-heading,
.section-heading-block.is-centered .section-heading .elementor-heading-title,
.section-heading-block.is-centered .section-intro,
.section-heading-block.is-centered .section-intro .elementor-widget-container,
.section-heading-block.is-centered .section-intro .elementor-text-editor,
.section-heading-block.is-centered .section-intro p {
  margin-left: auto;
  margin-right: auto;
}

/* Left-aligned version for Blog / New Products if you want it explicit */
.section-heading-block.is-left {
  text-align: left;
}

.section-heading-block.is-left .section-heading,
.section-heading-block.is-left .section-heading .elementor-heading-title,
.section-heading-block.is-left .section-intro,
.section-heading-block.is-left .section-intro .elementor-widget-container,
.section-heading-block.is-left .section-intro .elementor-text-editor,
.section-heading-block.is-left .section-intro p {
  margin-left: 0;
  margin-right: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .section-heading,
  .section-heading .elementor-heading-title,
  .section-heading.elementor-widget-heading .elementor-heading-title {
    max-width: 13ch;
  }

  .section-intro,
  .section-intro .elementor-widget-container,
  .section-intro .elementor-text-editor,
  .section-intro p {
    font-size: 0.96rem !important;
  }
}

/* Mobile */
@media (max-width: 767px) {

  /* FORCE LEFT ALIGN ON MOBILE */
  .section-heading-block,
  .section-heading-block.is-centered {
    text-align: left !important;
  }

  /* TITLE */
  .section-heading,
  .section-heading .elementor-heading-title {
    margin-left: 0 !important;
    margin-right: 0 !important;
	  margin-bottom:0 !important;
    text-align: left !important;
    max-width: 100% !important;
  }

  /* SUBTITLE */
  .section-intro,
  .section-intro p {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    max-width: 100% !important;
  }

  /* KICKER */
  .section-kicker {
    text-align: left !important;
  }
}


/* icon + heading in one row */
.section-heading-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* prevent weird full width behavior */
.section-heading-row > .elementor-element,
.section-heading-row > .e-con {
  width: auto !important;
  flex: 0 0 auto;
  min-width: 0;
}

/* heading widget should not add default bottom spacing */
.section-heading-row .section-heading.elementor-widget,
.section-heading-row .elementor-widget-heading {
  margin-bottom: 0 !important;
}

/* title itself */
.section-heading-row .section-heading .elementor-heading-title,
.section-heading-row .elementor-heading-title {
  margin: 0 !important;
}

/* icon widget */
.section-heading-row .elementor-widget-image,
.section-heading-row .heading-icon {
  line-height: 0;
  flex: 0 0 auto;
}

/* svg / image size */
.section-heading-row .elementor-widget-image img,
.section-heading-row .heading-icon img,
.section-heading-row .heading-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* mobile */
@media (max-width: 767px) {
  .section-heading-row {
    gap: 0.38rem;
  }

  .section-heading-row .elementor-widget-image img,
  .section-heading-row .heading-icon img,
  .section-heading-row .heading-icon svg {
    width: 14px;
    height: 14px;
  }
}

.section-heading-row svg {
  stroke: var(--sn-accent, #e6b33c);
}
