@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@400;500;600;700;800&display=swap");

:root {
  --green-950: #063d1e;
  --green-900: #075126;
  --green-800: #0b672e;
  --green-700: #0e7a36;
  --green-100: #e9f6ec;
  --leaf: #65b742;
  --gold: #f0b429;
  --ink: #102318;
  --muted: #647267;
  --line: #dfe8e1;
  --panel: #ffffff;
  --soft: #f6faf6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Noto Sans Thai", "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

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

img,
svg {
  max-width: 100%;
}

.container {
  max-width: 1180px;
}

.top-strip {
  padding: 10px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 58%),
    radial-gradient(circle at 16% 0%, rgba(182, 231, 95, 0.16), transparent 30%),
    linear-gradient(90deg, #08612d 0%, #075126 48%, #04381d 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 500;
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(6, 61, 30, 0.12);
}

.top-strip i {
  display: inline-flex;
  margin-right: 7px;
  color: #d6e75d;
  vertical-align: -2px;
}

.top-strip a,
.top-strip span {
  line-height: 1.2;
}

.top-strip a {
  color: rgba(255, 255, 255, 0.92);
}

.top-strip a:hover {
  color: #fff;
}

.top-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  margin: 0 2px;
  background: rgba(255, 255, 255, 0.26);
}

.top-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 650;
}

.top-cart-link .cart-badge {
  top: -10px;
  left: 12px;
  width: 17px;
  height: 17px;
  color: #063d1e;
  background: #d6e75d;
  border: 2px solid #075126;
}

.top-cart-link i {
  margin-right: 5px;
}

.custom-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 81, 38, 0.08);
  box-shadow: 0 12px 30px rgba(7, 81, 38, 0.08);
  backdrop-filter: blur(14px);
}

.navbar-brand {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  flex: 0 0 300px;
  min-width: 0;
  color: var(--green-900);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.navbar-brand:hover {
  color: var(--green-900);
}

.navbar-brand small {
  display: block;
  margin-top: 3px;
  color: #52705d;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 240px;
  height: 46px;
  object-fit: contain;
}

.brand-leaf {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green-700), var(--leaf));
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(14, 122, 54, 0.18);
}

.brand-dot {
  color: #244b2f;
}

.navbar-toggler {
  border: 1px solid var(--line);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(14, 122, 54, 0.15);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2814, 122, 54, .9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-navbar-nav {
  gap: 2px;
}

.custom-navbar-nav .nav-link {
  position: relative;
  padding: 10px 9px !important;
  color: #263d2d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.custom-navbar-nav .nav-link::after {
  position: absolute;
  right: 18%;
  bottom: 4px;
  left: 18%;
  height: 3px;
  content: "";
  background: var(--green-700);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.2s ease;
}

.custom-navbar-nav .active .nav-link,
.custom-navbar-nav .nav-link:hover {
  color: var(--green-900);
}

.custom-navbar-nav .active .nav-link::after,
.custom-navbar-nav .nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}

.search-box {
  display: flex;
  align-items: center;
  width: 188px;
  height: 42px;
  padding: 0 14px;
  margin: 0;
  background: #f9fbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.search-box i {
  color: #55685c;
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 72px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.cart-link i {
  font-size: 20px;
}

.cart-badge {
  position: absolute;
  top: -12px;
  left: 14px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.home-banner {
  position: relative;
  min-height: 620px;
  margin-bottom: 54px;
  overflow: visible;
  background: #edf5e7;
}

.home-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.08) 68%);
  pointer-events: none;
}

.home-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-banner .container {
  position: relative;
  z-index: 3;
  min-height: 620px;
  padding-top: 76px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-banner-content {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  align-items: center;
  gap: 32px;
}

.home-banner-copy {
  max-width: 760px;
}

.intro-excerpt h1 {
  margin: 0 0 22px;
  color: var(--green-950);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 2px;
}

.hero-title span {
  display: block;
}

.hero-title__brand {
  font-size: 0.62em;
  font-weight: 850;
  line-height: 1.05;
}

.hero-title__accent {
  display: inline !important;
  color: var(--green-700);
}

.intro-excerpt p {
  margin: 0 0 26px;
  color: #213b29;
  font-size: 20px;
  font-weight: 600;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 24px;
}

.hero-benefits div {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 66px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(20, 65, 31, 0.06);
  backdrop-filter: blur(8px);
}

.hero-benefits i {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #087436;
  background: rgba(239, 249, 237, 0.92);
  border-radius: 50%;
  font-size: 13px;
}

.hero-benefits span {
  display: block;
  min-width: 0;
  color: #143c20;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.28;
}

.hero-benefits small {
  display: block;
  margin-top: 3px;
  color: #5f6d63;
  font-size: 11px;
  font-weight: 450;
  line-height: 1.36;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 22px;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 650;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: #fff;
  box-shadow: 0 10px 20px rgba(14, 122, 54, 0.16);
}

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

.btn-white {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 81, 38, 0.18);
  backdrop-filter: blur(8px);
}

.btn-white:hover {
  color: var(--green-950);
  background: #fff;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  isolation: isolate;
}

.sun-glow {
  position: absolute;
  top: 12%;
  right: 9%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(238, 246, 192, 0.38) 54%, transparent 72%);
  border-radius: 50%;
  filter: blur(2px);
}

.product-pack {
  position: absolute;
  right: 110px;
  bottom: 28px;
  z-index: 5;
  width: 235px;
  min-height: 340px;
  padding: 28px 22px 22px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(100deg, #eff4ef 0%, #fff 46%, #dfe6dd 100%);
  border-radius: 6px 6px 20px 20px;
  box-shadow: 0 34px 55px rgba(22, 42, 19, 0.34);
  transform: perspective(700px) rotateY(-6deg);
}

.product-pack::before {
  position: absolute;
  inset: 0 0 auto;
  height: 78px;
  content: "";
  background: linear-gradient(135deg, var(--green-900), #172117);
}

.product-pack::after {
  position: absolute;
  right: -26px;
  bottom: 82px;
  left: -26px;
  height: 125px;
  content: "";
  background: linear-gradient(180deg, rgba(48, 113, 45, 0.9), rgba(74, 48, 28, 0.96));
  transform: rotate(-8deg);
}

.pack-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 4px 9px;
  color: #fff;
  background: #72bf44;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}

.product-pack strong,
.product-pack b,
.product-pack em,
.product-pack small,
.pack-field {
  position: relative;
  z-index: 2;
}

.product-pack strong {
  display: block;
  margin-top: 12px;
  color: #1d241d;
  font-size: 44px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.product-pack b {
  display: block;
  margin: 5px 0;
  color: var(--green-700);
  font-size: 26px;
  font-weight: 900;
}

.product-pack em {
  display: block;
  color: #172217;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
}

.pack-field {
  width: 150px;
  height: 78px;
  margin: 22px auto 15px;
  background:
    radial-gradient(circle at 28% 44%, #9ad363 0 7px, transparent 8px),
    radial-gradient(circle at 52% 32%, #f4d18e 0 9px, transparent 10px),
    radial-gradient(circle at 72% 50%, #73b73e 0 8px, transparent 9px),
    linear-gradient(180deg, #9acb62, #4b7e38 55%, #4e2e1c);
  border: 5px solid #fff;
  border-radius: 50% 50% 42% 42%;
  box-shadow: 0 10px 20px rgba(13, 47, 20, 0.18);
}

.product-pack small {
  display: block;
  color: #fff;
  background: rgba(6, 61, 30, 0.86);
  border-radius: 5px;
  padding: 7px;
  font-weight: 700;
}

.product-bottle {
  position: absolute;
  bottom: 42px;
  left: 40px;
  z-index: 4;
  width: 88px;
  height: 230px;
  padding-top: 78px;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #0a672f, #159144 52%, #075126);
  border-radius: 38px 38px 18px 18px;
  box-shadow: 0 24px 35px rgba(7, 81, 38, 0.28);
}

.product-bottle::before {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 40px;
  height: 32px;
  content: "";
  background: #075126;
  border-radius: 6px 6px 2px 2px;
}

.product-bottle span {
  position: absolute;
  top: 28px;
  left: 22px;
  width: 44px;
  height: 44px;
  background: radial-gradient(circle, #d8f4af 0 18%, #5dbb43 19% 48%, transparent 49%);
  border: 3px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}

.product-bottle strong {
  display: block;
  padding: 8px 4px;
  background: #ecfff0;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
}

.product-bottle small {
  display: block;
  margin-top: 10px;
  font-weight: 800;
}

.leaf {
  position: absolute;
  z-index: 3;
  width: 120px;
  height: 160px;
  background:
    radial-gradient(ellipse at 56% 28%, #91d36b 0 18%, transparent 19%),
    radial-gradient(ellipse at 42% 46%, #70b94a 0 18%, transparent 19%),
    radial-gradient(ellipse at 58% 64%, #4f9b39 0 16%, transparent 17%);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.22));
}

.leaf::after {
  position: absolute;
  left: 58px;
  top: 20px;
  width: 4px;
  height: 130px;
  content: "";
  background: #35782d;
  border-radius: 999px;
  transform: rotate(18deg);
}

.leaf-one {
  right: 0;
  bottom: 58px;
  transform: rotate(-18deg) scale(1.18);
}

.leaf-two {
  right: 345px;
  bottom: 115px;
  opacity: 0.82;
  transform: rotate(19deg) scale(0.75);
}

.soil {
  position: absolute;
  right: -40px;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 105px;
  background:
    radial-gradient(circle at 12% 58%, #51301e 0 12px, transparent 13px),
    radial-gradient(circle at 27% 46%, #6a4124 0 14px, transparent 15px),
    radial-gradient(circle at 43% 62%, #422817 0 16px, transparent 17px),
    radial-gradient(circle at 61% 50%, #6e4425 0 13px, transparent 14px),
    radial-gradient(circle at 79% 64%, #392217 0 15px, transparent 16px),
    linear-gradient(180deg, #6f4325, #2f1c14);
  border-radius: 55% 45% 0 0 / 65% 60% 0 0;
  box-shadow: 0 -18px 40px rgba(64, 47, 21, 0.16);
}

.trust-band {
  position: relative;
  z-index: 6;
  margin-top: -48px;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, rgba(6, 61, 30, 0.76), rgba(38, 118, 61, 0.68));
  border-radius: 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 30px rgba(6, 61, 30, 0.16);
}

.home-banner .trust-panel {
  width: calc(100% - 48px);
  margin: 0 auto;
  transform: translateY(50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 20px 30px rgba(6, 61, 30, 0.16),
    0 0 0 18px rgba(255, 255, 255, 0.42);
}

.trust-panel div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 68px;
  padding: 14px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

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

.trust-panel i {
  font-size: 27px;
  color: rgba(213, 255, 185, 0.9);
}

.section-space {
  padding: 46px 0 34px;
}

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

.section-heading h2,
.section-heading h3,
.why-buy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

.section-heading a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 18px;
  color: var(--green-900);
  border: 1px solid var(--green-700);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.product-card,
.feature-card,
.review-card,
.article-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(16, 35, 24, 0.06);
  transition: 0.2s ease;
}

.product-shop-note-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 18px;
}

.home-product-note-bar {
  margin-top: -8px;
  margin-bottom: 20px;
}

.product-shop-note-bar span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  color: var(--green-900);
  background: #eef8eb;
  border: 1px solid rgba(14, 122, 54, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

.product-shop-note-bar span::before {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  content: "";
  background: var(--leaf);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(101, 183, 66, 0.14);
}

.product-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(16, 35, 24, 0.1);
}

.product-card {
  padding: 20px 18px 16px;
  cursor: pointer;
}

.product-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 18%, rgba(101, 183, 66, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(247, 251, 244, 0.7), transparent 38%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card-link {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - 24px);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 10px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 122, 54, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(16, 35, 24, 0.08);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.product-badge.is-sale {
  color: #fff;
  background: linear-gradient(135deg, #d95721, #ef8b2c);
  border-color: rgba(217, 87, 33, 0.22);
}

.product-badge.is-hot {
  color: #fff;
  background: linear-gradient(135deg, var(--green-800), var(--leaf));
}

.product-badge.is-low {
  color: #7a3d00;
  background: #fff4d9;
  border-color: #f4d391;
}

.product-badge.is-ready {
  color: var(--green-900);
  background: #ecf8e7;
}

.ribbon {
  position: absolute;
  top: 14px;
  left: -31px;
  z-index: 4;
  width: 118px;
  padding: 5px 0;
  color: #fff;
  background: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  transform: rotate(-45deg);
}

.product-art {
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
}

.product-image {
  display: block;
  width: 150px;
  height: 150px;
  margin: 12px auto 18px;
  object-fit: contain;
}

.product-art.sachet,
.product-art.bag {
  width: 118px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0 34%, rgba(99, 159, 61, 0.9) 35% 58%, rgba(53, 34, 21, 0.92) 59% 100%),
    linear-gradient(100deg, #f4f8f3, #fff 44%, #dfe8de);
  border-radius: 6px 6px 17px 17px;
  box-shadow: 0 16px 30px rgba(30, 58, 32, 0.16);
}

.product-art.sachet::before,
.product-art.bag::before {
  display: block;
  padding-top: 36px;
  color: #1f251f;
  content: "FULVIC";
  font-size: 22px;
  font-style: italic;
  font-weight: 900;
  text-align: center;
}

.product-art.sachet::after,
.product-art.bag::after {
  display: block;
  color: var(--green-700);
  content: "SOIL SMILE";
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.product-art.bag {
  width: 110px;
  height: 142px;
  transform: rotate(3deg);
}

.product-art.bottle {
  position: relative;
  width: 78px;
  height: 150px;
  background: linear-gradient(90deg, #0b642f, #15954a, #075126);
  border-radius: 34px 34px 16px 16px;
  box-shadow: 0 16px 28px rgba(30, 58, 32, 0.18);
}

.product-art.bottle::before {
  position: absolute;
  top: -12px;
  left: 23px;
  width: 32px;
  height: 24px;
  content: "";
  background: #085426;
  border-radius: 6px 6px 0 0;
}

.product-art.bottle::after {
  position: absolute;
  top: 54px;
  left: 8px;
  width: 62px;
  padding: 7px 3px;
  content: "CLEAR-RA";
  color: var(--green-800);
  background: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.product-card h3 {
  min-height: 48px;
  margin: 0 0 8px;
  color: #152019;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.product-card p {
  min-height: 42px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.product-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  color: #31513a;
  background: #f1f8ef;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.product-stock-meter {
  height: 7px;
  overflow: hidden;
  background: #e9f1e9;
  border-radius: 999px;
}

.product-stock-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green-700), var(--leaf));
  border-radius: inherit;
}

.product-stock-text {
  margin-top: 6px;
  margin-bottom: 14px;
  color: #53675a;
  font-size: 11.5px;
  font-weight: 700;
}

.product-footer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.product-footer strong {
  display: block;
  color: var(--green-700);
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.old-price {
  display: inline-block;
  margin-right: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
}

.product-footer form {
  margin: 0;
}

.product-footer .product-purchase-form {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 8px;
}

.home-product-purchase {
  align-items: end;
}

.product-qty-mini {
  display: grid;
  gap: 3px;
  margin: 0;
}

.product-qty-mini span {
  color: #617466;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.product-qty-mini input {
  width: 100%;
  min-height: 35px;
  padding: 0 8px;
  color: var(--green-950);
  background: #fff;
  border: 1px solid rgba(14, 122, 54, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  outline: 0;
}

.product-footer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 8px 8px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(14, 122, 54, 0.18);
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
}

.product-footer button:disabled {
  background: #9aa59c;
  box-shadow: none;
  cursor: not-allowed;
}

.product-footer i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--green-800);
  background: #fff;
  border-radius: 50%;
}

.product-buy-note {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  padding: 8px 10px;
  color: #506353;
  background: #f7fbf4;
  border: 1px dashed rgba(14, 122, 54, 0.22);
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
}

.product-gallery {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(101, 183, 66, 0.12), transparent 34%),
    #fff;
}

.product-show-page {
  background:
    radial-gradient(circle at 90% 8%, rgba(191, 229, 137, 0.18), transparent 22%),
    linear-gradient(180deg, #fff 0%, #f7fbf4 100%);
}

.product-gallery-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-gallery-main {
  display: block;
  width: 100%;
  max-height: 470px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f7faf4;
  border: 1px solid rgba(36, 93, 56, 0.12);
  border-radius: 8px;
}

.product-gallery-empty {
  display: grid;
  place-items: center;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.product-gallery-thumb {
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(36, 93, 56, 0.18);
  border-radius: 8px;
}

.product-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-detail-panel h3 {
  margin-bottom: 12px;
  color: var(--green-950);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.18;
}

.product-detail-eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 12px;
  margin: 0 0 12px;
  color: var(--green-900);
  background: #eef8eb;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.product-detail-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-detail-social span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: #385943;
  background: #f6faf4;
  border: 1px solid rgba(14, 122, 54, 0.1);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 750;
}

.product-detail-social span::before {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  content: "";
  background: var(--leaf);
  border-radius: 50%;
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.product-detail-price strong {
  color: var(--green-700);
  font-size: 38px;
  font-weight: 900;
}

.product-detail-price-note {
  margin: 0 0 18px;
  color: #586a5e;
  font-size: 14px;
  line-height: 1.65;
}

.product-detail-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.product-detail-stats div {
  padding: 14px 12px;
  background: #f7fbf4;
  border: 1px solid rgba(14, 122, 54, 0.1);
  border-radius: 10px;
}

.product-detail-stats span,
.product-detail-stats strong {
  display: block;
}

.product-detail-stats span {
  color: #647267;
  font-size: 12px;
  font-weight: 750;
}

.product-detail-stats strong {
  margin-top: 4px;
  color: var(--green-950);
  font-size: 15px;
  font-weight: 900;
}

.product-detail-stock {
  margin-bottom: 18px;
}

.product-detail-stock small {
  display: block;
  margin-top: 8px;
  color: #53675a;
  font-weight: 700;
}

.product-benefit-box {
  padding: 18px;
  margin: 18px 0;
  background: linear-gradient(180deg, #f7fbf4, #fff);
  border: 1px solid rgba(14, 122, 54, 0.12);
  border-radius: 12px;
}

.product-benefit-box h4 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: 17px;
  font-weight: 900;
}

.product-benefit-box ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-benefit-box li {
  position: relative;
  padding-left: 25px;
  color: #46594d;
  font-size: 14px;
  line-height: 1.6;
}

.product-benefit-box li::before {
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--green-700);
  content: "✓";
  font-weight: 900;
}

.product-detail-buy-box {
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(14, 122, 54, 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(15, 52, 28, 0.08);
}

.product-detail-buy-box.is-priority {
  padding: 14px;
  margin: 14px 0 12px;
  border-color: rgba(14, 122, 54, 0.2);
  box-shadow: 0 16px 34px rgba(14, 122, 54, 0.1);
}

.product-detail-buy-box.is-priority .product-detail-qty-row {
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: end;
  gap: 12px;
}

.product-detail-buy-box.is-priority .form-label {
  margin: 0;
}

.product-detail-buy-box.is-priority .product-detail-qty-control {
  max-width: 210px;
}

.product-detail-buy-box.is-priority .product-detail-quick-qty {
  margin-top: 10px;
}

.product-detail-buy-box.is-priority .product-detail-actions {
  margin-top: 12px;
}

.product-detail-buy-box.is-priority .product-detail-reassurance {
  margin-top: 10px;
  padding: 8px 10px;
}

.product-detail-qty-row {
  display: grid;
  gap: 8px;
}

.product-detail-qty-control {
  display: grid;
  grid-template-columns: 46px minmax(80px, 1fr) 46px;
  gap: 8px;
  max-width: 240px;
}

.product-detail-qty-control button {
  min-height: 46px;
  color: var(--green-900);
  background: #eef8eb;
  border: 1px solid rgba(14, 122, 54, 0.16);
  border-radius: 10px;
  font-size: 22px;
  font-weight: 800;
}

.product-detail-qty-control input {
  text-align: center;
  font-weight: 900;
}

.product-detail-quick-qty {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.product-detail-quick-qty button {
  min-height: 34px;
  padding: 7px 12px;
  color: var(--green-900);
  background: #f6faf4;
  border: 1px solid rgba(14, 122, 54, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.product-detail-quick-qty button:disabled,
.product-detail-qty-control button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-detail-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 10px;
  margin-top: 16px;
}

.product-detail-actions .btn {
  min-height: 52px;
  font-size: 15px;
}

.product-detail-reassurance {
  margin-top: 12px;
  padding: 10px 12px;
  color: #506353;
  background: #f7fbf4;
  border: 1px dashed rgba(14, 122, 54, 0.2);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 750;
  text-align: center;
}

.product-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.product-detail-info-grid section {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(14, 122, 54, 0.1);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(15, 52, 28, 0.06);
}

.product-detail-info-grid h3 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: 18px;
  font-weight: 900;
}

.product-detail-info-grid p {
  margin: 0;
  color: #596a5f;
  line-height: 1.75;
}

.checkout-panel {
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(36, 93, 56, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(15, 52, 28, 0.08);
}

.checkout-panel h3 {
  margin: 0 0 18px;
  color: var(--green-900);
  font-size: 20px;
  font-weight: 900;
}

.contact-panel {
  display: flex;
  flex-direction: column;
}

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

.contact-item {
  padding: 18px;
  border: 1px solid rgba(36, 93, 56, 0.12);
  border-radius: 8px;
  background: #f8fbf5;
}

.contact-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.contact-item strong {
  display: block;
  color: var(--green-900);
  font-size: 19px;
  font-weight: 800;
}

.contact-item p,
.contact-address {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-item a,
.contact-map-link {
  color: var(--green-700);
}

.contact-map-preview {
  position: relative;
  width: 100%;
  min-height: 260px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(36, 93, 56, 0.14);
  border-radius: 8px;
  background: #eef5e9;
}

.contact-map-preview iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 20px;
  padding: 10px 18px;
  border: 1px solid rgba(36, 93, 56, 0.24);
  border-radius: 8px;
  font-weight: 800;
}

.checkout-line,
.checkout-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(36, 93, 56, 0.12);
}

.checkout-line span {
  color: var(--muted);
}

.checkout-summary {
  margin-top: 8px;
  border-bottom: 0;
  color: var(--green-900);
  font-size: 18px;
  font-weight: 900;
}

.cart-page-section {
  position: relative;
  padding: 58px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 223, 85, 0.18), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(14, 122, 54, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbf5 0%, #fff 52%, #f5faf2 100%);
}

.cart-page-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(120deg, rgba(14, 122, 54, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 58%);
}

.cart-page-section .container {
  position: relative;
  z-index: 1;
}

.cart-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding: 28px 30px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(184, 223, 85, 0.3), transparent 30%),
    linear-gradient(135deg, #043a1c 0%, #087434 100%);
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(5, 61, 29, 0.16);
}

.cart-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 14px;
  color: #dff7c9;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
}

.cart-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 850;
  line-height: 1.08;
}

.cart-hero p {
  max-width: 600px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.cart-continue-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 11px 16px;
  color: #053d1d;
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.cart-continue-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.cart-items-card,
.cart-summary-card,
.cart-empty-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(14, 122, 54, 0.11);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15, 52, 28, 0.08);
}

.cart-items-card,
.cart-empty-card {
  padding: 22px;
}

.cart-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.cart-card-head h2,
.cart-summary-card h2,
.cart-empty-card h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 22px;
  font-weight: 800;
}

.cart-card-head span,
.cart-summary-label {
  display: block;
  margin-top: 4px;
  color: #647265;
  font-size: 13px;
  font-weight: 600;
}

.cart-item-list {
  display: grid;
  gap: 12px;
}

.cart-item-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 120px 150px 120px;
  gap: 14px;
  align-items: center;
  padding: 18px 42px 18px 16px;
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.cart-product-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cart-product-image {
  display: grid;
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
  place-items: center;
  overflow: hidden;
  color: var(--green-700);
  background: #fff;
  border: 1px solid rgba(14, 122, 54, 0.1);
  border-radius: 12px;
}

.cart-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
}

.cart-product-image span {
  font-size: 28px;
  font-weight: 700;
}

.cart-product-info {
  min-width: 0;
}

.cart-product-info a {
  display: block;
  color: var(--green-950);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.cart-product-info span,
.cart-product-info small,
.cart-price-block span,
.cart-qty-block span,
.cart-line-total span {
  display: block;
  color: #66756a;
  font-size: 12.5px;
  font-weight: 600;
}

.cart-product-info span {
  margin-top: 7px;
}

.cart-product-info small {
  margin-top: 4px;
  color: #0b7f39;
}

.cart-price-block strong,
.cart-line-total strong {
  display: block;
  margin-top: 5px;
  color: var(--green-950);
  font-size: 16px;
  font-weight: 800;
}

.cart-line-total strong {
  color: var(--green-700);
}

.cart-qty-control {
  display: grid;
  grid-template-columns: 36px minmax(48px, 1fr) 36px;
  width: 136px;
  height: 42px;
  margin-top: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(14, 122, 54, 0.18);
  border-radius: 999px;
}

.cart-qty-control button,
.cart-qty-control input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}

.cart-qty-control button {
  color: var(--green-900);
  background: #edf8e8;
  font-size: 18px;
  font-weight: 700;
}

.cart-qty-control input {
  color: var(--green-950);
  background: #fff;
  font-weight: 750;
  text-align: center;
}

.cart-remove-button {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #b13a28;
  background: #fff0ed;
  border: 1px solid rgba(177, 58, 40, 0.15);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.cart-remove-button:hover {
  color: #fff;
  background: #b13a28;
  border-color: #b13a28;
}

.cart-remove-button span {
  transform: translateY(-1px);
}

.cart-summary-card {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 12px;
  padding: 22px;
}

.cart-summary-line,
.cart-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(14, 122, 54, 0.1);
}

.cart-summary-line span {
  color: #657464;
}

.cart-summary-line strong {
  color: var(--green-950);
  font-weight: 750;
}

.cart-summary-note {
  padding: 12px;
  color: #5f705f;
  background: #f8fbf5;
  border: 1px dashed rgba(14, 122, 54, 0.18);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
}

.cart-summary-total {
  padding: 8px 0 4px;
  border-bottom: 0;
  color: var(--green-950);
  font-size: 20px;
  font-weight: 850;
}

.cart-trust-list {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.cart-trust-list span {
  position: relative;
  padding-left: 20px;
  color: #60705f;
  font-size: 13px;
  line-height: 1.45;
}

.cart-trust-list span::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #0b7f39;
  border-radius: 50%;
}

.cart-empty-card {
  padding: 54px 24px;
  text-align: center;
}

.cart-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  color: var(--green-700);
  background: #edf8e8;
  border-radius: 50%;
}

.cart-empty-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-empty-card p {
  max-width: 420px;
  margin: 8px auto 20px;
  color: #647265;
}

.checkout-address-section {
  position: relative;
  padding: 58px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(184, 223, 85, 0.18), transparent 30%),
    radial-gradient(circle at 92% 14%, rgba(14, 122, 54, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbf5 0%, #fff 52%, #f5faf2 100%);
}

.checkout-address-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(120deg, rgba(14, 122, 54, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 58%);
}

.checkout-address-section .container {
  position: relative;
  z-index: 1;
}

.checkout-address-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 28px 30px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(184, 223, 85, 0.28), transparent 30%),
    linear-gradient(135deg, #043a1c 0%, #087434 100%);
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(5, 61, 29, 0.16);
}

.checkout-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 14px;
  color: #dff7c9;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
}

.checkout-address-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 850;
  line-height: 1.08;
}

.checkout-address-hero p {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.checkout-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 11px 16px;
  color: #053d1d;
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.checkout-back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.checkout-stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.checkout-stepper div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  color: #657464;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 122, 54, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 52, 28, 0.05);
}

.checkout-stepper i {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--green-900);
  background: #edf8e8;
  border-radius: 50%;
  font-style: normal;
  font-weight: 800;
}

.checkout-stepper span {
  font-size: 14px;
  font-weight: 750;
}

.checkout-stepper .is-active {
  color: #fff;
  background: linear-gradient(135deg, #0b7f39, #2c9b46);
}

.checkout-stepper .is-active i {
  color: #0b7f39;
  background: #fff;
}

.checkout-address-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  align-items: start;
}

.checkout-address-card,
.checkout-address-summary {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(14, 122, 54, 0.11);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15, 52, 28, 0.08);
}

.checkout-address-card {
  padding: 24px;
}

.checkout-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.checkout-card-head.is-sub {
  margin: 22px 0 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(14, 122, 54, 0.1);
}

.checkout-card-head h2,
.checkout-address-summary h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 23px;
  font-weight: 800;
}

.checkout-card-head span,
.checkout-summary-label {
  display: block;
  margin-top: 4px;
  color: #647265;
  font-size: 13px;
  font-weight: 600;
}

.checkout-saved-address {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  padding: 16px;
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.1);
  border-radius: 12px;
}

.checkout-source-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.checkout-source-grid .checkout-saved-address {
  min-height: 100%;
  margin-bottom: 0;
}

.checkout-pickup-note {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  padding: 16px;
  color: #536555;
  background: #f8fbf5;
  border: 1px dashed rgba(14, 122, 54, 0.2);
  border-radius: 12px;
}

.checkout-pickup-note strong {
  color: var(--green-950);
  font-weight: 800;
}

.checkout-pickup-note span,
.checkout-pickup-note small {
  color: #66756a;
  line-height: 1.6;
}

.checkout-saved-address label,
.checkout-form-grid label span {
  color: var(--green-950);
  font-size: 13px;
  font-weight: 750;
}

.checkout-saved-address select,
.checkout-form-grid input,
.checkout-form-grid select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(14, 122, 54, 0.14);
  border-radius: 9px;
  outline: 0;
}

.checkout-saved-address select:focus,
.checkout-form-grid input:focus,
.checkout-form-grid select:focus {
  border-color: rgba(14, 122, 54, 0.42);
  box-shadow: 0 0 0 4px rgba(14, 122, 54, 0.08);
}

.checkout-saved-address small {
  color: #6a796d;
  line-height: 1.5;
}

.checkout-form-grid .is-readonly,
.checkout-form-grid input[readonly].is-readonly,
.checkout-form-grid select:disabled.is-readonly {
  color: #5d6b61;
  background: #edf1eb;
  border-color: rgba(85, 106, 90, 0.16);
  cursor: not-allowed;
  opacity: 1;
}

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

.checkout-form-grid label {
  display: grid;
  gap: 7px;
}

.checkout-form-grid .is-wide {
  grid-column: 1 / -1;
}

.checkout-default-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 18px;
  color: #536555;
  font-size: 14px;
  font-weight: 650;
}

.checkout-default-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkout-address-lock-note {
  margin-top: 12px;
  padding: 12px 14px;
  color: #5d6b61;
  background: #f3f6f0;
  border: 1px dashed rgba(85, 106, 90, 0.22);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.65;
}

.checkout-address-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.checkout-address-summary-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.checkout-address-summary-actions .btn {
  justify-content: center;
  min-height: 50px;
  width: 100%;
}

.checkout-address-summary {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.checkout-mini-items {
  display: grid;
  gap: 10px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.checkout-mini-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding: 12px;
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.08);
  border-radius: 10px;
}

.checkout-mini-thumb {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  color: var(--green-700);
  background: #fff;
  border: 1px solid rgba(14, 122, 54, 0.08);
  border-radius: 10px;
}

.checkout-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.checkout-mini-thumb span {
  font-size: 22px;
  font-weight: 700;
}

.checkout-mini-item strong {
  display: block;
  color: var(--green-950);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.checkout-mini-item span {
  display: block;
  margin-top: 3px;
  color: #657464;
  font-size: 12.5px;
}

.checkout-mini-item b {
  color: var(--green-700);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(14, 122, 54, 0.1);
  color: var(--green-950);
  font-size: 18px;
  font-weight: 800;
}

.checkout-summary-help {
  padding: 12px;
  color: #5f705f;
  background: #f8fbf5;
  border: 1px dashed rgba(14, 122, 54, 0.18);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
}

.checkout-payment-section {
  position: relative;
  padding: 58px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(184, 223, 85, 0.18), transparent 30%),
    radial-gradient(circle at 92% 14%, rgba(14, 122, 54, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbf5 0%, #fff 52%, #f5faf2 100%);
}

.checkout-payment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(120deg, rgba(14, 122, 54, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 58%);
}

.checkout-payment-section .container {
  position: relative;
  z-index: 1;
}

.checkout-stepper .is-complete {
  color: var(--green-900);
  background: #e8f6df;
}

.checkout-stepper .is-complete i {
  color: #fff;
  background: #0b7f39;
}

.checkout-payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  align-items: start;
}

.checkout-payment-main {
  display: grid;
  gap: 16px;
}

.checkout-payment-card,
.checkout-payment-summary {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(14, 122, 54, 0.11);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15, 52, 28, 0.08);
}

.checkout-payment-card {
  padding: 24px;
}

.checkout-option-grid,
.checkout-payment-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checkout-choice-card {
  position: relative;
  display: flex;
  gap: 10px;
  height: 100%;
  padding: 16px;
  color: #536555;
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.12);
  border-radius: 12px;
  cursor: pointer;
}

.checkout-choice-card input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0b7f39;
}

.checkout-choice-card strong {
  display: block;
  color: var(--green-950);
  font-size: 16px;
  font-weight: 800;
}

.checkout-choice-card small,
.checkout-choice-card em {
  display: block;
  margin-top: 5px;
  color: #66756a;
  font-size: 12.5px;
  font-style: normal;
  line-height: 1.55;
}

.checkout-choice-card:has(input:checked) {
  background: #eef9e9;
  border-color: rgba(14, 122, 54, 0.34);
  box-shadow: 0 12px 26px rgba(14, 122, 54, 0.08);
}

.checkout-coupon-box {
  display: grid;
  gap: 7px;
}

.checkout-coupon-box label,
.checkout-slip-label,
.checkout-note-field span {
  color: var(--green-950);
  font-size: 13px;
  font-weight: 750;
}

.checkout-coupon-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
}

.checkout-coupon-control input,
.checkout-note-field textarea,
.checkout-file-input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(14, 122, 54, 0.14);
  border-radius: 9px;
  outline: 0;
}

.checkout-note-field {
  display: grid;
  gap: 8px;
}

.checkout-note-field textarea {
  min-height: 104px;
  padding: 12px 13px;
  resize: vertical;
}

.checkout-coupon-control input:focus,
.checkout-note-field textarea:focus,
.checkout-file-input:focus {
  border-color: rgba(14, 122, 54, 0.42);
  box-shadow: 0 0 0 4px rgba(14, 122, 54, 0.08);
}

.checkout-coupon-box small {
  min-height: 18px;
  color: #66756a;
  font-size: 13px;
}

.checkout-promo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.checkout-promo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--green-900);
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.16);
  border-radius: 999px;
}

.checkout-promo-chip strong {
  font-weight: 800;
}

.checkout-promo-chip span {
  color: #66756a;
  font-size: 12px;
}

.checkout-muted-note {
  margin: 12px 0 0;
  color: #66756a;
}

.checkout-payment-section-box {
  margin-top: 16px;
  padding: 16px;
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.1);
  border-radius: 12px;
}

.checkout-payment-section-box.is-warning {
  color: #6f5412;
  background: #fff8e6;
  border-color: rgba(193, 139, 21, 0.18);
  line-height: 1.7;
}

.checkout-payment-section-box.is-warning p {
  margin: 0 0 12px;
}

.checkout-bank-list {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.checkout-bank-list div {
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(14, 122, 54, 0.08);
  border-radius: 10px;
}

.checkout-bank-list span,
.checkout-bank-list small {
  display: block;
  color: #657464;
  font-size: 12.5px;
}

.checkout-bank-list strong {
  display: block;
  margin: 4px 0;
  color: var(--green-950);
  font-size: 17px;
  font-weight: 850;
}

.checkout-slip-preview {
  position: relative;
  display: grid;
  min-height: 220px;
  margin: 8px 0 10px;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(14, 122, 54, 0.06), rgba(184, 223, 85, 0.08)),
    #fff;
  border: 1px dashed rgba(14, 122, 54, 0.24);
  border-radius: 12px;
}

.checkout-slip-preview strong {
  display: block;
  color: var(--green-950);
  font-weight: 800;
}

.checkout-slip-preview small {
  display: block;
  margin-top: 4px;
  color: #66756a;
}

.checkout-slip-preview a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.checkout-slip-preview img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 10px;
}

.checkout-slip-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #b13a28;
  background: #fff0ed;
  border: 1px solid rgba(177, 58, 40, 0.15);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.checkout-error-text {
  display: block;
  min-height: 18px;
  margin-top: 7px;
  color: #b13a28;
}

.checkout-payment-summary {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 12px;
  padding: 22px;
}

.checkout-payment-summary h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 22px;
  font-weight: 800;
}

.checkout-payment-summary .checkout-summary-row,
.checkout-summary-total.is-large {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(14, 122, 54, 0.1);
}

.checkout-payment-summary .checkout-summary-row span {
  color: #657464;
}

.checkout-payment-summary .checkout-summary-row strong {
  color: var(--green-950);
  font-weight: 750;
}

.checkout-summary-total.is-large {
  padding: 8px 0 4px;
  border-bottom: 0;
  color: var(--green-950);
  font-size: 20px;
  font-weight: 850;
}

.checkout-review-section {
  position: relative;
  padding: 58px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(184, 223, 85, 0.18), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(14, 122, 54, 0.13), transparent 26%),
    linear-gradient(180deg, #f8fbf5 0%, #fff 52%, #f5faf2 100%);
}

.checkout-review-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(120deg, rgba(14, 122, 54, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 58%);
}

.checkout-review-section .container {
  position: relative;
  z-index: 1;
}

.checkout-review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  align-items: start;
}

.checkout-review-main {
  display: grid;
  gap: 16px;
}

.checkout-review-card,
.checkout-review-summary {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(14, 122, 54, 0.11);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15, 52, 28, 0.08);
}

.checkout-review-card {
  padding: 24px;
}

.checkout-review-items {
  display: grid;
  gap: 12px;
}

.checkout-review-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 13px;
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.1);
  border-radius: 12px;
}

.checkout-review-thumb {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  overflow: hidden;
  color: var(--green-900);
  background: #fff;
  border: 1px solid rgba(14, 122, 54, 0.1);
  border-radius: 10px;
  font-size: 24px;
  font-weight: 800;
}

.checkout-review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
}

.checkout-review-item h3 {
  margin: 0 0 4px;
  color: var(--green-950);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.35;
}

.checkout-review-item p {
  margin: 0;
  color: #657464;
  font-size: 13.5px;
}

.checkout-review-item > strong {
  color: var(--green-800);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

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

.checkout-review-info-grid div,
.checkout-review-note,
.checkout-review-warning {
  padding: 15px;
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.1);
  border-radius: 12px;
}

.checkout-review-info-grid span {
  display: block;
  margin-bottom: 7px;
  color: #657464;
  font-size: 12.5px;
}

.checkout-review-info-grid strong {
  display: block;
  color: var(--green-950);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;
}

.checkout-review-info-grid p,
.checkout-review-note,
.checkout-review-slip p {
  margin: 5px 0 0;
  color: #657464;
  font-size: 13.5px;
  line-height: 1.65;
}

.checkout-review-slip {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(240px, 1fr);
  gap: 16px;
  align-items: start;
}

.checkout-review-slip h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 18px;
  font-weight: 750;
}

.checkout-review-slip a {
  display: grid;
  gap: 8px;
  overflow: hidden;
  color: var(--green-700);
  text-align: center;
  font-size: 13px;
  font-weight: 650;
}

.checkout-review-slip img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(14, 122, 54, 0.12);
  border-radius: 12px;
}

.checkout-review-warning {
  color: #9a3a26;
  background: #fff2ed;
  border-color: rgba(177, 58, 40, 0.18);
  font-weight: 650;
}

.checkout-review-note {
  color: #586958;
  line-height: 1.7;
}

.checkout-review-summary {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 12px;
  padding: 22px;
}

.checkout-review-summary h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 22px;
  font-weight: 800;
}

.checkout-review-summary .btn {
  justify-content: center;
  min-height: 52px;
}

.promo-card {
  position: relative;
  min-height: 286px;
  height: 100%;
  padding: 28px 26px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 55, 24, 0.9) 0%, rgba(8, 65, 30, 0.76) 45%, rgba(8, 65, 30, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 61, 30, 0.12), rgba(6, 61, 30, 0.54)),
    url("../images/promo-shipping-bg.png") 62% center/cover;
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(8, 55, 24, 0.16);
}

.promo-card h3 {
  position: relative;
  z-index: 2;
  max-width: 220px;
  margin: 0 0 20px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.22;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.promo-card span {
  color: #b9df55;
  font-size: 27px;
  font-weight: 700;
}

.promo-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 18px;
  color: #20401f;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.box-stack {
  display: none;
}

.box-stack::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
}

.why-buy {
  padding: 18px 0 34px;
}

.why-buy h2 {
  margin-bottom: 20px;
}

.feature-card {
  display: grid;
  grid-template-columns: 58px auto;
  column-gap: 15px;
  min-height: 136px;
  padding: 22px;
}

.feature-card i {
  grid-row: span 2;
  color: var(--green-700);
  font-size: 38px;
}

.feature-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.compact {
  margin-bottom: 18px;
}

.slider-buttons {
  display: flex;
  gap: 8px;
}

.slider-buttons button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green-900);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.review-card {
  display: grid;
  grid-template-columns: 72px auto;
  gap: 10px 14px;
  padding: 14px;
}

.review-photo {
  grid-row: span 3;
  width: 72px;
  height: 72px;
  display: block;
  object-fit: cover;
  background: var(--green-100);
  border-radius: 8px;
}

.review-photo.sprout,
.review-photo.field,
.review-photo.roots,
.review-photo.fruit,
.article-image {
  background-size: cover;
  background-position: center;
}

.sprout { background-image: linear-gradient(rgba(8, 91, 37, 0.12), rgba(8, 91, 37, 0.08)), url("../images/agri-soil.svg"); }
.field { background-image: linear-gradient(rgba(8, 91, 37, 0.1), rgba(8, 91, 37, 0.08)), url("../images/agri-field.svg"); }
.roots { background-image: linear-gradient(rgba(8, 91, 37, 0.1), rgba(8, 91, 37, 0.08)), url("../images/agri-roots.svg"); }
.fruit { background-image: linear-gradient(rgba(8, 91, 37, 0.2), rgba(8, 91, 37, 0.08)), url("../images/agri-fruit.svg"); }

.review-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

.heading-leaf {
  display: inline-flex;
  color: var(--leaf);
  vertical-align: 2px;
}

.solutions-section {
  padding: 18px 0 54px;
}

.solution-card {
  position: relative;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  min-height: 220px;
  overflow: hidden;
  padding: 22px 18px 116px;
  background: #fff;
  border: 1px solid rgba(36, 93, 56, 0.1);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(15, 52, 28, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(15, 52, 28, 0.14);
}

.solution-card::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 112px;
  content: "";
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(6, 61, 30, 0.04)),
    url("../images/solutions-cards.png");
  background-size: 400% 100%, 400% auto;
  pointer-events: none;
}

.solution-soil::before { background-position: 0 0, 0 bottom; }
.solution-growth::before { background-position: 33.333% 0, 33.333% bottom; }
.solution-protect::before { background-position: 66.666% 0, 66.666% bottom; }
.solution-yield::before { background-position: 100% 0, 100% bottom; }

.solution-icon {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--green-700);
  background: #f0f8eb;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(14, 122, 54, 0.08),
    0 8px 18px rgba(14, 122, 54, 0.08);
}

.solution-content {
  position: relative;
  z-index: 2;
  max-width: 178px;
  padding-top: 2px;
}

.solution-content h3 {
  margin: 0 0 7px !important;
  color: var(--green-950);
  font-size: 16px !important;
  font-weight: 750 !important;
  line-height: 1.34 !important;
}

.solution-content p {
  margin: 0 !important;
  color: #425647;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  line-height: 1.58 !important;
}

.testimonial-band {
  position: relative;
  overflow: hidden;
  padding: 42px 0 38px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(3, 49, 24, 0.97), rgba(8, 105, 45, 0.92) 48%, rgba(3, 56, 28, 0.98)),
    url("../images/agri-field.svg") center/cover;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -22px 46px rgba(0, 0, 0, 0.12);
}

.testimonial-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(255, 255, 255, 0.06) 72%, transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, rgba(236, 255, 218, 0.1), transparent 42%);
  opacity: 0.72;
  pointer-events: none;
}

.testimonial-band::after {
  position: absolute;
  right: 3%;
  bottom: -48px;
  width: 260px;
  height: 210px;
  content: "";
  background:
    radial-gradient(ellipse at 72% 30%, rgba(203, 245, 139, 0.7) 0 18%, transparent 19%),
    radial-gradient(ellipse at 48% 54%, rgba(118, 202, 79, 0.72) 0 23%, transparent 24%),
    radial-gradient(ellipse at 80% 66%, rgba(64, 153, 58, 0.62) 0 18%, transparent 19%),
    linear-gradient(135deg, transparent 42%, rgba(229, 255, 198, 0.16) 43% 47%, transparent 48%);
  transform: rotate(-14deg);
  opacity: 0.9;
  pointer-events: none;
}

.testimonial-band .container {
  position: relative;
  z-index: 1;
}

.testimonial-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.testimonial-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

.testimonial-heading a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: stretch;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 178px;
  padding: 20px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.testimonial-card .stars {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 17px;
}

.testimonial-card p {
  flex: 1;
  margin: 0 0 18px;
  color: #4d5d52;
  font-size: 13.5px;
  line-height: 1.75;
  text-align: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author .review-photo {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  grid-row: auto;
  border-radius: 50%;
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  color: var(--green-950);
  font-size: 13.5px;
  font-weight: 800;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 12px;
}

.why-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.why-panel h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
}

.why-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.why-panel li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.55;
}

.why-panel li::before {
  position: absolute;
  left: 0;
  top: 1px;
  color: #d7f35f;
  content: "✓";
  font-size: 17px;
  font-weight: 900;
}

.blog-section,
.section-blog {
  padding: 54px 0 56px;
  background: #fff;
}

.testimonial-band + .section-blog {
  margin-top: 0;
}

.article-card {
  display: block;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(36, 93, 56, 0.1);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 52, 28, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 52, 28, 0.13);
}

.article-image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.soil-life { background-image: linear-gradient(rgba(35, 84, 31, 0.08), rgba(35, 84, 31, 0.08)), url("../images/agri-soil.svg"); }
.farm-row { background-image: linear-gradient(rgba(35, 84, 31, 0.08), rgba(35, 84, 31, 0.08)), url("../images/agri-field.svg"); }
.root-care { background-image: linear-gradient(rgba(35, 84, 31, 0.08), rgba(35, 84, 31, 0.08)), url("../images/agri-roots.svg"); }
.durian { background-image: linear-gradient(rgba(35, 84, 31, 0.08), rgba(35, 84, 31, 0.08)), url("../images/agri-fruit.svg"); }

.article-card-body {
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 24px 24px 22px;
}

.article-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #5d6a61;
  font-size: 15px;
  font-weight: 500;
}

.article-date i {
  display: inline-flex;
  color: #5f8068;
}

.article-card h3 {
  min-height: 62px;
  margin: 0 0 14px !important;
  color: var(--green-950);
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.article-card p {
  flex: 1;
  margin: 0 0 22px;
  color: #5b625d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  font-size: 16px;
  font-weight: 700;
}

.article-read-more b {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.content-hero {
  padding: 72px 0 62px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(6, 61, 30, 0.92), rgba(6, 61, 30, 0.72)),
    url("../images/agri-field.svg") center/cover;
}

.content-hero.review-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 30%, rgba(201, 241, 134, 0.28), transparent 22%),
    linear-gradient(112deg, rgba(3, 45, 22, 0.96), rgba(8, 99, 43, 0.88) 48%, rgba(3, 56, 28, 0.82)),
    url("../images/agri-fruit.svg") center/cover;
}

.content-hero.review-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 24px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
  opacity: 0.62;
  pointer-events: none;
}

.content-hero.review-hero::after {
  position: absolute;
  right: 7%;
  bottom: -62px;
  width: 280px;
  height: 210px;
  content: "";
  background:
    radial-gradient(ellipse at 72% 30%, rgba(210, 245, 147, 0.68) 0 18%, transparent 19%),
    radial-gradient(ellipse at 46% 55%, rgba(99, 187, 68, 0.72) 0 24%, transparent 25%),
    linear-gradient(135deg, transparent 42%, rgba(230, 255, 198, 0.18) 43% 48%, transparent 49%);
  transform: rotate(-14deg);
  opacity: 0.85;
  pointer-events: none;
}

.content-hero.review-hero .container {
  position: relative;
  z-index: 1;
}

.content-hero .eyebrow {
  color: #d7f3a0;
}

.content-hero h1 {
  max-width: 720px;
  margin: 10px 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.12;
}

.content-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.story-card,
.review-page-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(36, 93, 56, 0.12);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(15, 52, 28, 0.08);
}

.story-card {
  display: block;
  color: inherit;
}

.story-card:hover {
  color: inherit;
  transform: translateY(-2px);
}

.story-card-image {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.story-card-body {
  padding: 20px;
}

.story-card-body span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
}

.story-card-body h2,
.review-page-card h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 20px;
  font-weight: 750;
  line-height: 1.42;
}

.story-card-body p,
.review-page-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.reviews-page-section {
  position: relative;
  overflow: hidden;
  padding: 48px 0 64px;
  background:
    radial-gradient(circle at 8% 12%, rgba(193, 231, 142, 0.22), transparent 24%),
    radial-gradient(circle at 92% 40%, rgba(14, 122, 54, 0.1), transparent 26%),
    linear-gradient(180deg, #f7fbf4 0%, #ffffff 52%, #f3f9f0 100%);
}

.reviews-page-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(135deg, rgba(7, 81, 38, 0.045) 0 1px, transparent 1px 28px);
  opacity: 0.65;
  pointer-events: none;
}

.reviews-page-section .container {
  position: relative;
  z-index: 1;
}

.review-highlight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.review-highlight div {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  padding: 24px 24px 22px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 18%, rgba(221, 248, 162, 0.28), transparent 28%),
    linear-gradient(135deg, var(--green-950), var(--green-700));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(7, 81, 38, 0.16);
}

.review-highlight div::after {
  position: absolute;
  right: -20px;
  bottom: -28px;
  width: 110px;
  height: 110px;
  content: "";
  background: rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.review-highlight strong,
.review-highlight span {
  display: block;
}

.review-highlight strong {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}

.review-highlight span {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14.5px;
  line-height: 1.55;
}

.review-page-card {
  position: relative;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(36, 93, 56, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(15, 52, 28, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-page-card::before {
  position: absolute;
  right: 22px;
  top: 16px;
  color: rgba(14, 122, 54, 0.08);
  content: "“";
  font-family: Georgia, serif;
  font-size: 92px;
  line-height: 1;
}

.review-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 52, 28, 0.13);
}

.review-page-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}

.review-page-head .review-photo {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  grid-row: auto;
  border: 4px solid #fff;
  box-shadow: 0 10px 22px rgba(15, 52, 28, 0.13);
}

.review-page-head span {
  color: var(--muted);
  font-size: 13.5px;
}

.review-page-card .stars {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 5px 10px;
  margin-bottom: 12px;
  color: #f0b429;
  background: #fff8df;
  border-radius: 999px;
  font-size: 14px;
}

.review-page-card p {
  position: relative;
  z-index: 1;
  color: #4b5d51;
  font-size: 15px;
}

.article-detail {
  padding: 38px 0 58px;
  background: #f7fbf4;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--green-800);
  font-weight: 700;
}

.article-detail-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(36, 93, 56, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(15, 52, 28, 0.08);
}

.article-cover {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 7;
}

.article-cover-fallback {
  min-height: 340px;
}

.article-detail-body {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px 34px 42px;
}

.article-meta,
.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.article-meta span,
.article-share a,
.article-share span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  color: var(--green-800);
  background: #eef8eb;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
}

.article-detail-body h1 {
  margin: 18px 0 12px;
  color: var(--green-950);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.18;
}

.article-lead {
  margin: 0 0 20px;
  color: #4d6155;
  font-size: 18px;
  line-height: 1.8;
}

.article-share {
  margin: 22px 0 26px;
}

.article-share span {
  color: var(--muted);
  background: transparent;
  padding-left: 0;
}

.article-share a {
  color: #fff;
  background: var(--green-800);
}

.article-content {
  color: #26372b;
  font-size: 17px;
  line-height: 1.95;
}

.article-content h2,
.article-content h3 {
  margin: 30px 0 12px;
  color: var(--green-950);
  line-height: 1.35;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin-bottom: 18px;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.article-gallery {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(36, 93, 56, 0.12);
}

.article-gallery h2 {
  margin: 0 0 16px;
  color: var(--green-950);
  font-size: 24px;
  font-weight: 800;
}

.article-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(15, 52, 28, 0.08);
}

.related-articles {
  margin-top: 38px;
}

.footer-section {
  position: relative;
  overflow: hidden;
  padding: 48px 0 18px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(115deg, rgba(1, 38, 18, 0.98) 0%, rgba(4, 70, 31, 0.96) 54%, rgba(2, 45, 23, 0.98) 100%),
    url("../images/agri-field.svg") center/cover;
}

.footer-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px);
  opacity: 0.55;
  pointer-events: none;
}

.footer-section::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 420px;
  height: 260px;
  content: "";
  background: linear-gradient(135deg, rgba(126, 186, 87, 0.18), rgba(255, 255, 255, 0));
  transform: rotate(-10deg);
  pointer-events: none;
}

.footer-section .container {
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: #fff;
  font-size: 27px;
  font-weight: 800;
}

.footer-logo:hover {
  color: #fff;
}

.footer-logo-image {
  display: block;
  width: auto;
  max-width: 270px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

.footer-section p {
  margin: 0 0 9px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.65;
}

.footer-section h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.footer-section a:not(.footer-logo) {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-section a:hover {
  color: #fff;
}

.custom-social {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.custom-social a {
  display: grid !important;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.footer-contact-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.footer-contact-list i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #dcf7c8;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.footer-contact-list a {
  display: inline !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

.footer-contact-list a:hover {
  color: #fff !important;
}

.newsletter {
  display: grid;
  gap: 12px;
}

.newsletter input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 6px;
  outline: 0;
}

.newsletter button {
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, #3c9f32, var(--green-700));
  border: 0;
  border-radius: 6px;
  font-weight: 800;
}

.copyright {
  padding-top: 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  text-align: center;
}

.account-orders-section {
  position: relative;
  padding: 64px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(173, 211, 95, 0.18), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(14, 122, 54, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbf5 0%, #fff 48%, #f5faf2 100%);
}

.account-orders-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, rgba(14, 122, 54, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(14, 122, 54, 0.035) 1px, transparent 1px);
  background-size: 42px 42px, 100% 74px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 62%);
}

.account-orders-section .container {
  position: relative;
  z-index: 1;
}

.account-orders-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding: 30px;
  color: #fff;
  background: linear-gradient(135deg, rgba(5, 61, 29, 0.98), rgba(11, 128, 57, 0.92));
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(5, 61, 29, 0.18);
}

.account-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 14px;
  color: #dff7c9;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

.account-orders-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
}

.account-orders-hero p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.account-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 11px 16px;
  color: #053d1d;
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.account-hero-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.account-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.account-stats-grid article,
.account-order-card,
.account-empty-orders {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(14, 122, 54, 0.11);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15, 52, 28, 0.08);
}

.account-stats-grid article {
  padding: 18px 20px;
  backdrop-filter: blur(10px);
}

.account-stats-grid span {
  display: block;
  color: #657464;
  font-size: 13px;
  font-weight: 650;
}

.account-stats-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--green-900);
  font-size: 24px;
  font-weight: 900;
}

.account-orders-filter {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(150px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 122, 54, 0.11);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(15, 52, 28, 0.07);
}

.account-filter-field {
  display: grid;
  gap: 6px;
}

.account-filter-field label {
  color: var(--green-950);
  font-size: 13px;
  font-weight: 800;
}

.account-filter-field input,
.account-filter-field select {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  color: var(--ink);
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.14);
  border-radius: 9px;
  outline: 0;
}

.account-filter-field input:focus,
.account-filter-field select:focus {
  background: #fff;
  border-color: rgba(14, 122, 54, 0.42);
  box-shadow: 0 0 0 4px rgba(14, 122, 54, 0.08);
}

.account-filter-actions {
  display: flex;
  gap: 8px;
}

.account-filter-actions .btn {
  min-height: 44px;
  white-space: nowrap;
}

.account-orders-list {
  display: grid;
  gap: 16px;
}

.account-order-card {
  padding: 22px;
}

.account-order-card__main,
.account-order-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.account-order-id span,
.account-order-meta span {
  display: block;
  color: #6a796d;
  font-size: 12.5px;
  font-weight: 650;
}

.account-order-id strong {
  display: block;
  margin-top: 2px;
  color: var(--green-950);
  font-size: 22px;
  font-weight: 900;
}

.account-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.account-status-badge.is-warning {
  color: #7a4a00;
  background: #fff4d8;
}

.account-status-badge.is-info {
  color: #075126;
  background: #e4f5df;
}

.account-status-badge.is-primary {
  color: #094868;
  background: #e3f5ff;
}

.account-status-badge.is-success {
  color: #075126;
  background: #dff6d8;
}

.account-status-badge.is-danger {
  color: #8b1e1e;
  background: #ffe5e5;
}

.account-status-badge.is-neutral {
  color: #4f5d53;
  background: #eef3ec;
}

.account-order-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.account-order-meta div {
  padding: 14px;
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.08);
  border-radius: 10px;
}

.account-order-meta strong {
  display: block;
  margin-top: 5px;
  color: var(--green-950);
  font-size: 15px;
  font-weight: 850;
}

.account-order-progress {
  height: 9px;
  margin: 18px 0;
  overflow: hidden;
  background: #e8f1e4;
  border-radius: 999px;
}

.account-order-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #0b7f39, #b8df55);
  border-radius: inherit;
}

.account-tracking-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #5b6c61;
  font-size: 14px;
}

.account-tracking-info svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  padding: 6px;
  color: var(--green-700);
  background: #edf8e8;
  border-radius: 999px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.account-tracking-info b {
  display: inline-block;
  margin-left: 8px;
  color: var(--green-900);
  font-weight: 850;
}

.account-order-footer .btn {
  flex: 0 0 auto;
  border-radius: 999px;
  font-size: 14px;
}

.account-empty-orders {
  padding: 52px 24px;
  text-align: center;
}

.account-empty-orders__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  color: var(--green-700);
  background: #edf8e8;
  border-radius: 50%;
}

.account-empty-orders__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.account-empty-orders h2 {
  margin: 0 0 8px;
  color: var(--green-950);
  font-size: 28px;
  font-weight: 900;
}

.account-empty-orders p {
  margin: 0 0 20px;
  color: #647265;
}

.account-orders-pagination {
  margin-top: 22px;
}

.account-order-detail-section {
  padding-top: 46px;
}

.account-detail-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 0%, rgba(184, 223, 85, 0.28), transparent 28%),
    linear-gradient(135deg, #043a1c 0%, #087434 100%);
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(5, 61, 29, 0.18);
}

.account-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
}

.account-back-link:hover {
  color: #fff;
}

.account-back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.account-detail-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
}

.account-detail-hero p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.account-detail-hero__status {
  display: grid;
  justify-items: end;
  gap: 8px;
  flex: 0 0 auto;
  padding: 18px;
  min-width: 210px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.account-detail-hero__status strong {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.account-detail-hero__status small {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 650;
}

.account-detail-progress-card,
.account-detail-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(14, 122, 54, 0.11);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15, 52, 28, 0.08);
}

.account-detail-progress-card {
  margin-bottom: 18px;
  padding: 22px;
}

.account-detail-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.account-detail-progress-head span,
.account-detail-card__head span,
.account-info-grid span,
.account-payment-box span,
.account-note-box span {
  display: block;
  color: #657464;
  font-size: 13px;
  font-weight: 600;
}

.account-detail-progress-head strong {
  display: block;
  margin-top: 4px;
  color: var(--green-950);
  font-size: 22px;
  font-weight: 800;
}

.account-detail-progress-head b {
  color: var(--green-700);
  font-size: 24px;
  font-weight: 800;
}

.account-detail-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.account-detail-step {
  position: relative;
  color: #7a887d;
  text-align: center;
}

.account-detail-step::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto 7px;
  background: #dce8d8;
  border-radius: 50%;
}

.account-detail-step span {
  display: block;
  color: #7a887d;
  font-size: 12.5px;
  font-weight: 650;
}

.account-detail-step time {
  display: block;
  margin-top: 5px;
  color: #95a093;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.35;
}

.account-detail-step.is-done span {
  color: var(--green-900);
  font-weight: 700;
}

.account-detail-step.is-done time {
  color: #60705f;
}

.account-detail-step.is-done::before {
  background: #0b7f39;
  box-shadow: 0 0 0 5px rgba(14, 122, 54, 0.1);
}

.account-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.account-detail-main {
  display: grid;
  gap: 18px;
}

.account-detail-sidebar {
  position: sticky;
  top: 20px;
}

.account-detail-card {
  padding: 22px;
}

.account-detail-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.account-detail-card h2,
.account-summary-card h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 21px;
  font-weight: 800;
}

.account-item-list {
  display: grid;
  gap: 10px;
}

.account-item-product {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.account-item-thumb {
  display: grid;
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  place-items: center;
  overflow: hidden;
  color: var(--green-700);
  background: #eef8ea;
  border: 1px solid rgba(14, 122, 54, 0.1);
  border-radius: 10px;
}

.account-item-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.account-item-thumb span {
  font-size: 24px;
  font-weight: 700;
}

.account-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.08);
  border-radius: 10px;
}

.account-item-row strong,
.account-info-grid strong {
  display: block;
  color: var(--green-950);
  font-weight: 700;
}

.account-item-row span {
  display: block;
  margin-top: 3px;
  color: #6a796d;
  font-size: 13px;
}

.account-item-row b {
  flex: 0 0 auto;
  color: var(--green-700);
  font-size: 16px;
  font-weight: 900;
}

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

.account-info-grid div {
  padding: 14px;
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.08);
  border-radius: 10px;
}

.account-info-grid .is-wide {
  grid-column: 1 / -1;
}

.account-info-grid strong {
  margin-top: 5px;
  line-height: 1.65;
}

.account-muted-text {
  margin: 4px 0 0;
  color: #657464;
  line-height: 1.65;
}

.account-summary-card {
  display: grid;
  gap: 12px;
}

.account-summary-line,
.account-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(14, 122, 54, 0.1);
}

.account-summary-line span {
  color: #657464;
}

.account-summary-line strong {
  color: var(--green-950);
  font-weight: 850;
}

.account-summary-line.is-discount strong {
  color: #c65a1e;
}

.account-summary-total {
  padding: 2px 0 0;
  border-bottom: 0;
  color: var(--green-950);
  font-size: 20px;
  font-weight: 900;
}

.account-payment-box,
.account-note-box {
  padding: 14px;
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.08);
  border-radius: 10px;
}

.account-payment-box strong {
  display: block;
  margin-top: 4px;
  color: var(--green-950);
  font-weight: 900;
}

.account-payment-box small {
  display: inline-flex;
  margin-top: 7px;
  padding: 5px 9px;
  color: var(--green-900);
  background: #e4f5df;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.account-note-box p {
  margin: 5px 0 0;
  color: #5d6e61;
  line-height: 1.65;
}

.account-addresses-section {
  position: relative;
  padding: 58px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 8%, rgba(184, 223, 85, 0.18), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(14, 122, 54, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbf5 0%, #fff 54%, #f5faf2 100%);
}

.account-addresses-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(120deg, rgba(14, 122, 54, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 58%);
}

.account-addresses-section .container {
  position: relative;
  z-index: 1;
}

.account-addresses-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 76, 36, 0.95), rgba(14, 122, 54, 0.82)),
    radial-gradient(circle at 90% 12%, rgba(184, 223, 85, 0.26), transparent 30%);
  border-radius: 16px;
  box-shadow: 0 20px 42px rgba(15, 52, 28, 0.14);
}

.account-addresses-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 850;
}

.account-addresses-hero p {
  max-width: 660px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.account-addresses-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.account-addresses-sidebar {
  position: sticky;
  top: 20px;
}

.account-address-form-card,
.account-address-card,
.account-address-empty,
.account-addresses-toolbar {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(14, 122, 54, 0.11);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15, 52, 28, 0.08);
}

.account-address-form-card {
  padding: 22px;
}

.account-address-card-head {
  margin-bottom: 16px;
}

.account-address-card-head h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 23px;
  font-weight: 800;
}

.account-address-card-head span,
.account-addresses-toolbar span {
  display: block;
  margin-top: 4px;
  color: #657464;
  line-height: 1.55;
}

.account-addresses-main {
  display: grid;
  gap: 14px;
}

.account-addresses-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
}

.account-addresses-toolbar strong {
  color: var(--green-950);
  font-size: 22px;
  font-weight: 850;
}

.account-addresses-toolbar a {
  color: var(--green-700);
  font-weight: 800;
}

.account-address-card {
  position: relative;
  padding: 18px;
}

.account-address-card.is-default {
  border-color: rgba(14, 122, 54, 0.34);
  box-shadow: 0 18px 44px rgba(14, 122, 54, 0.12);
}

.account-address-card-summary {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-right: 38px;
}

.account-address-delete {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #b13a28;
  background: #fff0ed;
  border: 1px solid rgba(177, 58, 40, 0.16);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.16s ease, background 0.16s ease;
}

.account-address-delete:hover {
  background: #ffe4dd;
  transform: translateY(-1px);
}

.account-address-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 10px;
  color: var(--green-800);
  background: #e8f6df;
  border: 1px solid rgba(14, 122, 54, 0.16);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  text-align: center;
}

.account-address-main-info h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 20px;
  font-weight: 800;
}

.account-address-main-info p {
  margin: 4px 0;
  color: #657464;
}

.account-address-main-info strong {
  display: block;
  color: #3f5145;
  font-weight: 650;
  line-height: 1.7;
}

.account-address-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(14, 122, 54, 0.1);
}

.account-address-edit {
  flex-basis: 100%;
  order: 4;
}

.account-address-edit summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  color: var(--green-700);
  background: #fff;
  border: 1px solid rgba(14, 122, 54, 0.18);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.account-address-edit[open] summary {
  margin-bottom: 14px;
  color: #fff;
  background: var(--green-700);
}

.account-address-edit form {
  padding: 16px;
  background: #f8fbf5;
  border: 1px solid rgba(14, 122, 54, 0.1);
  border-radius: 12px;
}

.account-address-form-grid {
  gap: 12px;
}

.account-address-default-check {
  margin-top: 14px;
}

.account-address-empty {
  padding: 28px;
  text-align: center;
}

.account-address-empty h2 {
  margin: 0 0 6px;
  color: var(--green-950);
  font-weight: 850;
}

.account-address-empty p {
  margin: 0;
  color: #657464;
}

.account-address-pagination {
  margin-top: 4px;
}

@media (max-width: 1199.98px) {
  .navbar-brand {
    flex-basis: 260px;
  }

  .navbar-brand small {
    font-size: 10px;
  }

  .brand-logo {
    max-width: 210px;
    height: 42px;
  }

  .custom-navbar-nav .nav-link {
    padding-inline: 7px !important;
    font-size: 12.5px;
  }

  .search-box {
    width: 166px;
  }

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

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

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

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

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

  .checkout-address-summary {
    position: static;
  }

  .checkout-payment-summary {
    position: static;
  }

  .checkout-review-summary {
    position: static;
  }

  .cart-summary-card {
    position: static;
  }

  .cart-item-row {
    grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(100px, auto));
  }

  .account-orders-filter {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .account-detail-sidebar {
    position: static;
  }

  .account-addresses-sidebar {
    position: static;
  }

  .account-filter-field.is-search {
    grid-column: span 2;
  }

  .account-filter-actions {
    grid-column: span 2;
  }

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

@media (max-width: 991.98px) {
  .custom-navbar {
    position: relative;
  }

  .navbar-collapse {
    padding-top: 16px;
  }

  .nav-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 12px;
  }

  .search-box {
    width: 100%;
  }

  .cart-link {
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .cart-link span:last-child {
    display: inline;
  }

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

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

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

  .checkout-stepper {
    grid-template-columns: 1fr;
  }

  .checkout-option-grid,
  .checkout-payment-methods {
    grid-template-columns: 1fr;
  }

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

  .cart-product-main {
    grid-column: 1 / -1;
  }

  .cart-remove-button {
    position: absolute;
    top: 10px;
    right: 10px;
    transform: none;
  }

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

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

  .account-detail-hero__status {
    justify-items: start;
    width: 100%;
  }

  .account-stats-grid,
  .account-order-meta,
  .account-orders-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-filter-field.is-search,
  .account-filter-actions {
    grid-column: span 2;
  }

  .home-banner {
    min-height: auto;
    margin-bottom: 86px;
  }

  .home-banner .container {
    min-height: 600px;
    padding-top: 48px;
  }

  .home-banner-content {
    grid-template-columns: 1fr;
  }

  .product-pack {
    right: 26%;
  }

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

  .home-banner .trust-panel {
    width: calc(100% - 32px);
    transform: translateY(50%);
    box-shadow:
      0 18px 28px rgba(6, 61, 30, 0.22),
      0 0 0 14px rgba(255, 255, 255, 0.56);
  }

  .trust-panel div:nth-child(2) {
    border-right: 0;
  }

  .trust-panel div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-panel div:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .top-strip .container {
    justify-content: center !important;
  }

  .account-orders-section {
    padding: 38px 0 56px;
  }

  .account-addresses-section {
    padding: 38px 0 56px;
  }

  .cart-page-section {
    padding: 38px 0 56px;
  }

  .checkout-address-section {
    padding: 38px 0 56px;
  }

  .checkout-payment-section {
    padding: 38px 0 56px;
  }

  .checkout-review-section {
    padding: 38px 0 56px;
  }

  .cart-hero,
  .cart-items-card,
  .cart-summary-card,
  .cart-empty-card {
    padding: 18px;
    border-radius: 12px;
  }

  .checkout-address-hero,
  .account-addresses-hero,
  .checkout-address-card,
  .checkout-address-summary,
  .checkout-payment-card,
  .checkout-payment-summary,
  .checkout-review-card,
  .checkout-review-summary {
    padding: 18px;
    border-radius: 12px;
  }

  .cart-hero h1 {
    font-size: 29px;
  }

  .checkout-address-hero h1 {
    font-size: 29px;
  }

  .account-addresses-hero h1 {
    font-size: 29px;
  }

  .account-addresses-toolbar,
  .account-address-card-summary {
    grid-template-columns: 1fr;
  }

  .account-addresses-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-address-card-actions .btn,
  .account-address-card-actions form,
  .account-address-edit summary {
    width: 100%;
  }

  .checkout-coupon-control {
    grid-template-columns: 1fr;
  }

  .checkout-review-info-grid,
  .checkout-source-grid,
  .checkout-address-summary-actions,
  .checkout-review-slip {
    grid-template-columns: 1fr;
  }

  .checkout-review-item {
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
  }

  .checkout-review-thumb {
    width: 64px;
    height: 64px;
  }

  .checkout-review-item > strong {
    grid-column: 2;
    font-size: 16px;
  }

  .checkout-slip-preview {
    min-height: 180px;
  }

  .cart-continue-link,
  .cart-card-head .btn,
  .cart-summary-card .btn,
  .checkout-back-link,
  .checkout-address-actions .btn,
  .checkout-coupon-control .btn,
  .checkout-payment-summary .btn,
  .checkout-review-summary .btn {
    width: 100%;
    justify-content: center;
  }

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

  .checkout-mini-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .checkout-mini-item b {
    grid-column: 2;
  }

  .checkout-address-actions {
    flex-direction: column;
  }

  .cart-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-item-row {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .cart-product-main {
    padding-right: 46px;
  }

  .cart-product-image {
    width: 68px;
    height: 68px;
  }

  .cart-product-info a {
    font-size: 16px;
  }

  .cart-price-block,
  .cart-qty-block,
  .cart-line-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }

  .cart-qty-control {
    width: 132px;
    margin-top: 0;
  }

  .cart-summary-line,
  .cart-summary-total {
    align-items: flex-start;
  }

  .account-orders-hero {
    padding: 22px;
    border-radius: 12px;
  }

  .account-detail-hero,
  .account-detail-progress-card,
  .account-detail-card {
    padding: 18px;
    border-radius: 12px;
  }

  .account-orders-hero h1 {
    font-size: 30px;
  }

  .account-detail-hero h1 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .account-hero-link,
  .account-order-footer .btn,
  .account-filter-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .account-stats-grid,
  .account-order-meta,
  .account-orders-filter {
    grid-template-columns: 1fr;
  }

  .account-filter-field.is-search,
  .account-filter-actions {
    grid-column: auto;
  }

  .account-filter-actions {
    flex-direction: column;
  }

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

  .account-detail-step {
    min-height: 72px;
    padding: 10px 8px;
    background: #f8fbf5;
    border: 1px solid rgba(14, 122, 54, 0.08);
    border-radius: 10px;
  }

  .account-detail-step span {
    font-size: 12px;
  }

  .account-detail-step time {
    font-size: 11px;
  }

  .account-detail-card__head,
  .account-item-row,
  .account-summary-line,
  .account-summary-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-item-product {
    align-items: flex-start;
    width: 100%;
  }

  .account-item-thumb {
    width: 58px;
    height: 58px;
  }

  .account-info-grid {
    grid-template-columns: 1fr;
  }

  .account-order-card {
    padding: 18px;
  }

  .account-order-card__main,
  .account-order-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-status-badge {
    white-space: normal;
  }

  .account-tracking-info {
    align-items: flex-start;
  }

  .account-tracking-info b {
    display: block;
    margin: 4px 0 0;
  }

  .navbar-brand {
    flex-basis: auto;
    max-width: calc(100% - 58px);
    font-size: 20px;
  }

  .navbar-brand small {
    font-size: 10px;
  }

  .intro-excerpt h1 {
    font-size: 34px;
  }

  .intro-excerpt p {
    font-size: 17px;
  }

  .hero-benefits,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .home-banner {
    margin-bottom: 134px;
  }

  .home-banner .container {
    min-height: 650px;
    padding-top: 34px;
  }

  .home-banner-image {
    object-position: 63% center;
  }

  .home-banner::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.76) 54%, rgba(255, 255, 255, 0.18) 100%);
  }

  .trust-panel div,
  .trust-panel div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-banner .trust-panel {
    width: calc(100% - 24px);
    transform: translateY(34%);
    box-shadow:
      0 14px 24px rgba(6, 61, 30, 0.2),
      0 0 0 10px rgba(255, 255, 255, 0.54);
  }

  .trust-panel div {
    min-height: 58px;
    padding: 11px 14px;
    font-size: 14px;
  }

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

  .content-hero {
    padding: 54px 0 46px;
  }

  .solution-card {
    min-height: 214px;
    padding-bottom: 110px;
  }

  .solution-content {
    max-width: none;
  }

  .testimonial-band {
    padding: 30px 0;
  }

  .testimonial-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-heading h2 {
    font-size: 28px;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .review-highlight {
    grid-template-columns: 1fr;
  }

  .product-detail-stats,
  .product-detail-info-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-actions {
    grid-template-columns: 1fr;
  }

  .product-detail-qty-control {
    max-width: 100%;
  }

  .story-card-image {
    height: 190px;
  }

  .hero-visual {
    min-height: 350px;
  }

  .product-pack {
    right: 45px;
    width: 198px;
    min-height: 300px;
    transform: perspective(700px) rotateY(-6deg) scale(0.9);
    transform-origin: bottom right;
  }

  .product-bottle {
    left: 8px;
    transform: scale(0.82);
    transform-origin: bottom left;
  }

  .leaf-one {
    right: -22px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading h2,
  .why-buy h2 {
    font-size: 25px;
  }
}

@media (max-width: 420px) {
  .top-strip {
    font-size: 12px;
  }

  .navbar-brand {
    max-width: calc(100% - 58px);
  }

  .navbar-brand small {
    display: none;
  }

  .brand-logo {
    max-width: 170px;
    height: 38px;
  }

  .product-pack {
    right: 16px;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .feature-card {
    grid-template-columns: 44px auto;
    padding: 18px;
  }

  .feature-card i {
    font-size: 30px;
  }
}
