:root {
  --bg: #f7f4ec;
  --surface: #ffffff;
  --ink: #162016;
  --muted: #617061;
  --line: rgba(22, 32, 22, 0.12);
  --green: #1f7a4d;
  --lime: #c8f35f;
  --orange: #f27632;
  --shadow: 0 22px 60px rgba(22, 32, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1120px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 34px rgba(22, 32, 22, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.top-nav,
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-nav a,
.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.top-nav a:hover,
.lang-btn.active {
  background: var(--ink);
  color: #fff;
}

.hero {
  width: min(1120px, calc(100% - 28px));
  margin: 54px auto 0;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

h3 {
  margin: 8px 0;
  font-size: 1.35rem;
}

.hero-text {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

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

.btn-secondary,
.btn-product {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-product {
  width: 100%;
  margin-top: 14px;
}

.full {
  width: 100%;
}

.hero-product {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(22, 32, 22, 0.14);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge span {
  color: var(--muted);
  font-weight: 700;
}

.trust-strip {
  width: min(1120px, calc(100% - 28px));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trust-strip p {
  margin: 0;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-weight: 850;
}

.section {
  width: min(1120px, calc(100% - 28px));
  margin: 76px auto 0;
}

.section-heading {
  margin-bottom: 24px;
}

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

.product-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(22, 32, 22, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-body {
  padding: 18px;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.tag {
  display: inline-flex;
  margin: 0 0 8px !important;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 122, 77, 0.1);
  color: var(--green) !important;
  font-weight: 900;
  font-size: 0.8rem;
}

.price {
  display: block;
  margin-top: 14px;
  color: var(--orange);
}

.order-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 80px;
}

.order-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.order-form {
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.order-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 850;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
}

.order-form textarea {
  resize: vertical;
}

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

.cart-panel {
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

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

.cart-heading span,
.cart-heading strong {
  display: block;
}

.cart-heading span {
  color: var(--muted);
  font-weight: 850;
  font-size: 0.9rem;
}

.cart-heading strong {
  margin-top: 2px;
  font-size: 1.2rem;
}

.cart-heading a {
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.cart-item {
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) minmax(260px, 1.15fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cart-item-info strong,
.cart-item-info small {
  display: block;
}

.cart-item-info small {
  margin-top: 4px;
  color: var(--orange);
  font-weight: 850;
}

.cart-item-controls {
  display: grid;
  grid-template-columns: 76px auto;
  gap: 8px;
  align-items: center;
  justify-content: end;
}

.cart-item-controls input {
  margin: 0;
}

.cart-remove {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto 28px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .top-nav {
    display: none;
  }

  .hero,
  .order-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero {
    margin-top: 36px;
  }

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

@media (max-width: 520px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 3.1rem;
  }

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

  .site-footer {
    display: block;
  }

  .cart-heading,
  .cart-item {
    display: block;
  }

  .cart-heading a {
    display: inline-flex;
    margin-top: 8px;
  }

  .cart-item-controls {
    grid-template-columns: 72px minmax(0, 1fr);
    justify-content: stretch;
    margin-top: 10px;
  }

  .cart-remove {
    grid-column: 1 / -1;
  }
}
