/*
Theme Name: Serasmos Premium
Theme URI: https://serasmos.com
Author: Serasmos & Co Solutions LLC
Author URI: https://serasmos.com
Description: Premium mobile-first WooCommerce theme for Serasmos & Co Solutions LLC, handcrafted ginger juices, and natural ginger powder.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: serasmos-premium
Tags: ecommerce, woocommerce, custom-logo, custom-menu, featured-images, block-styles
*/

:root {
  --green-900: #123b24;
  --green-800: #1d5632;
  --green-600: #4d8b42;
  --green-300: #b7d678;
  --gold-600: #c79222;
  --gold-400: #efc34a;
  --ginger: #f2a81d;
  --pineapple: #ffd96a;
  --cream: #fff8e9;
  --cream-2: #f7eed8;
  --white: #ffffff;
  --navy: #061b4e;
  --ink: #172019;
  --muted: #667164;
  --line: rgba(29, 86, 50, 0.16);
  --shadow: 0 24px 80px rgba(10, 36, 22, 0.14);
  --shadow-soft: 0 14px 40px rgba(10, 36, 22, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--green-800);
  text-decoration: none;
}

a:hover {
  color: var(--gold-600);
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.serasmos-container {
  width: min(1240px, calc(100% - 34px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(18, 59, 36, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 22px;
}

.site-branding {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.site-branding img {
  width: 210px;
  max-height: 64px;
  object-fit: contain;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-navigation a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.cart-link,
.serasmos-button,
.button,
button,
input[type="submit"],
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(29, 86, 50, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cart-link:hover,
.serasmos-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(29, 86, 50, 0.25);
}

.serasmos-button.secondary {
  background: var(--white);
  color: var(--green-800);
  border: 1px solid rgba(29, 86, 50, 0.22);
  box-shadow: var(--shadow-soft);
}

.serasmos-button.ghost {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: none;
}

.wellness-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 217, 106, 0.46), transparent 28%),
    radial-gradient(circle at 18% 16%, rgba(183, 214, 120, 0.34), transparent 32%),
    linear-gradient(132deg, #0e331f 0%, #1f6439 45%, #db9d24 100%);
}

.wellness-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.28;
}

.hero-glow-one {
  left: -120px;
  top: 90px;
  background: var(--pineapple);
}

.hero-glow-two {
  right: -120px;
  bottom: 40px;
  background: var(--green-300);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
  align-items: center;
  gap: 56px;
  min-height: 640px;
  padding: 54px 0 62px;
}

.wellness-hero .serasmos-container,
.shop-hero .serasmos-container {
  width: min(1480px, calc(100% - 48px));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading.center {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hero h1,
.section-heading h2,
.page-title,
.entry-title,
.lifestyle-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(2.75rem, 5.5vw, 5.05rem);
}

.hero-subtext {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  display: block;
  color: var(--pineapple);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-showcase {
  position: relative;
  min-height: 470px;
}

.bottle-orbit {
  position: relative;
  height: 470px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.68), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-product-photo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92%, 720px);
  max-height: 390px;
  object-fit: contain;
  border-radius: 24px;
  filter: drop-shadow(0 28px 34px rgba(6, 27, 78, 0.28));
  transform: translate(-50%, -50%);
  animation: floatBottle 5s ease-in-out infinite;
}

.hero-bottle-left {
  left: 6%;
  transform: rotate(-5deg);
}

.hero-bottle-right {
  right: 1%;
  animation-delay: 900ms;
  transform: rotate(6deg);
}

.ingredient-chips {
  position: absolute;
  right: 24px;
  bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 420px;
}

.ingredient-chips span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 950;
}

@keyframes floatBottle {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

.trust-bar {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(10, 36, 22, 0.06);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.trust-list span {
  padding: 22px 14px;
  color: var(--green-900);
  font-size: 0.88rem;
  font-weight: 950;
  text-align: center;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.lifestyle-copy h2,
.contact-panel h2 {
  color: var(--green-900);
  font-size: clamp(2.2rem, 4.3vw, 4.25rem);
}

.section-heading p,
.lifestyle-copy p,
.contact-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-showcase {
  background: linear-gradient(180deg, var(--white), var(--cream));
}

.premium-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card,
.benefit-card,
.ingredient-card,
.review-card,
.contact-panel,
.lifestyle-panel,
.comparison-table,
.faq-list {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.product-card {
  overflow: hidden;
}

.feature-card {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 480px;
}

.powder-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 217, 106, 0.46), transparent 25%),
    var(--white);
}

.product-art {
  display: grid;
  place-items: center;
  min-height: 430px;
}

.product-art.green {
  background: linear-gradient(145deg, rgba(29, 86, 50, 0.95), rgba(111, 163, 65, 0.78));
}

.product-art.blue {
  background: linear-gradient(145deg, #082052, #236c8e 70%, #f2c14b);
}

.product-art img {
  width: min(90%, 390px);
  max-height: 360px;
  object-fit: contain;
  border-radius: 24px;
  filter: drop-shadow(0 32px 30px rgba(0, 0, 0, 0.24));
  transition: transform 280ms ease;
}

.product-card:hover .product-art img {
  transform: translateY(-8px) scale(1.02);
}

.product-content {
  padding: clamp(28px, 5vw, 48px);
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--gold-600);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-content h3,
.benefit-card h3,
.ingredient-card h3 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.08;
}

.product-content ul {
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.product-content li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: var(--muted);
  font-weight: 700;
}

.product-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
}

.powder-visual {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 360px;
  padding: 40px;
  color: var(--green-900);
  text-align: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(242, 168, 29, 0.52), transparent 30%),
    linear-gradient(145deg, var(--cream), #f2dfb7);
}

.powder-visual span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
}

.powder-visual strong {
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why-section,
.faq-section {
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 217, 106, 0.24), transparent 25%),
    var(--cream);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 54px;
}

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

.benefit-card {
  padding: 28px;
  border-radius: 24px;
}

.benefit-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--pineapple);
  font-weight: 950;
}

.benefit-card p,
.ingredient-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
}

.ingredient-science {
  background:
    linear-gradient(180deg, var(--white), rgba(255, 248, 233, 0.85)),
    var(--cream);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ingredient-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 28px;
  border-radius: 28px;
}

.ingredient-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.ingredient-card span {
  display: inline-flex;
  margin-bottom: 90px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--green-900);
  font-size: 0.8rem;
  font-weight: 950;
}

.ingredient-card.ginger { background: linear-gradient(145deg, #f4c463, #fff3cf); }
.ingredient-card.lemon { background: linear-gradient(145deg, #ffe071, #fff8c9); }
.ingredient-card.pineapple { background: linear-gradient(145deg, #7cad49, #fff0a9); }
.ingredient-card.honey { background: linear-gradient(145deg, #d18b20, #ffe2a8); }

.lifestyle-section {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 217, 106, 0.22), transparent 24%),
    linear-gradient(135deg, var(--green-900), #082016);
}

.lifestyle-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 40px;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.18);
}

.lifestyle-copy h2,
.lifestyle-copy p {
  color: var(--white);
}

.lifestyle-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.lifestyle-collage {
  position: relative;
  min-height: 460px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.7), transparent 22%),
    linear-gradient(145deg, rgba(255, 217, 106, 0.72), rgba(77, 139, 66, 0.5));
  overflow: hidden;
}

.lifestyle-collage img {
  position: absolute;
  right: -4%;
  bottom: -2%;
  width: min(92%, 680px);
  max-height: 380px;
  object-fit: contain;
  border-radius: 26px;
  filter: drop-shadow(0 32px 34px rgba(0, 0, 0, 0.24));
}

.collage-note {
  position: absolute;
  left: 24px;
  top: 24px;
  max-width: 230px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 900;
}

.comparison-section {
  background: var(--white);
}

.comparison-table {
  overflow: hidden;
  border-radius: 26px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr 1fr;
  gap: 1px;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row span {
  padding: 22px;
  background: rgba(255, 248, 233, 0.54);
  color: var(--ink);
  font-weight: 800;
}

.comparison-row.header span {
  background: var(--green-900);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 217, 106, 0.28), transparent 23%),
    var(--cream);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  padding: 34px;
  border-radius: 28px;
}

.stars {
  margin-bottom: 16px;
  color: var(--gold-600);
  letter-spacing: 0.08em;
}

.review-card strong {
  display: block;
  margin-top: 20px;
  color: var(--green-900);
}

.faq-list {
  padding: 14px;
  border-radius: 28px;
}

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

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  justify-content: space-between;
  width: 100%;
  padding: 22px;
  color: var(--green-900);
  background: transparent;
  border-radius: 18px;
  box-shadow: none;
  text-align: left;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-section {
  background: linear-gradient(180deg, var(--white), var(--cream));
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 217, 106, 0.34), transparent 26%),
    var(--white);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-cards a,
.contact-cards div {
  display: block;
  min-height: 116px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
  color: var(--green-900);
  font-weight: 950;
}

.contact-cards span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-600);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-main {
  min-height: 60vh;
}

.content-page {
  padding: 72px 0;
}

.entry-content {
  max-width: 920px;
}

.page-title,
.entry-title {
  color: var(--green-900);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.site-footer {
  padding: 64px 0 32px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 16% 0%, rgba(239, 195, 74, 0.17), transparent 24%),
    var(--green-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.95fr 1fr 1fr;
  gap: 34px;
}

.final-footer-grid {
  align-items: start;
}

.site-footer h2,
.site-footer h3 {
  margin-top: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu li {
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--white);
  border-radius: 999px;
}

.woocommerce div.product .product_title {
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
}

.premium-shop-page {
  background: linear-gradient(180deg, var(--cream), var(--white) 46%, var(--cream));
}

.shop-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 217, 106, 0.42), transparent 28%),
    radial-gradient(circle at 16% 0%, rgba(183, 214, 120, 0.28), transparent 26%),
    linear-gradient(135deg, #113821 0%, #24633a 48%, #c98e20 100%);
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
}

.shop-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 52px;
  min-height: 560px;
  padding: 74px 0;
}

.shop-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 0.98;
}

.shop-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.shop-hero-art {
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.76), transparent 31%),
    rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.shop-hero-art img {
  width: min(92%, 680px);
  max-height: 370px;
  object-fit: contain;
  border-radius: 28px;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.25));
  animation: floatBottle 5.5s ease-in-out infinite;
}

.shop-trust-section {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.shop-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.shop-trust-grid div {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.shop-trust-grid div:last-child {
  border-right: 0;
}

.shop-trust-grid strong,
.shop-trust-grid span {
  display: block;
}

.shop-trust-grid strong {
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.15;
}

.shop-trust-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.shop-category-section {
  padding: 40px 0 0;
}

.shop-category-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.shop-category-inner span {
  margin-right: 4px;
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-category-inner a {
  padding: 11px 16px;
  border: 1px solid rgba(29, 86, 50, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(10, 36, 22, 0.06);
}

.shop-category-inner a:hover {
  color: var(--white);
  background: var(--green-800);
}

.premium-shop-products {
  padding-top: 70px;
}

.shop-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 34px;
}

.shop-heading-row h2 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.5vw, 4.1rem);
  line-height: 1.03;
}

.shop-heading-row p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.premium-shop-products ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 0;
  margin: 0;
}

.woocommerce .premium-shop-products ul.products::before,
.woocommerce .premium-shop-products ul.products::after {
  display: none;
}

.woocommerce .premium-shop-products ul.products li.product.serasmos-shop-card,
.woocommerce-page .premium-shop-products ul.products li.product.serasmos-shop-card {
  position: relative;
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 86, 50, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 217, 106, 0.18), transparent 28%),
    var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.woocommerce .premium-shop-products ul.products li.product.serasmos-shop-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 146, 34, 0.34);
  box-shadow: 0 28px 70px rgba(10, 36, 22, 0.16);
}

.shop-card-image {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 28px 24px 16px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.88), transparent 27%),
    linear-gradient(145deg, rgba(247, 238, 216, 0.9), rgba(255, 248, 233, 0.45));
}

.shop-card-image img {
  width: min(90%, 310px);
  max-height: 320px;
  border-radius: 24px;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(6, 27, 78, 0.16));
  transition: transform 260ms ease;
}

.serasmos-shop-card:hover .shop-card-image img {
  transform: scale(1.045) translateY(-6px);
}

.shop-card-content {
  padding: 24px 26px 28px;
}

.shop-card-kicker {
  margin: 0 0 8px;
  color: var(--gold-600);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.woocommerce .premium-shop-products ul.products li.product .shop-card-content h3 {
  margin: 0;
  padding: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.woocommerce .premium-shop-products ul.products li.product .shop-card-content h3 a {
  color: inherit;
}

.shop-card-benefit {
  margin: 14px 0 0;
  color: var(--ink);
  font-weight: 750;
}

.shop-card-craft {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.shop-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
}

.shop-card-price,
.woocommerce .premium-shop-products ul.products li.product .price {
  color: var(--green-900);
  font-size: 1.06rem;
  font-weight: 950;
}

.woocommerce .premium-shop-products ul.products li.product .button {
  margin: 0;
  padding: 12px 16px;
  min-height: 42px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 42px;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
  margin: 0 4px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-radius: 999px;
  color: var(--green-900);
  background: var(--white);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  color: var(--white);
  background: var(--green-800);
}

.brand-page {
  background: linear-gradient(180deg, var(--cream), var(--white) 42%, var(--cream));
}

.inner-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 217, 106, 0.4), transparent 28%),
    radial-gradient(circle at 10% 0%, rgba(183, 214, 120, 0.28), transparent 24%),
    linear-gradient(135deg, #10371f 0%, #25683c 50%, #d29a26 100%);
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
}

.inner-hero-grid,
.narrow-hero {
  position: relative;
  z-index: 1;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 56px;
  min-height: 520px;
  padding: 72px 0;
}

.narrow-hero {
  max-width: 920px;
  padding: 92px 0;
  text-align: center;
}

.inner-hero h1,
.narrow-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
  font-weight: 900;
  line-height: 1.02;
}

.inner-hero p,
.narrow-hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.inner-hero-image {
  display: grid;
  place-items: center;
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.7), transparent 28%),
    rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.inner-hero-image img {
  width: min(88%, 580px);
  border-radius: 28px;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.2));
}

.page-band {
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 217, 106, 0.25), transparent 28%),
    var(--cream);
}

.story-timeline,
.three-column,
.two-column,
.ingredient-detail-grid,
.review-page-grid,
.contact-page-grid,
.faq-page-wrap {
  display: grid;
  gap: 22px;
}

.story-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.two-column,
.faq-page-wrap,
.contact-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ingredient-detail-grid,
.review-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card,
.brand-card,
.ingredient-detail,
.contact-form-card,
.review-cta {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.timeline-card,
.brand-card,
.ingredient-detail,
.contact-form-card,
.review-cta {
  padding: 30px;
}

.timeline-card span,
.contact-info-stack .brand-card span,
.ingredient-detail span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--pineapple);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-card h2,
.brand-card h2,
.ingredient-detail h2,
.contact-form-card h2,
.review-cta h2,
.faq-side h2 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.timeline-card p,
.brand-card p,
.ingredient-detail p,
.review-cta p {
  margin: 0;
  color: var(--muted);
}

.ingredient-detail {
  min-height: 310px;
  overflow: hidden;
}

.ingredient-detail.ginger { background: linear-gradient(145deg, #f4c463, #fff3cf); }
.ingredient-detail.lemon { background: linear-gradient(145deg, #ffe071, #fff8c9); }
.ingredient-detail.pineapple { background: linear-gradient(145deg, #7cad49, #fff0a9); }
.ingredient-detail.honey { background: linear-gradient(145deg, #d18b20, #ffe2a8); }

.benefits-visual-section {
  background: var(--white);
}

.benefits-visual-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: 34px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 217, 106, 0.28), transparent 28%),
    var(--cream);
  box-shadow: var(--shadow-soft);
}

.benefits-visual-panel h2 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.benefits-visual-panel p {
  color: var(--muted);
}

.benefits-visual-panel img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(10, 36, 22, 0.16);
}

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

.wellness-disclaimer {
  max-width: 860px;
  margin: 34px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
}

.faq-page-wrap {
  align-items: start;
}

.faq-side {
  position: sticky;
  top: 120px;
}

.review-page-grid .review-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 217, 106, 0.22), transparent 30%),
    var(--white);
}

.review-cta {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 217, 106, 0.3), transparent 30%),
    var(--white);
}

.contact-page-grid {
  align-items: start;
}

.contact-info-stack {
  display: grid;
  gap: 16px;
}

.contact-info-stack .brand-card a,
.contact-info-stack .brand-card p {
  color: var(--green-900);
  font-size: 1.2rem;
  font-weight: 900;
}

.contact-form-card {
  background: var(--white);
}

.serasmos-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.serasmos-contact-form label {
  color: var(--green-900);
  font-weight: 900;
}

.serasmos-contact-form .full {
  grid-column: 1 / -1;
}

.serasmos-contact-form input,
.serasmos-contact-form select,
.serasmos-contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
}

.serasmos-contact-form button {
  width: max-content;
}

.form-notice {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 800;
}

.form-notice.success {
  color: var(--green-900);
  background: rgba(183, 214, 120, 0.32);
}

.form-notice.error {
  color: #7a2119;
  background: rgba(242, 168, 29, 0.22);
}

.serasmos-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.serasmos-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-product-photo,
  .hero-bottle,
  .serasmos-js .reveal {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .main-navigation {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .main-navigation ul {
    min-width: max-content;
    padding-bottom: 8px;
  }

  .hero-inner,
  .split-layout,
  .lifestyle-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .premium-product-grid,
  .feature-card,
  .powder-card {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 520px;
  }

  .bottle-orbit {
    height: 520px;
  }

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

  .ingredient-grid,
  .shop-trust-grid,
  .premium-shop-products ul.products {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-hero-inner,
  .shop-heading-row,
  .inner-hero-grid,
  .benefits-visual-panel,
  .story-timeline,
  .three-column,
  .two-column,
  .ingredient-detail-grid,
  .review-page-grid,
  .contact-page-grid,
  .faq-page-wrap,
  .wide-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-branding img {
    width: 168px;
  }

  .account-link {
    display: none;
  }

  .wellness-hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 54px 0;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-actions .serasmos-button,
  .hero-actions .secondary,
  .hero-actions .ghost {
    width: 100%;
  }

  .hero-metrics,
  .trust-list,
  .rich-grid,
  .ingredient-grid,
  .review-grid,
  .contact-cards,
  .shop-trust-grid,
  .premium-shop-products ul.products {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hero-showcase,
  .bottle-orbit {
    min-height: 430px;
    height: 430px;
  }

  .hero-product-photo {
    width: 92%;
    max-height: 330px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 720px;
  }

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

  .shop-hero-inner {
    gap: 28px;
    min-height: auto;
    padding: 56px 0 76px;
  }

  .shop-hero h1 {
    font-size: 2.85rem;
  }

  .shop-hero-art {
    min-height: 330px;
    border-radius: 28px;
  }

  .shop-trust-section {
    margin-top: -42px;
  }

  .shop-trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .shop-trust-grid div:last-child {
    border-bottom: 0;
  }

  .shop-category-section {
    padding-top: 32px;
  }

  .shop-category-inner a,
  .shop-category-inner span {
    width: 100%;
  }

  .shop-card-image {
    min-height: 310px;
  }

  .shop-card-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .woocommerce .premium-shop-products ul.products li.product .button {
    width: 100%;
  }

  .narrow-hero,
  .inner-hero-grid {
    padding: 62px 0;
  }

  .inner-hero h1,
  .narrow-hero h1 {
    font-size: 2.7rem;
  }

  .inner-hero-image {
    min-height: 300px;
  }

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

  .serasmos-contact-form button {
    width: 100%;
  }
}

/* =====================
   SOCIAL ICONS
   ===================== */

.social-icon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-icon-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-icon-links a:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--white);
  transform: translateY(-2px);
}

.social-icon-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-900);
  border: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-social-links a:hover {
  background: var(--green-900);
  color: var(--pineapple);
  transform: translateY(-2px);
}

.contact-social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* =====================
   PRODUCT ECOSYSTEM
   ===================== */

.product-ecosystem {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 217, 106, 0.22), transparent 26%),
    var(--cream);
}

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

.ecosystem-card {
  position: relative;
  padding: 30px 26px 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.ecosystem-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(10, 36, 22, 0.13);
}

.ecosystem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 18px;
  font-size: 1.55rem;
  line-height: 1;
}

.ecosystem-card h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  line-height: 1.1;
}

.ecosystem-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.coming-soon-tag {
  display: inline-block;
  padding: 7px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-400), var(--ginger));
  color: var(--green-900);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =====================
   ABOUT PAGE ADDITIONS
   ===================== */

.roots-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 42px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 217, 106, 0.3), transparent 26%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.roots-panel h2 {
  margin: 0 0 18px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.06;
}

.roots-panel p {
  margin: 0 0 14px;
  color: var(--muted);
}

.roots-panel p:last-child {
  margin-bottom: 0;
}

.roots-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.roots-stat {
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
  text-align: center;
}

.roots-stat strong {
  display: block;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  line-height: 1;
}

.roots-stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--green-900);
  color: var(--pineapple);
  font-size: 1.05rem;
  font-weight: 950;
}

.process-step h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.why-minnesota-band {
  background:
    radial-gradient(circle at 14% 20%, rgba(183, 214, 120, 0.28), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(255, 217, 106, 0.24), transparent 28%),
    var(--cream);
}

/* =====================
   REVIEW PAGE ENHANCEMENTS
   ===================== */

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--white);
  font-weight: 950;
  font-size: 0.95rem;
}

.review-meta-text strong {
  display: block;
  color: var(--green-900);
  font-size: 0.95rem;
  font-weight: 900;
}

.review-meta-text span {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.review-product-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(29, 86, 50, 0.08);
  color: var(--green-800);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* =====================
   RESPONSIVE — NEW ADDITIONS
   ===================== */

@media (max-width: 1040px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roots-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .ecosystem-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .roots-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
