:root {
  --cs-green-950: #002f1c;
  --cs-green-900: #043f27;
  --cs-green-800: #075433;
  --cs-green-600: #16814d;
  --cs-leaf: #86c33f;
  --cs-gold: #c69221;
  --cs-ink: #102018;
  --cs-muted: #5b675f;
  --cs-line: #c9d6ce;
  --cs-soft-line: #e4ebe6;
  --cs-bg: #ffffff;
  --cs-bg-soft: #f5f8f6;
  --cs-shadow: 0 18px 45px rgba(5, 40, 24, 0.12);
  --cs-radius: 6px;
  --cs-max: 1400px;
}

html {
  scroll-behavior: smooth;
}

body.cs-rendered-page {
  margin: 0;
  background: var(--cs-bg);
  color: var(--cs-ink);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.cs-rendered-page.admin-bar .cs-header {
  top: 32px;
}

.cs-site,
.cs-site * {
  box-sizing: border-box;
}

.cs-site {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  background: var(--cs-bg);
  color: var(--cs-ink);
  overflow-x: clip;
}

.cs-site a {
  color: inherit;
}

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

.cs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 92px;
  padding: 18px clamp(24px, 5vw, 74px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--cs-line);
  backdrop-filter: blur(14px);
}

.cs-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.cs-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.cs-logo span {
  color: var(--cs-green-950);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.cs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 5vw, 72px);
  font-size: 16px;
  font-weight: 700;
  color: #121c16;
}

.cs-nav a {
  position: relative;
  padding: 10px 0;
  text-decoration: none;
}

.cs-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--cs-green-800);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cs-nav a:hover::after,
.cs-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.cs-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: #fff;
  border: 1px solid var(--cs-line);
  border-radius: var(--cs-radius);
  color: var(--cs-green-900);
}

.cs-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.cs-main {
  width: 100%;
  max-width: 100vw;
  background:
    linear-gradient(180deg, rgba(245, 248, 246, 0.58), rgba(255, 255, 255, 0) 360px),
    #fff;
}

.cs-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: start;
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(58px, 6vw, 86px) clamp(24px, 5vw, 74px) 20px;
  gap: clamp(42px, 5vw, 86px);
}

.cs-hero-copy {
  max-width: 720px;
}

.cs-hero h1,
.cs-page-hero h1,
.cs-contact-copy h1 {
  margin: 0;
  color: var(--cs-green-950);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

.cs-hero p,
.cs-page-hero p,
.cs-contact-copy > p {
  max-width: 670px;
  margin: 28px 0 0;
  color: #26322b;
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.55;
}

.cs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.cs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border: 1.5px solid var(--cs-green-900);
  border-radius: var(--cs-radius);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.cs-button:hover {
  transform: translateY(-1px);
}

.cs-site .cs-button-primary {
  background: linear-gradient(180deg, var(--cs-green-800), var(--cs-green-950));
  color: #fff;
  box-shadow: 0 13px 28px rgba(0, 47, 28, 0.18);
}

.cs-site .cs-button-secondary {
  background: #fff;
  color: var(--cs-green-900);
}

.cs-button-secondary:hover {
  background: var(--cs-bg-soft);
}

.cs-hero-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  align-items: stretch;
  min-height: clamp(380px, 42vw, 620px);
  overflow: hidden;
  border-left: 1px solid rgba(0, 47, 28, 0.14);
}

.cs-hero-collage figure {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
  background: var(--cs-bg-soft);
}

.cs-hero-collage figure + figure {
  margin-left: -18px;
}

.cs-hero-collage img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cs-catalog-preview,
.cs-products-section,
.cs-split-section,
.cs-about-grid,
.cs-contact-layout {
  max-width: var(--cs-max);
  margin: 0 auto;
  padding-right: clamp(24px, 5vw, 74px);
  padding-left: clamp(24px, 5vw, 74px);
}

.cs-catalog-preview {
  padding-top: 30px;
  padding-bottom: clamp(72px, 9vw, 122px);
}

.cs-category-tabs {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin-bottom: 34px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border-bottom: 1px solid var(--cs-line);
}

.cs-category-tabs button {
  flex: 1 0 138px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 82px;
  padding: 14px 18px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--cs-line);
  border-radius: 0;
  color: #0f1e16;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.cs-category-tabs button:first-child {
  border-left: 0;
}

.cs-category-tabs button.is-active {
  color: var(--cs-green-900);
  box-shadow: inset 0 -3px 0 var(--cs-green-800);
}

.cs-category-tabs button:hover {
  background: rgba(22, 129, 77, 0.06);
}

.cs-tab-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  color: var(--cs-green-900);
}

.cs-tab-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cs-category-tabs-compact {
  margin-bottom: 34px;
  background: #fff;
}

.cs-category-tabs-compact button {
  min-height: 72px;
  font-size: 15px;
}

.cs-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 28px;
}

.cs-section-heading h2,
.cs-split-section h2,
.cs-about-copy h2 {
  margin: 0;
  color: var(--cs-green-950);
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.cs-section-heading p,
.cs-split-section p,
.cs-about-copy p,
.cs-about-points p,
.cs-proof-panel,
.cs-contact-list {
  color: var(--cs-muted);
  font-size: 17px;
  line-height: 1.65;
}

.cs-section-heading p {
  max-width: 520px;
  margin: 0;
}

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

.cs-product-card {
  display: grid;
  grid-template-columns: minmax(155px, 0.92fr) minmax(190px, 1fr);
  min-height: 262px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #98ada1;
  border-radius: var(--cs-radius);
  box-shadow: 0 1px 0 rgba(0, 47, 28, 0.04);
}

.cs-product-card[hidden] {
  display: none;
}

.cs-product-image {
  background: var(--cs-bg-soft);
}

.cs-product-image img {
  width: 100%;
  height: 100%;
  min-height: 262px;
  object-fit: cover;
}

.cs-product-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px clamp(20px, 2.2vw, 34px) 22px;
}

.cs-product-code {
  margin: 0;
  color: var(--cs-green-950);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 850;
  line-height: 1;
}

.cs-product-type {
  margin: 12px 0 0;
  color: #1f2d25;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cs-gold-rule {
  width: 56px;
  height: 3px;
  margin: 22px 0 18px;
  background: var(--cs-gold);
}

.cs-product-card ul,
.cs-proof-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs-product-card li,
.cs-proof-panel li {
  position: relative;
  padding-left: 24px;
  color: #2d3b33;
  font-size: 15px;
  line-height: 1.35;
}

.cs-product-card li::before,
.cs-proof-panel li::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cs-green-800);
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px var(--cs-green-800);
  content: "";
}

.cs-card-link,
.cs-text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #a8b9ae;
  color: var(--cs-green-900);
  font-size: 16px;
  font-weight: 850;
  text-decoration: none;
}

.cs-card-link span,
.cs-text-link span {
  font-size: 26px;
  line-height: 1;
}

.cs-split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(36px, 6vw, 96px);
  padding-top: clamp(66px, 9vw, 124px);
  padding-bottom: clamp(70px, 10vw, 136px);
  border-top: 1px solid var(--cs-soft-line);
}

.cs-split-section p {
  max-width: 680px;
}

.cs-text-link {
  max-width: max-content;
  margin-top: 32px;
  padding-top: 0;
  border-top: 0;
}

.cs-proof-panel {
  align-self: start;
  padding: 32px;
  background: var(--cs-green-950);
  border-radius: var(--cs-radius);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--cs-shadow);
}

.cs-proof-panel p {
  margin: 0 0 22px;
  color: #fff;
  font-weight: 850;
}

.cs-proof-panel li {
  color: rgba(255, 255, 255, 0.82);
}

.cs-proof-panel li::before {
  background: var(--cs-leaf);
  box-shadow: inset 0 0 0 3px var(--cs-green-950), 0 0 0 1px var(--cs-leaf);
}

.cs-inner-page {
  padding-top: clamp(42px, 5vw, 72px);
}

.cs-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  max-width: var(--cs-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 74px) clamp(54px, 7vw, 92px);
}

.cs-page-hero h1,
.cs-contact-copy h1 {
  font-size: clamp(44px, 5vw, 78px);
}

.cs-page-hero img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  border-radius: var(--cs-radius);
  box-shadow: var(--cs-shadow);
}

.cs-products-section {
  padding-bottom: clamp(76px, 9vw, 126px);
}

.cs-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 84px);
  padding-bottom: clamp(78px, 10vw, 140px);
}

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

.cs-about-points article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--cs-line);
  border-radius: var(--cs-radius);
}

.cs-about-points h3 {
  margin: 0 0 12px;
  color: var(--cs-green-950);
  font-size: 21px;
  line-height: 1.18;
}

.cs-about-points p {
  margin: 0;
}

.cs-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.74fr);
  gap: clamp(42px, 7vw, 100px);
  padding-top: clamp(34px, 6vw, 88px);
  padding-bottom: clamp(78px, 10vw, 140px);
}

.cs-contact-list {
  display: grid;
  gap: 20px;
  margin-top: 38px;
}

.cs-contact-list p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.cs-contact-list strong {
  color: var(--cs-green-900);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cs-contact-list a {
  color: #1f2d25;
  text-decoration: none;
}

.cs-contact-card {
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--cs-line);
  border-radius: var(--cs-radius);
  box-shadow: var(--cs-shadow);
}

.cs-form-title {
  margin: 0 0 24px;
  color: var(--cs-green-950);
  font-size: 28px;
  font-weight: 850;
}

.cs-contact-card form,
.cs-contact-card label {
  display: grid;
}

.cs-contact-card form {
  gap: 18px;
}

.cs-contact-card label {
  gap: 8px;
  color: #2b3931;
  font-size: 14px;
  font-weight: 800;
}

.cs-contact-card input,
.cs-contact-card textarea {
  width: 100%;
  border: 1px solid #b7c6bc;
  border-radius: var(--cs-radius);
  padding: 14px 15px;
  color: var(--cs-ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.3;
}

.cs-contact-card textarea {
  resize: vertical;
}

.cs-footer {
  width: 100%;
  max-width: 100vw;
  background: #f4f7f5;
  border-top: 1px solid var(--cs-line);
}

.cs-footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(180px, 0.45fr) minmax(250px, 0.65fr);
  gap: clamp(28px, 6vw, 96px);
  max-width: var(--cs-max);
  margin: 0 auto;
  padding: 38px clamp(24px, 5vw, 74px);
}

.cs-footer-logo img {
  width: 50px;
  height: 50px;
}

.cs-footer-logo span {
  font-size: 27px;
}

.cs-footer-brand .cs-footer-logo {
  margin-bottom: 16px;
}

.cs-footer-brand p,
.cs-footer-contact p,
.cs-footer-contact a,
.cs-footer-links a,
.cs-footer-bottom {
  color: var(--cs-muted);
  font-size: 15px;
  line-height: 1.6;
}

.cs-footer-links,
.cs-footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
}

.cs-footer-links a,
.cs-footer-contact a {
  text-decoration: none;
}

.cs-footer-links a:hover,
.cs-footer-contact a:hover {
  color: var(--cs-green-900);
}

.cs-footer-contact p {
  margin: 0 0 6px;
}

.cs-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--cs-max);
  margin: 0 auto;
  padding: 18px clamp(24px, 5vw, 74px);
  border-top: 1px solid var(--cs-line);
}

.cookieadmin_law_container.cookieadmin_box {
  right: 18px !important;
  bottom: 18px !important;
  left: auto !important;
  max-width: 360px !important;
  border: 1px solid var(--cs-line) !important;
  border-radius: var(--cs-radius) !important;
  box-shadow: var(--cs-shadow) !important;
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif !important;
}

.cookieadmin_law_container #cookieadmin_notice_title {
  color: var(--cs-green-950) !important;
  font-weight: 850 !important;
}

.cookieadmin_law_container .cookieadmin_consent_btns {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

.cookieadmin_law_container .cookieadmin_btn {
  min-height: 34px !important;
  border-radius: var(--cs-radius) !important;
  font-family: inherit !important;
  font-weight: 700 !important;
}

.cookieadmin_law_container #cookieadmin_accept_button {
  background: var(--cs-green-800) !important;
  border-color: var(--cs-green-800) !important;
}

@media (max-width: 1180px) {
  .cs-hero {
    grid-template-columns: 1fr;
  }

  .cs-hero-collage {
    min-height: 360px;
  }

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

  .cs-section-heading,
  .cs-split-section,
  .cs-about-grid,
  .cs-contact-layout,
  .cs-page-hero {
    grid-template-columns: 1fr;
  }

  .cs-about-points {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    overflow-x: auto;
  }
}

@media (max-width: 820px) {
  body.cs-rendered-page.admin-bar .cs-header {
    top: 46px;
  }

  .cs-header {
    min-height: 78px;
    padding: 14px 18px;
  }

  .cs-logo {
    gap: 9px;
  }

  .cs-logo img {
    width: 44px;
    height: 44px;
  }

  .cs-logo span {
    font-size: 24px;
  }

  .cs-menu-toggle {
    position: fixed;
    top: 17px;
    right: 18px;
    z-index: 70;
    display: block;
    background: var(--cs-green-900);
    border-color: var(--cs-green-900);
    color: #fff;
  }

  body.cs-rendered-page.admin-bar .cs-menu-toggle {
    top: 63px;
  }

  .cs-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--cs-line);
    border-radius: var(--cs-radius);
    box-shadow: var(--cs-shadow);
  }

  .cs-nav.is-open {
    display: grid;
  }

  .cs-nav a {
    padding: 14px;
  }

  .cs-nav a::after {
    display: none;
  }

  .cs-hero {
    min-height: auto;
    padding-top: 44px;
  }

  .cs-hero h1,
  .cs-page-hero h1,
  .cs-contact-copy h1 {
    font-size: 44px;
  }

  .cs-hero p,
  .cs-page-hero p,
  .cs-contact-copy > p {
    font-size: 18px;
  }

  .cs-hero-collage {
    grid-template-columns: repeat(2, 1fr);
    min-height: 420px;
    border-left: 0;
  }

  .cs-hero-collage figure,
  .cs-hero-collage figure + figure {
    margin-left: 0;
    clip-path: none;
  }

  .cs-category-tabs {
    width: 100%;
  }

  .cs-category-tabs button {
    flex-basis: 126px;
    min-height: 68px;
    gap: 9px;
    font-size: 15px;
  }

  .cs-tab-icon {
    width: 26px;
    height: 26px;
  }

  .cs-section-heading {
    display: grid;
  }

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

  .cs-product-card {
    grid-template-columns: minmax(120px, 0.74fr) minmax(180px, 1fr);
  }

  .cs-product-image img {
    min-height: 240px;
  }

  .cs-footer-inner,
  .cs-footer-bottom {
    grid-template-columns: 1fr;
  }

  .cs-footer-bottom {
    display: grid;
  }

  .cookieadmin_law_container.cookieadmin_box {
    right: 12px !important;
    bottom: 12px !important;
    left: 12px !important;
    max-width: none !important;
  }
}

@media (max-width: 560px) {
  .cs-logo {
    gap: 8px;
  }

  .cs-logo img {
    width: 38px;
    height: 38px;
  }

  .cs-logo span {
    font-size: 21px;
  }

  .cs-actions {
    display: grid;
  }

  .cs-button {
    width: 100%;
  }

  .cs-hero h1,
  .cs-page-hero h1,
  .cs-contact-copy h1 {
    font-size: 38px;
  }

  .cs-hero-copy,
  .cs-hero p {
    max-width: 100%;
  }

  .cs-hero p {
    font-size: 16.5px;
  }

  .cs-product-card {
    grid-template-columns: 1fr;
  }

  .cs-product-image img {
    aspect-ratio: 1.42 / 1;
    min-height: 0;
  }

  .cs-contact-layout,
  .cs-page-hero,
  .cs-catalog-preview,
  .cs-products-section,
  .cs-split-section,
  .cs-about-grid {
    padding-right: 18px;
    padding-left: 18px;
  }
}
