:root {
  --bg: #0e1110;
  --bg-2: #121713;
  --surface: #171d19;
  --surface-2: #1f2722;
  --text: #f7f7f2;
  --muted: #a8b0a9;
  --line: rgba(247, 247, 242, 0.12);
  --green: #2f7d54;
  --green-2: #4ca36e;
  --cream: #f2eadc;
  --danger: #d76a6a;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
body.cart-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 17, 16, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand img { width: 40px; height: 40px; border-radius: 12px; }
.desktop-nav { display: flex; gap: 26px; color: var(--muted); font-size: 15px; }
.desktop-nav a:hover, .mobile-menu a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-toggle, .cart-button, .menu-button, .icon-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 999px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.language-toggle { padding: 0 13px; }
.cart-button { min-width: 58px; padding: 0 12px; }
.cart-button span {
  font-size: 13px;
  background: var(--green);
  min-width: 21px;
  height: 21px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
}
.menu-button, .icon-button { width: 42px; padding: 0; }
.menu-button { display: none; }
.mobile-menu { border-top: 1px solid var(--line); padding: 10px 16px 18px; }
.mobile-menu a { display: block; color: var(--muted); padding: 12px 0; }

.hero {
  padding: 76px 0 70px;
  background:
    radial-gradient(circle at 80% 10%, rgba(47, 125, 84, 0.22), transparent 36%),
    linear-gradient(180deg, #111512 0%, var(--bg) 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--green-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 22px;
  max-width: 760px;
}
h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 14px;
}
h3 { letter-spacing: -0.03em; }
.hero-text { color: var(--muted); font-size: 18px; max-width: 610px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.button {
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.button.primary { background: var(--text); color: #0c0f0e; }
.button.secondary { background: transparent; border-color: var(--line); color: var(--text); }
.button.full { width: 100%; }

.trust-row { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 14px; }
.trust-row div { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { color: var(--green-2); }

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-image-wrap { aspect-ratio: 4 / 5; background: #101412; overflow: hidden; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-info { padding: 18px; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.hero-card-info span { color: var(--muted); font-size: 14px; }
.hero-card-info strong { text-align: right; }

.section { padding: 80px 0; }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 28px; }
.section-head.compact { margin-bottom: 22px; }
.section-head p:last-child { color: var(--muted); max-width: 470px; margin-bottom: 6px; }

.toolbar { display: flex; gap: 14px; justify-content: space-between; margin-bottom: 26px; }
.search-box {
  flex: 1;
  min-width: 240px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--muted);
}
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); }
.search-box input::placeholder { color: #737b74; }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  min-height: 48px;
  padding: 0 15px;
  cursor: pointer;
}
.chip.active, .chip:hover { color: var(--text); border-color: rgba(76, 163, 110, 0.65); background: rgba(47, 125, 84, 0.18); }

.reset-button { border: 0; padding: 0; margin: 0; background: transparent; color: inherit; text-align: inherit; cursor: pointer; width: 100%; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}
.product-card:hover { transform: translateY(-3px); border-color: rgba(76, 163, 110, 0.48); }
.product-image { position: relative; aspect-ratio: 4 / 5; background: #101412; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: 7px; }
.badge {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(14, 17, 16, 0.72);
  backdrop-filter: blur(12px);
  color: var(--text);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 730;
}
.product-content { padding: 17px; }
.product-topline { color: var(--muted); font-size: 13px; display: flex; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.product-content h3 { font-size: 20px; margin-bottom: 8px; }
.product-description { color: var(--muted); font-size: 14px; min-height: 42px; }
.product-footer { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-top: 16px; }
.price { font-size: 20px; font-weight: 850; letter-spacing: -0.03em; }
.small-button { height: 40px; padding: 0 13px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--text); cursor: pointer; }
.small-button:hover { border-color: rgba(76, 163, 110, 0.7); }

.empty-state {
  text-align: center;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 44px 20px;
  color: var(--muted);
}
.empty-state svg { width: 36px; height: 36px; color: var(--green-2); }

.info-strip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.info-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.025); }
.info-card svg { color: var(--green-2); width: 30px; height: 30px; margin-bottom: 16px; }
.info-card p { color: var(--muted); margin-bottom: 0; }

.editorial-grid, .faq-grid, .footer-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.editorial p:not(.eyebrow) { color: var(--muted); max-width: 550px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: center; }
.check-list svg { color: var(--green-2); flex: 0 0 auto; }
.editorial-image { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--surface); }
.editorial-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }


.contact-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(47, 125, 84, 0.16), transparent 32%),
    #0e1110;
}

.contact-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: calc(var(--radius) + 6px);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.contact-panel p:not(.eyebrow) {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 0;
}

.contact-methods {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 999px;
  padding: 13px 16px;
  color: var(--text);
}

.contact-methods svg {
  color: var(--green-2);
}

.faq { background: #101411; }
.faq-grid { align-items: start; }
.faq-list { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); padding: 18px 20px; }
summary { cursor: pointer; font-weight: 780; }
details p { color: var(--muted); margin: 14px 0 0; }

.site-footer { border-top: 1px solid var(--line); padding: 44px 0; background: #0b0d0c; }
.footer-grid { align-items: start; }
.footer-brand { margin-bottom: 14px; }
.site-footer p { color: var(--muted); max-width: 470px; margin-bottom: 0; }
.site-footer div:last-child { display: grid; gap: 10px; justify-items: end; }
.site-footer a:not(.brand) { color: var(--muted); }

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: flex-end;
}
.cart-drawer.open { display: flex; }
.cart-panel {
  width: min(520px, 100%);
  background: var(--bg);
  border-left: 1px solid var(--line);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.cart-header, .cart-footer { padding: 20px; }
.cart-header { border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.cart-header h2 { font-size: 28px; margin: 0; }
.cart-scroll { flex: 1; overflow: auto; }
.cart-items { padding: 14px 20px; display: grid; align-content: start; gap: 12px; }
.cart-line { display: grid; grid-template-columns: 68px 1fr auto; gap: 12px; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-sm); padding: 10px; }
.cart-line img { width: 68px; height: 78px; object-fit: cover; border-radius: 10px; background: #111; }
.cart-line h4 { margin: 0 0 4px; font-size: 15px; }
.cart-line p { margin: 0; color: var(--muted); font-size: 13px; }
.remove-item { border: 0; background: transparent; color: var(--muted); cursor: pointer; padding: 4px; }

.checkout-form { padding: 4px 20px 22px; }
.checkout-form h3 { margin: 8px 0 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid label, .checkout-form label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; }
.form-grid .wide { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 13px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: rgba(76, 163, 110, 0.7); }
textarea { resize: vertical; }
.consent { grid-template-columns: auto 1fr !important; margin-top: 14px; align-items: start; }
.consent input { width: auto; margin-top: 3px; }

.cart-footer { border-top: 1px solid var(--line); }
.total-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 18px; }
.small-note { color: var(--muted); font-size: 13px; }
.small-note.success { color: var(--green-2); }
.small-note.error { color: var(--danger); }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
  padding: 24px;
  place-items: center;
}
.modal-backdrop:not([hidden]) { display: grid; }
.product-modal {
  position: relative;
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow);
}
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; background: rgba(0, 0, 0, 0.42); }
.modal-image { background: #101412; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; min-height: 620px; }
.modal-info { padding: 44px; }
.modal-info p { color: var(--muted); }
.modal-meta { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; margin: 24px 0; }
.modal-controls { display: grid; grid-template-columns: 1fr 130px; gap: 12px; margin-bottom: 14px; }
.size-label { color: var(--muted); font-size: 14px; display: block; margin-bottom: 8px; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .hero-grid, .editorial-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-head, .toolbar { align-items: stretch; flex-direction: column; }
  .product-grid, .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer div:last-child { justify-items: start; }
  .product-modal { grid-template-columns: 1fr; }
  .modal-image img { min-height: 360px; max-height: 480px; }
}

@media (max-width: 620px) {
  .contact-panel { grid-template-columns: 1fr; padding: 24px; }
  .contact-methods { min-width: 0; }
  .container { width: min(100% - 24px, var(--container)); }
  .hero { padding: 48px 0 54px; }
  h1 { font-size: 46px; }
  .product-grid, .info-grid, .form-grid { grid-template-columns: 1fr; }
  .hero-card-info { display: block; }
  .hero-card-info strong { display: block; text-align: left; margin-top: 4px; }
  .filter-buttons { display: grid; grid-template-columns: repeat(2, 1fr); }
  .modal-info { padding: 28px 18px 22px; }
  .modal-backdrop { padding: 10px; }
  .modal-controls { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 58px 1fr auto; }
  .cart-line img { width: 58px; height: 70px; }
}
