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

:root {
  --bg: #f2f5ee;
  --bg-soft: #f8faf6;
  --surface: #ffffff;
  --surface-soft: #f4f8f2;
  --ink: #1f2c24;
  --ink-soft: #5f6f66;
  --line: #d8e1d4;
  --line-strong: #c7d4c2;
  --brand: #2f7a4f;
  --brand-strong: #1f5f3a;
  --brand-soft: #e3f2e7;
  --danger: #b44242;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 14px 38px rgba(21, 48, 29, 0.08);
  --shadow-card: 0 10px 26px rgba(31, 57, 38, 0.07);
  --font-body: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
  --font-heading: "Sora", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% -12%, #dcefd9 0%, transparent 36%),
    radial-gradient(circle at 96% 6%, #ecf6df 0%, transparent 30%),
    var(--bg);
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--surface);
  z-index: 100;
}

.top-line {
  height: 4px;
  background: linear-gradient(90deg, #1f5f3a, #3f8f5f 46%, #8ac66b 100%);
}

.container {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(248, 250, 246, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-grid {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 156px;
  height: auto;
}

.tagline {
  margin: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 1.15vw, 1rem);
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.site-header nav {
  position: relative;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #3d4d45;
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 9px 14px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu a:hover {
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.menu a.active {
  color: #ffffff;
  background: var(--brand);
}

.icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 4px;
}

.lang-switch button {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: #486056;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 8px;
  cursor: pointer;
}

.lang-switch button.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.icon-btn,
.cart-link {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.icon-btn:hover,
.cart-link:hover {
  transform: translateY(-1px);
  color: var(--brand-strong);
  border-color: #afc5b4;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

.mobile-toggle {
  display: none;
}

.page-shell {
  position: relative;
  padding: 32px 0 84px;
}

.page-shell.home-shell {
  padding: 0 0 84px;
}

.page-shell.home-shell::before,
.page-shell.home-shell::after {
  display: none;
}

.hero-full {
  position: relative;
  height: clamp(520px, 88vh, 840px);
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
}

.hero-overlay.hero-overlay-left {
  background: linear-gradient(
    90deg,
    rgba(10, 25, 35, 0.2) 0%,
    rgba(10, 25, 35, 0.1) 35%,
    rgba(10, 25, 35, 0.16) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: clamp(28px, 6vw, 78px) 0;
}

.hero-impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: flex-start;
}

.hero-card {
  position: relative;
  overflow: hidden;
  width: min(560px, 92%);
  border-radius: 28px;
  display: block;
}

.hero-card__glass {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(210, 235, 245, 0.18);
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-card__glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.06) 40%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
}

.hero-card__content {
  position: relative;
  z-index: 2;
  padding: 36px;
  display: grid;
  gap: 18px;
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-strong);
}

.hero-service-card {
  padding: clamp(24px, 3.2vw, 36px);
  width: 100%;
  max-width: none;
  justify-self: start;
  margin-top: 0;
  grid-column: 1;
  grid-row: 2;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(18, 40, 27, 0.16);
  backdrop-filter: blur(12px) saturate(140%);
  display: grid;
  gap: 16px;
}

.hero-service-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: #21362b;
}

.hero-service-list {
  display: grid;
  gap: 12px;
}

.hero-service-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #3d4d45;
}

.hero-service-item::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--brand), #8bc46e);
  box-shadow: 0 4px 10px rgba(47, 122, 79, 0.35);
  flex-shrink: 0;
}

.home-content {
  position: relative;
  margin-top: 0;
  padding: 54px 0 24px;
}

.home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
}

.home-media {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: clamp(18px, 2.8vw, 28px);
  box-shadow: var(--shadow-soft);
}

.home-aside {
  display: grid;
  gap: 22px;
}

.home-card {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.sectionPhoto {
  width: 100%;
  margin: 0;
}

.sectionPhoto__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 20px !important;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.page-shell::before {
  width: 240px;
  height: 240px;
  right: min(2vw, 26px);
  top: 20px;
  background: radial-gradient(circle, rgba(97, 156, 104, 0.18) 0%, transparent 70%);
}

.page-shell::after {
  width: 220px;
  height: 220px;
  left: min(1vw, 22px);
  bottom: 40px;
  background: radial-gradient(circle, rgba(188, 227, 150, 0.2) 0%, transparent 68%);
}

.page-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.page-card > * {
  opacity: 0;
  transform: translateY(10px);
  animation: section-in 0.55s ease forwards;
}

.page-card > *:nth-child(2) {
  animation-delay: 0.08s;
}

.page-card > *:nth-child(3) {
  animation-delay: 0.16s;
}

.page-card > *:nth-child(4) {
  animation-delay: 0.24s;
}

.page-card > *:nth-child(5) {
  animation-delay: 0.32s;
}

@keyframes section-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-block {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.hero-block h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #18352a;
  max-width: 20ch;
}

.hero-block p {
  margin: 0;
  max-width: 66ch;
  color: rgba(24, 53, 42, 0.82);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.hero-actions {
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 14px 22px;
  font-size: 0.95rem;
}

.btn-ghost {
  border: 1px solid rgba(31, 95, 58, 0.3);
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand-strong);
}

.btn-ghost:hover {
  border-color: rgba(31, 95, 58, 0.6);
  background: #ffffff;
}

.hero-proof {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #355646;
  font-weight: 600;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-card .btn-ghost {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #234437;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 4px 10px rgba(47, 122, 79, 0.3);
}

.home-services {
  padding: 56px 0 24px;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(18, 40, 27, 0.08);
  display: grid;
  gap: 10px;
}

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(47, 122, 79, 0.15);
  color: var(--brand);
  font-weight: 800;
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #1f2c24;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.home-problem {
  padding: 48px 0;
}

.home-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.home-problem h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.home-problem p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 40ch;
}

.home-problem-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(18, 40, 27, 0.1);
  display: grid;
  gap: 16px;
}

.problem-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: #2a3b33;
}

.problem-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 4px 10px rgba(47, 122, 79, 0.35);
  flex-shrink: 0;
}

.home-trust {
  padding: 48px 0 24px;
}

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

.trust-logo {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  font-weight: 700;
  color: #2d4036;
  letter-spacing: 0.02em;
}

.trust-quote {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 32px rgba(18, 40, 27, 0.1);
  display: grid;
  gap: 6px;
}

.trust-stars {
  color: #f2a023;
  font-size: 1.1rem;
}

.trust-quote p {
  margin: 0;
  font-size: 0.95rem;
  color: #2a3b33;
}

.trust-quote span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.trust-reviews-head {
  margin-top: 14px;
}

.trust-reviews-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: #34473d;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 12px;
}

.trust-reviews-actions {
  margin-top: 12px;
}

.trust-reviews-toggle {
  min-width: 170px;
}

.trust-reviews-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-review-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(26, 46, 33, 0.08);
  padding: 14px;
  display: grid;
  gap: 8px;
}

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

.trust-review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2f7a4f, #5aa56f);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.trust-review-meta h3 {
  margin: 0;
  font-size: 0.96rem;
  color: #1f3027;
}

.trust-review-meta p {
  margin: 0;
  font-size: 0.78rem;
  color: #6b7c73;
}

.trust-review-score {
  margin: 0;
  color: #f2a023;
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-review-text {
  margin: 0;
  color: #31443a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.home-showcase {
  position: relative;
  margin-top: 24px;
  padding: 72px 0;
  overflow: hidden;
}

.home-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-showcase-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.home-showcase-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 18, 14, 0.6) 0%, rgba(9, 18, 14, 0.2) 55%, rgba(9, 18, 14, 0) 80%),
    linear-gradient(180deg, rgba(9, 18, 14, 0.45) 0%, rgba(9, 18, 14, 0.12) 40%, rgba(242, 245, 238, 0.98) 100%);
}

.home-showcase-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
}

.showcase-head h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: #f3f6f2;
}

.showcase-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.showcase-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 56ch;
}

.showcase-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.showcase-scroll::-webkit-scrollbar {
  height: 8px;
}

.showcase-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.showcase-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(12, 24, 18, 0.18);
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 320px;
}

.showcase-media {
  display: block;
  background: rgba(255, 255, 255, 0.7);
  padding: 12px;
}

.showcase-media img {
  width: 100%;
  height: 170px;
  object-fit: contain;
}

.showcase-body {
  padding: 14px 16px 18px;
  display: grid;
  gap: 8px;
}

.showcase-name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #1f2c24;
}

.showcase-desc {
  margin: 0;
  color: #5f6f66;
  font-size: 0.88rem;
}

.showcase-price {
  margin: 0;
  font-weight: 700;
  color: var(--brand-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(31, 89, 53, 0.12);
}

.btn-main {
  color: #fff;
  background: linear-gradient(145deg, #3b8a59, #2f7a4f);
}

.btn-alt {
  color: #365046;
  background: var(--surface);
  border-color: var(--line-strong);
}

.section-title-row {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  letter-spacing: -0.015em;
  color: #22352b;
}

.section-link {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: #355047;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: transparent;
  cursor: pointer;
  appearance: none;
}

.section-link:focus-visible {
  outline: 2px solid #7cb78a;
  outline-offset: 2px;
}

.section-note {
  margin: 0 0 16px;
  max-width: 74ch;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.section-subtitle {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.home-media-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-areas:
    "hero hero hero video1 video1 insta"
    "hero hero hero video2 video2 insta";
  gap: 14px;
}

.media-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, #eef4ed 0%, #ffffff 90%);
  min-height: 180px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.home-media-grid .media-card {
  aspect-ratio: auto;
}

.home-media-grid .media-card:nth-child(1) {
  grid-area: hero;
}

.home-media-grid .media-card:nth-child(2) {
  grid-area: video1;
}

.home-media-grid .media-card:nth-child(3) {
  grid-area: video2;
}

.home-media-grid .media-card:nth-child(4) {
  grid-area: insta;
}

.media-card img,
.media-card video,
.media-card iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.media-link {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.media-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 45%);
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.media-link:hover::before {
  opacity: 0.7;
}

.media-card.media-video {
  padding: 0;
  overflow: hidden;
}

.media-card.media-image {
  padding: 0;
  overflow: hidden;
}

.media-card.media-video iframe {
  border: 0;
}

.media-card.media-instagram {
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: #355047;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}

.instagram-link:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.home-scope-list {
  list-style: disc;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.home-scope-list li {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

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

#home-suggested .products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-products {
  padding: 10px 0 24px;
}

.home-review-wrap {
  padding: 12px 0 70px;
}

.home-review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(47, 122, 79, 0.12), rgba(255, 255, 255, 0.95)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.product-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: #b8cdbd;
  box-shadow: 0 18px 30px rgba(28, 54, 35, 0.12);
}

.product-carousel {
  position: relative;
  margin-top: 14px;
}

.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 18px;
  overflow-x: auto;
  padding: 10px 6px 18px;
  scroll-snap-type: x mandatory;
  scroll-padding: 12px;
  scrollbar-gutter: stable;
}

.product-track::-webkit-scrollbar {
  height: 8px;
}

.product-track::-webkit-scrollbar-thumb {
  background: rgba(31, 63, 47, 0.28);
  border-radius: 999px;
}

.product-slide {
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  border: 1px solid #dce6d9;
  background: #eef3ee;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 18px 34px rgba(17, 36, 24, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-slide:hover {
  transform: translateY(-4px);
  border-color: #b6cdb8;
  box-shadow: 0 24px 40px rgba(17, 36, 24, 0.2);
}

.product-slide-link {
  position: relative;
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-slide-media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(236, 243, 232, 0.96), rgba(255, 255, 255, 0.92));
}

.product-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  filter: drop-shadow(0 12px 22px rgba(17, 36, 24, 0.2));
}

.product-slide-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 12, 0) 48%, rgba(9, 18, 12, 0.78) 100%);
}

.product-slide-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px 16px;
  display: grid;
  gap: 6px;
  color: #ffffff;
  z-index: 2;
}

.product-slide-name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.product-slide-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  opacity: 0.88;
}

.product-slide-price {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(47, 122, 79, 0.3);
  background: #ffffff;
  color: #2b4a3a;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(18, 37, 25, 0.18);
  z-index: 5;
}

.carousel-btn.prev {
  left: -8px;
}

.carousel-btn.next {
  right: -8px;
}

.review-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(59, 138, 89, 0.93);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 3;
}

.product-media {
  border-radius: 12px;
  border: 1px solid #dce6d9;
  background: linear-gradient(160deg, #eef5ec 0%, #fcfefb 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-media.highlight {
  border-color: #96bc9b;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-name {
  margin: 2px 0 0;
  font-family: var(--font-heading);
  font-size: 1.03rem;
  line-height: 1.35;
  color: #213329;
}

.product-category {
  margin: 2px 0 0;
  color: #66796f;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-price {
  margin: 0;
  font-size: 1.03rem;
  font-weight: 700;
  color: #23382d;
}

.shop-variant-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.shop-variant-chip {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  color: #43574c;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 7px;
}

.shop-variant-chip:hover {
  border-color: #96bc9b;
  color: #27483a;
}

.old-price {
  margin: 0;
  color: #76867c;
  font-size: 0.86rem;
  text-decoration: line-through;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.meta-chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-soft);
  color: #5f6f65;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 9px;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid #95c59a;
  background: #e7f7e9;
  color: #2f7a4f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 9px;
  margin: 0;
}

.text-block {
  margin-top: 38px;
  display: grid;
  gap: 14px;
}

.text-block h2,
.text-block h3 {
  margin: 0;
  font-family: var(--font-heading);
  color: #22362b;
  letter-spacing: -0.01em;
}

.text-block h2 {
  font-size: clamp(1.42rem, 2.5vw, 1.95rem);
}

.text-block h3 {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.text-block p,
.text-block li {
  margin: 0;
  max-width: 74ch;
  color: var(--ink-soft);
  font-size: 1rem;
}

.text-block ul {
  list-style: disc;
  padding-left: 18px;
}

.about-shell {
  padding: 0 0 96px;
  background: linear-gradient(180deg, #f2f3f2 0%, #ecefed 45%, #f7f9f7 100%);
}

.about-shell::before,
.about-shell::after {
  display: none;
}

.about-hero {
  position: relative;
  padding: clamp(42px, 7vw, 96px) 0;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -20%;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 122, 79, 0.18) 0%, transparent 70%);
  opacity: 0.7;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.about-hero-visual {
  position: relative;
  min-height: clamp(320px, 45vw, 520px);
  display: grid;
  align-items: center;
}

.about-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid #dfe5dd;
  background: #f6f7f6;
  box-shadow: 0 28px 60px rgba(20, 35, 26, 0.18);
  position: relative;
  z-index: 1;
}

.about-hero-watermark {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 18vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(33, 47, 36, 0.08);
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
}

.about-hero-content {
  display: grid;
  gap: 16px;
}

.about-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7a8a81;
}

.about-hero-content h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1c2a22;
}

.about-hero-content p {
  margin: 0;
  max-width: 60ch;
  color: #58685f;
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
}

.about-hero-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-highlight {
  padding: clamp(34px, 6vw, 80px) 0;
}

.about-highlight-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 28px;
  border: 1px solid #dde4dd;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 50px rgba(28, 42, 33, 0.12);
}

.about-highlight-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: clamp(260px, 38vw, 420px);
  background: #e9eeea;
}

.about-highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.about-highlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.about-highlight-quote {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  color: #f7f9f7;
  max-width: 14ch;
}

.about-highlight-content {
  display: grid;
  gap: 12px;
}

.about-highlight-content h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  color: #1e2d24;
}

.about-highlight-content p {
  margin: 0;
  color: #5a6a62;
  font-size: 1rem;
}

.circle-link {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid #cdd8d0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f7a4f;
  background: #f6f9f6;
  font-size: 1.3rem;
  box-shadow: 0 10px 18px rgba(36, 62, 46, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.circle-link:hover {
  transform: translateY(-2px);
  border-color: #97b6a0;
  box-shadow: 0 14px 28px rgba(36, 62, 46, 0.16);
}

.about-scope {
  padding: clamp(34px, 6vw, 90px) 0;
}

.about-scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}

.about-scope-content h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  letter-spacing: -0.02em;
  color: #1f2d24;
}

.about-scope-content p {
  margin: 0 0 16px;
  color: #5d6d64;
  font-size: 1rem;
}

.about-scope-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.about-scope-list li {
  position: relative;
  padding-left: 16px;
  color: #4f6158;
  font-size: 0.98rem;
}

.about-scope-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #8fb294;
}

.about-pledge {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #d7e1d7;
  background: #f0f5f0;
  display: grid;
  gap: 6px;
}

.about-pledge p {
  margin: 0;
  color: #4f6058;
}

.about-scope-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-scope-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #dfe5dd;
  background: #eef2ee;
  min-height: clamp(300px, 45vw, 540px);
  box-shadow: 0 22px 46px rgba(24, 40, 30, 0.14);
}

.about-scope-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-scope-quote {
  position: absolute;
  left: clamp(12px, 2vw, 22px);
  right: clamp(12px, 2vw, 22px);
  bottom: clamp(12px, 2vw, 22px);
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(20, 31, 25, 0.74);
  box-shadow: 0 14px 24px rgba(12, 20, 16, 0.28);
  color: #f2f6f3;
  display: grid;
  gap: 8px;
}

.about-scope-quote p {
  margin: 0;
  color: inherit;
  font-size: clamp(0.94rem, 1.3vw, 1.05rem);
  line-height: 1.45;
}

.about-scope-quote p:last-child {
  font-weight: 700;
}

.home-stack {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.home-stack .text-block {
  margin-top: 0;
}

#home-suggested {
  margin-top: 4px;
}

#home-review .home-review-cta {
  display: flex;
  justify-content: flex-end;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-head h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.02em;
  color: #213429;
}

.legal-head p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  max-width: 80ch;
}

.legal-updated {
  font-size: 0.85rem;
  color: #6e7f75;
  font-weight: 600;
}

.legal-section {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.legal-section h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.16rem;
  color: #213429;
}

.legal-section p,
.legal-section li {
  margin: 0;
  color: #4f6258;
  font-size: 0.95rem;
}

.legal-section ul {
  list-style: disc;
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.centered {
  text-align: center;
}

.breadcrumb {
  margin: 0 0 16px;
  color: #73827a;
  font-size: 0.86rem;
}

.shop-hero {
  padding: 56px 0 28px;
}

.shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
}

.shop-hero-content h1 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  letter-spacing: -0.02em;
  color: #1d2f25;
}

.shop-hero-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-strong);
}

.shop-hero-subtitle,
.shop-hero-content p {
  margin: 0 0 20px;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 56ch;
}

.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-hero-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  transform: translateY(4px);
}

.shop-hero-strip img {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 16px 32px rgba(15, 32, 22, 0.12);
}

.breadcrumb-back {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-back::before {
  content: "←";
  font-weight: 600;
  color: #4b6a5b;
}

.breadcrumb-back:hover {
  color: #2b5a42;
}

.shop-head {
  margin: 0 0 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-head h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.02em;
}

.shop-sort {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.shop-sort select {
  appearance: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: #405249;
  font-size: 0.84rem;
  padding: 9px 34px 9px 12px;
  background-image: linear-gradient(45deg, transparent 50%, #5a6a61 50%), linear-gradient(135deg, #5a6a61 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
}

.shop-categories {
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-category-pill {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: #42574c;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 11px;
}

.shop-category-pill.active {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: #224738;
}

.pagination {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination a,
.pagination span {
  min-width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: #4e5f56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
}

.pagination .current {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
}

.product-gallery {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(165deg, #edf4ea 0%, #f9fcf7 100%);
  padding: 16px;
}

.product-gallery > img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.product-thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
}

.thumb-btn {
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  cursor: pointer;
}

.thumb-btn.active {
  border-color: var(--brand);
}

.thumb-btn img {
  width: 100%;
  height: 68px;
  object-fit: contain;
}

.product-summary {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}

.product-summary .category {
  margin: 0;
  color: #6a7a71;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-summary h1 {
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3.4vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.product-summary .price {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.38rem, 2.8vw, 1.95rem);
  color: #1f3f2f;
  font-weight: 700;
}

.product-summary .desc,
.product-summary .sku,
.product-summary .taxo {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.tech-sheet-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #95c59a;
  background: #e7f7e9;
  color: #1f5f3a;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tech-sheet-btn:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.variant-group {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.variant-title {
  margin: 0;
  color: #4a5f53;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-select-wrap {
  display: block;
}

.variant-select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: #334d40;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 10px;
}

.variant-pill {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: #3f5549;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 10px;
}

.variant-pill.active {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: #244738;
}

.qty-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.qty-control button,
.qty-control input {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #30433a;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-align: center;
}

.qty-control button {
  cursor: pointer;
  background: #f4f8f2;
}

.qty-control input {
  width: 48px;
  font-size: 0.92rem;
  font-weight: 600;
  outline: none;
}

.add-cart {
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(145deg, #3d8d5e, #2f7a4f);
  color: #fff;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.add-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(37, 96, 58, 0.25);
}

.tabs {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.tab-head {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: #f5f9f3;
}

.tab-head button {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #51645a;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tab-head button.active {
  color: #ffffff;
  border-color: var(--brand);
  background: var(--brand);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-body {
  padding: 16px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.tab-body p {
  margin: 0 0 10px;
}

.tab-body p:last-child {
  margin-bottom: 0;
}

#product-additional ul {
  list-style: disc;
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.product-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.product-specs th,
.product-specs td {
  border: 1px solid var(--line);
  padding: 10px 11px;
  text-align: left;
}

.product-specs th {
  width: 35%;
  color: #42564b;
  background: #f5f9f3;
  font-weight: 600;
}

.related-title {
  margin: 30px 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(1.42rem, 2.5vw, 1.85rem);
  letter-spacing: -0.01em;
}

.reviews-tab-content {
  display: grid;
  gap: 14px;
}

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

.review-entry {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.review-entry-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.review-stars-display {
  font-size: 0.86rem;
  color: #e3a008;
  letter-spacing: 0.04em;
}

.review-meta {
  font-size: 0.78rem;
  color: #6b7c72;
}

.review-form-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  padding: 16px;
}

.review-form-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.03rem;
  letter-spacing: -0.01em;
}

.review-form-card p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #67786f;
}

.review-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.review-form label {
  color: #3f5449;
  font-size: 0.88rem;
  font-weight: 600;
}

.review-stars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-stars label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #607066;
}

.review-form textarea,
.review-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: #2a3c33;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-form textarea:focus,
.review-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #9bbc9f;
  box-shadow: 0 0 0 3px rgba(82, 157, 102, 0.15);
}

.review-form textarea,
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

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

.review-submit,
.contact-form button {
  justify-self: start;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #3d8d5e, #2f7a4f);
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.contact-layout h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.66rem, 3vw, 2.2rem);
}

.contact-layout p,
.contact-layout li,
.contact-layout a {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.cart-shell {
  display: grid;
  gap: 14px;
}

.checkout-shell {
  display: grid;
  gap: 14px;
}

.cart-page-head h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
}

.cart-page-head p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  max-width: 66ch;
}

.checkout-page-head h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
}

.checkout-page-head p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  max-width: 72ch;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  gap: 16px;
  align-items: start;
}

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

.cart-empty {
  display: grid;
  gap: 14px;
}

.cart-empty p {
  margin: 0;
  color: var(--ink-soft);
}

.cart-empty-state {
  border: 1px dashed var(--line-strong);
  border-radius: 16px;
  background: var(--surface-soft);
  padding: 18px;
}

.cart-empty-state h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.cart-item {
  padding: 12px;
}

.cart-item-detailed {
  border-color: #cfdbcb;
}

.cart-item-layout {
  grid-template-columns: 140px 1fr;
  gap: 14px;
  align-items: center;
}

.cart-item-main {
  display: grid;
  gap: 8px;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.cart-item .product-name {
  margin: 0;
  line-height: 1.35;
}

.cart-item-total {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #234234;
}

.cart-line-meta {
  margin: 0;
  color: #66776d;
  font-size: 0.84rem;
}

.cart-side {
  position: relative;
}

.order-summary {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.order-summary h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #4a5d53;
  font-size: 0.88rem;
}

.summary-row strong {
  color: #22372d;
  font-weight: 700;
}

.summary-row.total {
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid var(--line-strong);
  font-size: 0.98rem;
}

.summary-row.total strong {
  font-family: var(--font-heading);
  font-size: 1.02rem;
}

.cart-note {
  margin: 0;
  color: #6a7b71;
  font-size: 0.78rem;
}

.cart-actions {
  display: grid;
  gap: 8px;
}

.cart-actions .btn {
  width: 100%;
}

#cart-feedback {
  margin-top: 10px;
  color: #3f7a4f;
  min-height: 20px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  gap: 16px;
  align-items: start;
}

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

.checkout-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.checkout-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.checkout-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.16rem;
  letter-spacing: -0.01em;
}

.checkout-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.checkout-auth-hint {
  margin-top: -2px;
  color: #4f6458;
  font-size: 0.86rem;
}

.checkout-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.auth-switch button {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: #3f5549;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
}

.auth-switch button.active {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.checkout-auth-form,
.checkout-order-form {
  display: grid;
  gap: 10px;
}

.checkout-auth-form[hidden],
.checkout-order-form[hidden],
[hidden] {
  display: none !important;
}

.checkout-auth-form label,
.checkout-order-form label {
  display: grid;
  gap: 6px;
  color: #3f5449;
  font-size: 0.88rem;
  font-weight: 600;
}

.checkout-auth-form input,
.checkout-order-form input,
.checkout-order-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: #2a3c33;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-auth-form input:focus,
.checkout-order-form input:focus,
.checkout-order-form textarea:focus {
  border-color: #9bbc9f;
  box-shadow: 0 0 0 3px rgba(82, 157, 102, 0.15);
}

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

.field-span-2 {
  grid-column: span 2;
}

.check-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #51655a;
  font-size: 0.84rem;
  font-weight: 500;
}

.check-line input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  padding: 0;
}

.form-message {
  margin: 0;
  min-height: 20px;
  color: #577166;
  font-size: 0.84rem;
}

.form-message.is-error {
  color: var(--danger);
}

.form-message.is-success {
  color: var(--brand-strong);
}

.checkout-resend-btn {
  justify-self: start;
}

.checkout-summary {
  gap: 12px;
}

.checkout-mini-list {
  display: grid;
  gap: 8px;
}

.checkout-mini-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 8px;
}

.checkout-mini-item img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: contain;
}

.checkout-mini-item strong {
  display: block;
  color: #253a30;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  line-height: 1.25;
}

.checkout-mini-item span {
  display: block;
  color: #607166;
  font-size: 0.78rem;
  margin-top: 2px;
}

.checkout-mini-item p {
  margin: 0;
  color: #22372d;
  font-size: 0.82rem;
  font-weight: 700;
}

.checkout-process {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.checkout-process h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.checkout-process ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #4e6358;
  font-size: 0.84rem;
}

.bank-box {
  border: 1px solid #caddca;
  border-radius: 12px;
  background: #f4faef;
  padding: 10px;
  display: grid;
  gap: 6px;
}

.bank-box h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.94rem;
}

.bank-box p {
  margin: 0;
  color: #3d5649;
  font-size: 0.84rem;
}

.checkout-confirmation {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.checkout-confirmation h2 {
  margin: 0;
  font-family: var(--font-heading);
}

.checkout-confirmation p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.email-draft {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.email-draft summary {
  cursor: pointer;
  color: #325244;
  font-size: 0.84rem;
  font-weight: 600;
}

.email-draft pre {
  margin: 8px 0 0;
  white-space: pre-wrap;
  color: #51645a;
  font-size: 0.78rem;
  line-height: 1.45;
}

.footer {
  border-top: 1px solid var(--line);
  background: #ecf3e8;
  padding: 32px 0 20px;
}

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

.footer h4 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  color: #2f463a;
}

.footer li,
.footer p,
.footer a {
  margin: 0;
  color: #5f6f66;
  font-size: 0.88rem;
}

.footer li + li,
.footer p + p {
  margin-top: 8px;
}

.copyright {
  margin-top: 18px;
  border-top: 1px solid #d5dfd2;
  padding-top: 12px;
  text-align: center;
  color: #77867d;
  font-size: 0.78rem;
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #25d366;
  color: #fff;
  font-size: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(13, 70, 32, 0.3);
  z-index: 45;
}

.wa-float img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.assist-widget {
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-family: var(--font-body);
}

.assist-widget.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.assist-panel {
  position: fixed;
  right: 16px;
  bottom: 148px;
  width: min(320px, 92vw);
  height: min(460px, 70vh);
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(18, 41, 27, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 71;
}

.assist-widget.is-open .assist-panel {
  display: flex;
}

.assist-toggle {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: none;
  background: var(--brand);
  color: #fff;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(22, 56, 34, 0.3);
  cursor: pointer;
}

.assist-toggle-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.assist-toggle:hover {
  background: var(--brand-strong);
}

.assist-toggle-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background: #2ecf63;
  box-shadow: 0 0 0 3px rgba(46, 207, 99, 0.22);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.assist-widget.has-notification .assist-toggle-dot {
  opacity: 1;
  transform: scale(1);
}

.assist-header {
  background: var(--brand);
  color: #fff;
  padding: 14px 16px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.assist-widget.is-dragging .assist-header {
  cursor: grabbing;
}

.assist-widget.is-dragging .assist-panel {
  box-shadow: 0 24px 48px rgba(18, 41, 27, 0.28);
}

.assist-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.assist-logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.assist-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.assist-title strong {
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.assist-title span {
  font-size: 0.72rem;
  opacity: 0.85;
}

.assist-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.assist-controls button {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.assist-controls button:hover {
  background: rgba(255, 255, 255, 0.32);
}

.assist-tabs {
  display: flex;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(180deg, rgba(47, 122, 79, 0.12), rgba(47, 122, 79, 0));
}

.assist-tab {
  border: 1px solid rgba(47, 122, 79, 0.35);
  background: #ffffff;
  color: var(--brand-strong);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
}

.assist-tab.active {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}

.assist-body {
  flex: 1;
  padding: 16px;
  background: var(--bg-soft);
  overflow-y: auto;
}

.assist-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assist-message {
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.4;
  box-shadow: 0 8px 18px rgba(24, 42, 31, 0.08);
}

.assist-message p {
  margin: 0;
}

.assist-message--bot {
  background: #ffffff;
  color: var(--ink);
  align-self: flex-start;
  border: 1px solid rgba(47, 122, 79, 0.14);
}

.assist-message--user {
  background: var(--brand);
  color: #fff;
  align-self: flex-end;
}

.assist-message--system {
  background: #eef3ed;
  color: var(--ink-soft);
  align-self: center;
  box-shadow: none;
}

.assist-message.is-pending {
  opacity: 0.7;
}

.assist-time {
  display: block;
  margin-top: 6px;
  font-size: 0.68rem;
  color: rgba(0, 0, 0, 0.45);
}

.assist-input {
  border-top: 1px solid var(--line);
  padding: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.assist-input input {
  flex: 1;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.88rem;
  outline: none;
}

.assist-input input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(47, 122, 79, 0.2);
}

.assist-send {
  border: none;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

.assist-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 720px) {
  .assist-widget {
    right: 12px;
    bottom: 78px;
  }

  .assist-panel {
    right: 12px;
    bottom: 136px;
    width: min(96vw, 320px);
    height: min(62vh, 420px);
  }
}

body.search-open {
  overflow: hidden;
}

.site-search-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(18, 33, 25, 0.46);
  backdrop-filter: blur(4px);
}

.site-search-modal[hidden] {
  display: none !important;
}

.site-search-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(20, 44, 30, 0.22);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.site-search-dialog h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.site-search-dialog p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-search-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: #354b40;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.site-search-form input {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
}

.site-search-form input:focus {
  border-color: #9bbc9f;
  box-shadow: 0 0 0 3px rgba(82, 157, 102, 0.14);
}

.site-search-results {
  display: grid;
  gap: 8px;
}

.site-search-hint {
  color: #6a7b71;
  font-size: 0.88rem;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  background: var(--surface-soft);
  padding: 12px;
}

.search-result-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.search-result-media {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.search-result-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-result-media.no-image {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2f7a4f;
  background: #e9f5eb;
  border-color: #b9d6be;
  padding: 6px;
}

.search-result-body {
  display: grid;
  gap: 4px;
}

.search-result-item:hover {
  border-color: #a9c0ae;
  transform: translateY(-1px);
}

.search-result-item strong {
  color: #20362b;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.search-result-item span {
  color: #607066;
  font-size: 0.84rem;
}

.search-result-type {
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.66rem;
  color: #2f7a4f;
  background: #e9f5eb;
  border: 1px solid #b9d6be;
  border-radius: 999px;
  padding: 3px 8px;
}

.site-search-empty {
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  background: var(--surface-soft);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.sticky-product-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--line-strong);
  background: rgba(248, 251, 245, 0.95);
  backdrop-filter: blur(8px);
  z-index: 44;
}

.sticky-product-inner {
  min-height: 72px;
  padding: 9px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-product-info img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.sticky-product-name,
.sticky-product-price {
  margin: 0;
}

.sticky-product-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
}

.sticky-product-price {
  color: #365549;
  font-size: 0.84rem;
}

.sticky-product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-page .page-shell {
  padding-bottom: 138px;
}

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

  #home-suggested .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-track {
    grid-auto-columns: minmax(220px, 36vw);
  }

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

  .hero-impact-grid {
    grid-template-columns: 1fr;
  }

  .shop-hero-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .home-showcase {
    padding: 56px 0;
  }

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

  .home-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "hero hero"
      "video1 video2"
      "insta insta";
  }

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

@media (max-width: 900px) {
  .header-grid {
    min-height: 76px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .brand img {
    width: 134px;
  }

  .tagline {
    text-align: left;
    font-size: 0.75rem;
  }

  .mobile-toggle {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3d5649;
    font-size: 1rem;
    cursor: pointer;
  }

  .header-right {
    gap: 8px;
  }

  #home-suggested .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-track {
    grid-auto-columns: minmax(210px, 44vw);
  }

  .menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(280px, calc(100vw - 40px));
    padding: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    width: 100%;
    justify-content: center;
  }

  .page-shell {
    padding-top: 22px;
  }

  .hero-full {
    height: clamp(360px, 72vh, 600px);
  }

  .hero-card {
    width: 100%;
    min-height: 0;
  }

  .hero-bg img {
    object-position: 78% 32%;
  }

  .hero-content {
    padding: 32px 0 40px;
  }

  .sectionPhoto__img {
    aspect-ratio: 4 / 3;
  }

  .page-card {
    padding: 22px;
  }

  .hero-block {
    padding: 20px;
  }

  .about-hero-grid,
  .about-highlight-card,
  .about-scope-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-watermark {
    left: -4%;
    top: 18%;
    transform: none;
    font-size: clamp(3rem, 20vw, 7rem);
  }

  .about-scope-list {
    grid-template-columns: 1fr;
  }

  .product-layout,
  .contact-layout,
  .cart-layout,
  .checkout-layout,
  .cart-item-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
    top: auto;
  }

  .tab-head {
    gap: 6px;
  }

  .tab-head button {
    flex: 1 1 calc(50% - 6px);
  }

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

  .field-span-2 {
    grid-column: span 1;
  }

  .sticky-product-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .sticky-product-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 720px) {
  .shop-hero {
    padding-top: 36px;
  }

  .home-showcase {
    padding: 48px 0;
  }

  .showcase-scroll {
    grid-auto-columns: minmax(200px, 240px);
  }

  .product-track {
    grid-auto-columns: minmax(200px, 72vw);
  }

  .carousel-btn {
    display: none;
  }

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

  .shop-hero-strip img {
    border-radius: 14px;
  }

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

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

  .trust-reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 24px);
  }

  .site-header {
    position: static;
  }

  .header-grid {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "brand actions"
      "tag tag";
    align-items: center;
  }

  .brand {
    grid-area: brand;
  }

  .tagline {
    grid-area: tag;
  }

  .header-right {
    grid-area: actions;
    justify-self: end;
    display: flex;
    align-items: center;
  }

  .mobile-toggle {
    order: 1;
  }

  .icons {
    order: 2;
  }

  .site-header nav {
    order: 3;
  }
  .page-shell {
    padding: 16px 0 72px;
  }

  .hero-full {
    height: clamp(300px, 62vh, 460px);
  }

  .hero-bg img {
    object-position: 90% 30%;
  }

  .home-content {
    padding-top: 36px;
  }

  .sectionPhoto__img {
    aspect-ratio: 4 / 3;
  }

  .home-media-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "video1"
      "video2"
      "insta";
  }

  .page-card {
    padding: 16px;
    border-radius: 18px;
  }

  .about-hero {
    padding: 32px 0 56px;
  }

  .about-hero-visual {
    min-height: 260px;
  }

  .about-highlight-media {
    min-height: 240px;
  }

  .about-scope-visual {
    min-height: 260px;
  }

  .circle-link {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

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

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

  .section-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #home-review .home-review-cta {
    justify-content: center;
  }

  #home-review .home-review-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .shop-sort {
    width: 100%;
    justify-content: space-between;
  }

  .shop-sort select {
    flex: 1;
  }

  .qty-row {
    width: 100%;
  }

  .add-cart {
    width: 100%;
  }

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

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

  .sticky-product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sticky-product-actions .add-cart {
    width: 100%;
  }

  .wa-float {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

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