:root {
  --ink: #18211b;
  --muted: #637066;
  --line: #dce4dc;
  --paper: #f8faf6;
  --white: #ffffff;
  --leaf: #2f6b45;
  --leaf-dark: #214d32;
  --amber: #d9952f;
  --clay: #9b5138;
  --aqua: #347d88;
  --shadow: 0 18px 48px rgba(21, 36, 24, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(248, 250, 246, 0.94);
  box-shadow: 0 12px 34px rgba(20, 34, 26, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(47, 107, 69, 0.78);
  color: var(--white);
  font-weight: 800;
}

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

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.header-actions,
.hero-actions,
.admin-actions,
.product-tools,
.form-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.cart-button,
.primary-action,
.secondary-action,
.ghost-action,
.danger-action,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
}

.icon-button {
  width: 42px;
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .icon-button {
  background: var(--white);
  box-shadow: 0 6px 18px rgba(20, 34, 26, 0.08);
}

.cart-button {
  position: relative;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
}

.cart-button b {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--clay);
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(18px, 5vw, 72px) 34px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 25, 16, 0.88), rgba(14, 25, 16, 0.52), rgba(14, 25, 16, 0.1)),
    linear-gradient(0deg, rgba(14, 25, 16, 0.74), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: 86px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.primary-action {
  padding: 0 18px;
  color: var(--white);
  background: var(--leaf);
  box-shadow: 0 12px 28px rgba(22, 67, 39, 0.24);
}

.secondary-action {
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
}

.ghost-action {
  padding: 0 16px;
  color: var(--leaf-dark);
  background: #e7efe7;
}

.danger-action {
  padding: 0 16px;
  color: #8c2f22;
  background: #f8dfd8;
}

.full {
  width: 100%;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(860px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div:last-child {
  border-right: 0;
}

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

.hero-stats strong {
  font-size: 22px;
}

.hero-stats span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 86px clamp(18px, 5vw, 72px);
}

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

.search-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: min(310px, 46vw);
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.search-box input,
.admin-form input,
.admin-form textarea,
.admin-form select,
.product-tools select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.search-box input {
  border: 0;
}

.product-tools select {
  height: 46px;
  padding: 0 12px;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.chip {
  padding: 0 13px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
}

.chip.is-active {
  color: var(--white);
  background: var(--aqua);
  border-color: var(--aqua);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(20, 34, 26, 0.07);
}

.product-card figure {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #dfe7dd;
}

.product-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(24, 33, 27, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.product-body {
  padding: 18px;
}

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

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
}

.feature-tags span {
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--leaf-dark);
  background: #edf4ea;
  font-size: 12px;
  font-weight: 800;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
}

.product-meta svg {
  width: 15px;
  height: 15px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.product-footer small {
  display: block;
  max-width: 180px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.price {
  font-size: 22px;
  font-weight: 900;
}

.price-request {
  max-width: 190px;
  color: var(--aqua);
  font-size: 17px;
  line-height: 1.25;
}

.trust-section {
  padding-top: 0;
}

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

.trust-strip article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(20, 34, 26, 0.06);
}

.trust-strip svg {
  color: var(--leaf);
  width: 26px;
  height: 26px;
  margin-bottom: 18px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.trust-strip span,
.section-note {
  color: var(--muted);
  line-height: 1.6;
}

.section-note {
  max-width: 520px;
  margin: 0;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(47, 107, 69, 0.06), rgba(52, 125, 136, 0.08)),
    var(--paper);
}

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

.process-grid article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-grid article::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -42px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(217, 149, 47, 0.14);
}

.process-grid span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--leaf);
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section,
.about-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: var(--white);
}

.feature-panel p,
.about-copy p,
.promise-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.feature-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.solution-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.solution-image img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.promise-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
}

.promise-grid svg,
.feature-list svg {
  color: var(--leaf);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 clamp(18px, 5vw, 72px) 72px;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--leaf-dark), #2f5f58);
}

.contact-band h2 {
  margin-bottom: 0;
  max-width: 820px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(22px, 5vw, 64px);
  align-items: start;
  padding-top: 0;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

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

.contact-cards article {
  display: grid;
  gap: 12px;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(20, 34, 26, 0.07);
}

.contact-cards article > svg {
  width: 30px;
  height: 30px;
  color: var(--leaf);
}

.contact-cards span {
  color: var(--muted);
  font-weight: 800;
}

.contact-cards strong {
  font-size: 20px;
  line-height: 1.35;
}

.floating-whatsapp {
  position: fixed;
  z-index: 18;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: #1fa855;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 22px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.drawer {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  background: rgba(13, 24, 17, 0);
  transition: background 0.2s ease;
}

.drawer.is-open {
  pointer-events: auto;
  background: rgba(13, 24, 17, 0.46);
}

.drawer-panel {
  width: min(520px, 100%);
  height: 100%;
  overflow: auto;
  padding: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 0.22s ease;
}

.drawer.is-open .drawer-panel {
  transform: translateX(0);
}

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

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

.cart-empty {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.cart-item img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  object-fit: cover;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 32px 34px 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.qty-control button {
  border: 0;
  background: #eef4ed;
  font-weight: 900;
}

.qty-control span {
  display: grid;
  place-items: center;
  font-weight: 900;
}

.cart-summary {
  position: sticky;
  bottom: 0;
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  background: var(--paper);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 900;
}

.admin-panel {
  width: min(760px, 100%);
}

.admin-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.admin-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.admin-form input,
.admin-form textarea {
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
}

.admin-form textarea {
  resize: vertical;
}

.form-row {
  align-items: start;
}

.form-row > label {
  flex: 1;
}

.admin-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.admin-item {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.admin-item img {
  width: 62px;
  height: 62px;
  border-radius: var(--radius);
  object-fit: cover;
}

.admin-item-actions {
  display: flex;
  gap: 6px;
}

.toast {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 24px;
  max-width: min(440px, calc(100% - 32px));
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 16px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.admin-body {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(47, 107, 69, 0.12), rgba(52, 125, 136, 0.1)),
    var(--paper);
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.admin-login {
  display: grid;
  gap: 20px;
  width: min(460px, 100%);
  margin: 7vh auto 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-login h1,
.admin-topbar h1 {
  margin-bottom: 8px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}

.admin-muted {
  color: var(--muted);
  line-height: 1.6;
}

.admin-dashboard {
  display: grid;
  gap: 22px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(20, 34, 26, 0.08);
}

.admin-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.admin-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 900;
}

.admin-nav a.is-active {
  color: var(--white);
  background: var(--leaf);
}

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

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

.admin-side {
  display: grid;
  gap: 16px;
}

.admin-form h2 {
  margin: 0;
  font-size: 22px;
}

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

.editor-block {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
}

.editor-block h3 {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

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

.repeater-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editor-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.editor-card strong {
  color: var(--leaf-dark);
}

svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

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

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

  .trust-strip,
  .process-grid,
  .contact-cards,
  .repeater-grid,
  .repeater-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .about-section,
  .contact-detail,
  .admin-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .cart-button span {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 118px 18px 18px;
  }

  .hero-content {
    padding-bottom: 24px;
  }

  .hero-actions,
  .section-heading,
  .product-tools,
  .contact-band,
  .form-row,
  .admin-actions,
  .admin-topbar,
  .admin-top-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 18px;
  }

  .product-grid,
  .feature-list,
  .trust-strip,
  .process-grid,
  .contact-cards,
  .repeater-grid,
  .repeater-grid.compact {
    grid-template-columns: 1fr;
  }

  .search-box,
  .product-tools select {
    min-width: 100%;
  }

  .contact-band {
    margin: 0 18px 56px;
    padding: 24px;
  }

  .cart-item,
  .admin-item {
    grid-template-columns: 62px 1fr;
  }

  .qty-control,
  .admin-item-actions {
    grid-column: 2;
  }
}
