/*
Theme Name: HerbaShop Astra Child
Theme URI: https://herbashop.rs/
Description: Custom Astra child theme for HerbaShop.rs.
Author: HerbaShop.rs
Template: astra
Version: 1.10.0
Text Domain: herbashop
*/

:root {
  --herba-green: #2c8a12;
  --herba-green-dark: #1f6f0d;
  --herba-green-soft: #eaf6e7;
  --herba-ink: #202421;
  --herba-muted: #6b746d;
  --herba-line: #e7ece7;
  --herba-panel: #f7faf6;
  --herba-gold: #d49a2f;
  --herba-radius: 8px;
  --herba-shadow: 0 18px 50px rgba(28, 65, 24, 0.08);
}

body {
  color: var(--herba-ink);
  background: #fff;
}

a {
  color: var(--herba-green-dark);
}

.button,
button,
.ast-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #place_order {
  border-radius: 6px;
  background: var(--herba-green);
  border-color: var(--herba-green);
  color: #fff;
  font-weight: 750;
}

.button:hover,
button:hover,
.ast-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #place_order:hover {
  background: var(--herba-green-dark);
  border-color: var(--herba-green-dark);
  color: #fff;
}

body.home .site-header,
body.home .site-footer,
body.home .ast-breadcrumbs-wrapper {
  display: none;
}

body.home .site-content .ast-container {
  max-width: none;
  padding: 0;
}

body.home .entry-content,
body.home .site-main {
  margin: 0;
}

.herba-shopfront {
  min-height: 100vh;
  background: #fff;
}

.herba-shell {
  width: min(1720px, calc(100% - 72px));
  margin: 0 auto;
}

.herba-topbar {
  background: linear-gradient(90deg, #1f6f0d, #2f9116);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.herba-topbar .herba-shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.herba-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--herba-line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.herba-header__inner {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 74px;
}

.herba-logo img {
  display: block;
  width: 210px;
  height: auto;
}

.herba-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.herba-nav a {
  color: var(--herba-ink);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.herba-nav a:hover {
  color: var(--herba-green);
}

.herba-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.herba-search,
.herba-cart {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--herba-line);
  border-radius: 6px;
  background: #fff;
  color: var(--herba-muted);
  text-decoration: none;
}

.herba-search {
  min-width: 250px;
  padding: 0 18px;
}

.herba-cart {
  position: relative;
  padding: 0 16px;
  color: var(--herba-ink);
  font-weight: 800;
}

.herba-cart b {
  position: absolute;
  right: -8px;
  top: -8px;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--herba-green);
  color: #fff;
  font-size: 12px;
}

.herba-hero-card {
  padding: 30px 0 12px;
}

.herba-hero-card .herba-shell {
  width: min(1720px, calc(100% - 72px));
}

.herba-hero-static {
  position: relative;
  height: clamp(420px, 36vw, 620px);
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--herba-radius);
  background: #f8f7f2;
  box-shadow: var(--herba-shadow);
}

.herba-hero-static::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 247, 242, 0.98) 0%, rgba(248, 247, 242, 0.84) 35%, rgba(248, 247, 242, 0.1) 68%);
  pointer-events: none;
}

.herba-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding: 78px 0 50px 74px;
}

.herba-crumbs {
  margin: 0 0 14px;
  color: var(--herba-green);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.herba-hero-copy h1 {
  margin: 0 0 14px;
  color: var(--herba-ink);
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.herba-hero-copy p {
  color: #3f4740;
  font-size: 20px;
  line-height: 1.52;
}

.herba-hero-image {
  position: absolute;
  inset: 0;
}

.herba-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.herba-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.herba-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.herba-btn--primary {
  background: var(--herba-green);
  color: #fff;
}

.herba-btn--primary:hover {
  background: var(--herba-green-dark);
  color: #fff;
}

.herba-btn--ghost {
  background: #fff;
  color: var(--herba-ink);
  border: 1px solid #d5dfd3;
}

.herba-category-strip {
  padding: 0 0 28px;
}

.herba-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.herba-category {
  min-height: 76px;
  padding: 16px 18px;
  border: 1px solid var(--herba-line);
  border-radius: var(--herba-radius);
  background: linear-gradient(135deg, #fff, #f7faf6);
  color: var(--herba-ink);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(28, 65, 24, 0.04);
}

.herba-category strong,
.herba-category span {
  display: block;
}

.herba-category strong {
  font-size: 19px;
}

.herba-category span {
  margin-top: 4px;
  color: var(--herba-muted);
  font-size: 14px;
}

.herba-section {
  padding: 46px 0;
}

.herba-section--soft {
  background: var(--herba-panel);
}

.herba-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.herba-section h2,
.herba-section-head h2 {
  margin: 0;
  color: var(--herba-ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.herba-section-head a {
  color: var(--herba-green-dark);
  font-weight: 850;
  text-decoration: none;
}

.herba-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.herba-product-card {
  padding: 16px;
  border: 1px solid var(--herba-line);
  border-radius: var(--herba-radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(28, 65, 24, 0.05);
}

.herba-product-card__media {
  display: flex;
  height: 150px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: radial-gradient(circle at center, #fff 0%, #eef7eb 100%);
  color: var(--herba-green);
  font-size: 36px;
  font-weight: 950;
}

.herba-product-card h3 {
  margin: 16px 0 6px;
  color: var(--herba-ink);
  font-size: 18px;
}

.herba-product-card p {
  min-height: 48px;
  margin: 0;
  color: var(--herba-muted);
  font-size: 14px;
  line-height: 1.55;
}

.herba-product-card span {
  display: inline-flex;
  margin-top: 14px;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #cfe4ca;
  border-radius: 6px;
  color: var(--herba-green-dark);
  font-weight: 850;
}

.herba-benefits {
  padding: 18px 0 34px;
}

.herba-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--herba-line);
  border-radius: var(--herba-radius);
  background: #fff;
  box-shadow: var(--herba-shadow);
}

.herba-benefits__grid div {
  padding: 22px 24px;
  border-right: 1px solid var(--herba-line);
}

.herba-benefits__grid div:last-child {
  border-right: 0;
}

.herba-benefits strong,
.herba-benefits span {
  display: block;
}

.herba-benefits strong {
  color: var(--herba-ink);
}

.herba-benefits span {
  margin-top: 4px;
  color: var(--herba-muted);
  font-size: 14px;
}

.herba-how {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.herba-how p,
.herba-member p,
.herba-footer p {
  color: var(--herba-muted);
  line-height: 1.65;
}

.herba-how ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.herba-how li {
  min-height: 130px;
  padding: 18px;
  border-radius: var(--herba-radius);
  background: #fff;
  border: 1px solid var(--herba-line);
}

.herba-how li strong {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--herba-green);
  color: #fff;
}

.herba-how li span {
  display: block;
  margin-top: 16px;
  color: var(--herba-ink);
  font-weight: 850;
}

.herba-member {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--herba-line);
  border-radius: var(--herba-radius);
  background: #fff;
  box-shadow: var(--herba-shadow);
}

.herba-member img {
  width: 230px;
  height: auto;
}

.herba-member h2 {
  margin-bottom: 8px;
}

.herba-footer {
  padding: 34px 0;
  border-top: 1px solid var(--herba-line);
  background: #fbfcfb;
}

.herba-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
}

.herba-footer img {
  width: 210px;
  height: auto;
}

.herba-footer strong,
.herba-footer a,
.herba-footer span {
  display: block;
}

.herba-footer strong {
  margin-bottom: 10px;
  color: var(--herba-ink);
}

.herba-footer a,
.herba-footer span {
  margin-top: 6px;
  color: var(--herba-muted);
  text-decoration: none;
}

.herba-footer-note {
  max-width: 420px;
  font-size: 12px;
}

.herba-contact-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 17px;
  border-radius: 999px;
  background: #1f9f63;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(31, 159, 99, 0.32);
}

.herba-contact-float:hover {
  color: #fff;
  background: #188754;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  border-top-color: var(--herba-green);
}

.woocommerce-breadcrumb,
.ast-breadcrumbs,
.ast-breadcrumbs-wrapper {
  color: var(--herba-muted);
  font-size: 13px;
}

.woocommerce-breadcrumb a,
.ast-breadcrumbs a {
  color: var(--herba-green-dark);
  font-weight: 750;
  text-decoration: none;
}

.woocommerce-breadcrumb a:hover,
.ast-breadcrumbs a:hover {
  color: var(--herba-green);
}

.woocommerce div.product .product_title,
.woocommerce-products-header__title,
.entry-title {
  color: var(--herba-ink);
}

.woocommerce table.shop_table,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border-radius: var(--herba-radius);
  border-color: var(--herba-line);
}

.herba-checkout-note {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(44, 138, 18, 0.18);
  border-radius: var(--herba-radius);
  background: var(--herba-green-soft);
  color: var(--herba-green-dark);
  font-weight: 750;
}

body.single-product .site-content {
  background: linear-gradient(180deg, #fbfcfb 0%, #fff 260px);
}

body.single-product .ast-container {
  max-width: 1220px;
}

.woocommerce-products-header {
  margin: 20px 0 24px;
}

.woocommerce-products-header__title.page-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.woocommerce ul.products li.product {
  padding: 14px;
  border: 1px solid var(--herba-line);
  border-radius: var(--herba-radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(28, 65, 24, 0.05);
}

.woocommerce ul.products li.product a img {
  border-radius: 7px;
  background: #f7faf6;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--herba-ink);
  font-size: 17px;
  line-height: 1.25;
}

.woocommerce ul.products li.product .price {
  color: var(--herba-green-dark);
  font-weight: 900;
}

.woocommerce div.product {
  margin-top: 28px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 34px;
}

.woocommerce div.product div.images {
  padding: 18px;
  border: 1px solid var(--herba-line);
  border-radius: var(--herba-radius);
  background: #fff;
  box-shadow: var(--herba-shadow);
}

.woocommerce div.product div.images img {
  border-radius: 7px;
}

.woocommerce div.product div.summary {
  padding: 28px;
  border: 1px solid var(--herba-line);
  border-radius: var(--herba-radius);
  background: #fff;
  box-shadow: var(--herba-shadow);
}

.herba-product-kicker {
  margin: 0 0 8px;
  color: var(--herba-green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.woocommerce div.product .product_title {
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

.herba-product-meta-line {
  margin: 0 0 18px;
  color: var(--herba-muted);
  font-size: 14px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--herba-green-dark);
  font-size: 28px;
  font-weight: 900;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
}

.woocommerce .quantity .qty {
  min-height: 46px;
  border-color: var(--herba-line);
  border-radius: 6px;
}

.woocommerce div.product form.cart .button {
  min-height: 46px;
  padding: 0 24px;
}

.herba-product-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.herba-product-notes div {
  padding: 13px;
  border: 1px solid #dbe8d8;
  border-radius: 7px;
  background: var(--herba-green-soft);
}

.herba-product-notes strong,
.herba-product-notes span {
  display: block;
}

.herba-product-notes strong {
  color: var(--herba-green-dark);
  font-size: 14px;
}

.herba-product-notes span {
  margin-top: 4px;
  color: #4d604e;
  font-size: 13px;
  line-height: 1.45;
}

.woocommerce div.product .woocommerce-tabs {
  clear: both;
  padding: 26px;
  border: 1px solid var(--herba-line);
  border-radius: var(--herba-radius);
  background: #fff;
  box-shadow: var(--herba-shadow);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 22px;
  border: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  border: 1px solid var(--herba-line);
  border-radius: 999px;
  background: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-color: #cfe4ca;
  background: var(--herba-green-soft);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 9px 16px;
  color: var(--herba-ink);
  font-weight: 850;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  margin-top: 0;
  color: var(--herba-ink);
}

.woocommerce div.product .woocommerce-tabs .panel h3,
.woocommerce div.product .woocommerce-tabs .panel h4 {
  margin-top: 24px;
  color: var(--herba-ink);
}

.woocommerce div.product .woocommerce-tabs .panel p,
.woocommerce div.product .woocommerce-tabs .panel li {
  color: var(--herba-muted);
  line-height: 1.7;
}

.herba-product-content {
  display: grid;
  gap: 26px;
}

.herba-product-content > section,
.herba-product-block {
  padding: 22px;
  border: 1px solid var(--herba-line);
  border-radius: var(--herba-radius);
  background: #fff;
}

.herba-product-content h2,
.herba-product-content h3,
.herba-product-content h4 {
  color: var(--herba-ink);
  letter-spacing: 0;
}

.herba-product-content h2 {
  margin: 0 0 12px;
  font-size: clamp(25px, 2.5vw, 34px);
}

.herba-product-content h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.herba-product-lead {
  padding: 24px;
  border: 1px solid #cfe4ca;
  border-radius: var(--herba-radius);
  background: linear-gradient(135deg, #fff, var(--herba-green-soft));
}

.herba-product-lead p:last-child,
.herba-product-block p:last-child,
.herba-product-content li:last-child {
  margin-bottom: 0;
}

.herba-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.herba-product-cardlet {
  padding: 16px;
  border: 1px solid var(--herba-line);
  border-radius: 7px;
  background: var(--herba-panel);
}

.herba-product-cardlet strong {
  display: block;
  margin-bottom: 6px;
  color: var(--herba-ink);
}

.herba-product-steps {
  counter-reset: herba-step;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.herba-product-steps li {
  counter-increment: herba-step;
  position: relative;
  padding: 14px 14px 14px 54px;
  border: 1px solid var(--herba-line);
  border-radius: 7px;
  background: #fff;
}

.herba-product-steps li::before {
  content: counter(herba-step);
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--herba-green);
  color: #fff;
  font-weight: 900;
}

.herba-nutrition-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--herba-line);
  border-radius: var(--herba-radius);
  background: #fff;
}

.herba-nutrition-table th,
.herba-nutrition-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--herba-line);
  text-align: left;
  vertical-align: top;
}

.herba-nutrition-table th {
  background: var(--herba-panel);
  color: var(--herba-ink);
  font-weight: 850;
}

.herba-nutrition-table tr:last-child th,
.herba-nutrition-table tr:last-child td {
  border-bottom: 0;
}

.herba-product-faq {
  display: grid;
  gap: 10px;
}

.herba-product-faq details {
  border: 1px solid var(--herba-line);
  border-radius: 7px;
  background: #fff;
}

.herba-product-faq summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--herba-ink);
  font-weight: 850;
}

.herba-product-faq details > div {
  padding: 0 16px 16px;
  color: var(--herba-muted);
  line-height: 1.7;
}

.herba-product-note {
  padding: 14px 16px;
  border-left: 4px solid var(--herba-green);
  border-radius: 6px;
  background: var(--herba-green-soft);
  color: #415343;
}

.herba-product-trustbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.herba-product-trustbar div {
  padding: 14px;
  border: 1px solid #dbe8d8;
  border-radius: 7px;
  background: var(--herba-green-soft);
}

.herba-product-trustbar strong,
.herba-product-trustbar span {
  display: block;
}

.herba-product-trustbar strong {
  color: var(--herba-green-dark);
}

.herba-product-trustbar span {
  margin-top: 4px;
  color: #4d604e;
  font-size: 13px;
  line-height: 1.45;
}

.woocommerce div.product .woocommerce-tabs table.shop_attributes {
  border-top: 1px solid var(--herba-line);
}

.woocommerce div.product .woocommerce-tabs table.shop_attributes th,
.woocommerce div.product .woocommerce-tabs table.shop_attributes td {
  border-color: var(--herba-line);
}

.related.products,
.upsells.products {
  margin-top: 38px;
}

.related.products > h2,
.upsells.products > h2 {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: 0;
}

.herba-contact-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 82px;
}

.herba-contact-hero {
  margin-bottom: 28px;
  padding: 34px;
  border: 1px solid var(--herba-line);
  border-radius: var(--herba-radius);
  background: linear-gradient(135deg, #fff, var(--herba-panel));
}

.herba-contact-hero h1 {
  margin: 0 0 12px;
  color: var(--herba-ink);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.herba-contact-hero p,
.herba-contact-card p {
  color: var(--herba-muted);
  line-height: 1.65;
}

.herba-contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
}

.herba-contact-card,
.herba-contact-form {
  padding: 26px;
  border: 1px solid var(--herba-line);
  border-radius: var(--herba-radius);
  background: #fff;
  box-shadow: var(--herba-shadow);
}

.herba-contact-card h2,
.herba-contact-form h2 {
  margin-top: 0;
  color: var(--herba-ink);
}

.herba-contact-card a {
  display: flex;
  min-height: 44px;
  align-items: center;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid #d5dfd3;
  border-radius: 6px;
  color: var(--herba-green-dark);
  font-weight: 850;
  text-decoration: none;
}

.herba-contact-form label {
  display: block;
  margin-bottom: 14px;
  color: var(--herba-ink);
  font-weight: 750;
}

.herba-contact-form input,
.herba-contact-form textarea {
  width: 100%;
  margin-top: 6px;
  border-color: var(--herba-line);
  border-radius: 6px;
}

.herba-contact-form button {
  min-height: 46px;
}

.herba-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.herba-form-success,
.herba-form-error {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 6px;
}

.herba-form-success {
  background: var(--herba-green-soft);
  color: var(--herba-green-dark);
}

.herba-form-error {
  background: #fff2f2;
  color: #8a1f1f;
}

.herba-form-error p {
  margin: 0;
}

.herba-contact-disclaimer {
  margin: 18px 0 0;
  color: var(--herba-muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 1180px) {
  .herba-header__inner {
    grid-template-columns: 220px 1fr;
  }

  .herba-header__actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-bottom: 14px;
  }

  .herba-hero-copy {
    padding-left: 58px;
  }

  .herba-products-grid,
  .herba-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .herba-benefits__grid div:nth-child(2) {
    border-right: 0;
  }

  .herba-how,
  .herba-member,
  .herba-footer__grid,
  .herba-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .herba-shell {
    width: min(100% - 28px, 1720px);
  }

  .herba-topbar .herba-shell {
    display: block;
  }

  .herba-topbar span {
    display: block;
    padding: 2px 0;
  }

  .herba-header {
    position: static;
  }

  .herba-header__inner,
  .herba-category-grid,
  .herba-products-grid,
  .herba-benefits__grid,
  .herba-how ol {
    grid-template-columns: 1fr;
  }

  .herba-header__inner {
    gap: 12px;
    min-height: 0;
    padding: 14px 0;
  }

  .herba-nav {
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .herba-logo img {
    width: 160px;
  }

  .herba-header__actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding-bottom: 0;
  }

  .herba-search {
    min-width: 0;
    flex: 1;
    font-size: 14px;
  }

  .herba-hero-card {
    padding-top: 16px;
  }

  .herba-hero-card .herba-shell {
    width: min(100% - 28px, 1184px);
  }

  .herba-hero-static {
    height: 570px;
    min-height: 570px;
  }

  .herba-hero-static::after {
    background: linear-gradient(180deg, rgba(248, 247, 242, 0.98) 0%, rgba(248, 247, 242, 0.9) 54%, rgba(248, 247, 242, 0.12) 100%);
  }

  .herba-hero-image img {
    object-position: 76% center;
  }

  .herba-hero-copy {
    max-width: 360px;
    padding: 32px 20px;
  }

  .herba-hero-copy h1 {
    font-size: 39px;
  }

  .herba-hero-copy p {
    font-size: 16px;
  }

  .herba-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .herba-btn {
    min-height: 46px;
    padding: 0 16px;
  }

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

  .herba-category {
    min-height: 72px;
    padding: 14px;
  }

  .herba-category strong {
    font-size: 17px;
  }

  .herba-section-head {
    display: block;
  }

  .herba-benefits__grid div {
    border-right: 0;
    border-bottom: 1px solid var(--herba-line);
  }

  .herba-benefits__grid div:last-child {
    border-bottom: 0;
  }

  .herba-member {
    padding: 22px;
  }

  .herba-contact-float {
    right: 12px;
    bottom: 12px;
  }

  .herba-contact-page {
    width: min(100% - 28px, 1120px);
    padding: 34px 0 58px;
  }

  .herba-contact-hero,
  .herba-contact-card,
  .herba-contact-form {
    padding: 20px;
  }

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary,
  .woocommerce div.product .woocommerce-tabs {
    padding: 18px;
  }

  .herba-product-notes {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product form.cart {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .woocommerce div.product form.cart .button {
    width: 100%;
  }

  .herba-product-grid,
  .herba-product-trustbar {
    grid-template-columns: 1fr;
  }

  .herba-product-content > section,
  .herba-product-block,
  .herba-product-lead {
    padding: 18px;
  }
}
