:root {
  --bg: #f5f2ea;
  --surface: #ffffff;
  --text: #1f2933;
  --muted: #64748b;
  --accent: #2f6f4f;
  --accent-soft: #e5f1ea;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.hero {
  padding: 24px 24px 64px;
  background: linear-gradient(135deg, #fefcf9 0%, #edf4ee 100%);
}

.nav {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 16px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

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

.button {
  display: inline-block;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}

.hero-card,
.contact-card,
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.hero-card {
  padding: 24px;
}

.hero-card ul {
  padding-left: 18px;
  color: var(--muted);
}

main {
  padding: 0 24px 64px;
}

.products,
.contact {
  max-width: 1100px;
  margin: 56px auto 0;
}

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

.slider-wrapper {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 16px;
  align-items: center;
}

.slider-btn {
  border: 0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  font-size: 1.2rem;
}

.slider-track {
  position: relative;
  min-height: 320px;
}

.product-card {
  display: none;
  padding: 20px;
  gap: 20px;
  align-items: center;
}

.product-card.active {
  display: flex;
}

.product-image {
  min-width: 180px;
  height: 180px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
}

.image-one {
  background: linear-gradient(135deg, #dcefe3, #7fb08b);
}

.image-two {
  background: linear-gradient(135deg, #f7e4c7, #d89a4c);
}

.image-three {
  background: linear-gradient(135deg, #d8e1f4, #6f84b8);
}

.product-tag {
  display: inline-block;
  margin: 0 0 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

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

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
}

.contact-card {
  padding: 30px;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

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

  .slider-wrapper {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .product-card.active {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-image {
    width: 100%;
    min-width: 0;
  }
}
