:root {
  --bg: #fffdf5;
  --surface: #ffffff;
  --text: #24323f;
  --muted: #596a78;
  --primary: #f8c233;
  --primary-dark: #d39a06;
  --shadow: 0 12px 30px rgba(24, 39, 75, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #fff6d9;
  border-bottom: 1px solid #f5e3a5;
}

.topbar-wrap {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.topbar p {
  margin: 0;
  color: var(--muted);
}

.phone {
  color: var(--primary-dark);
  font-weight: 700;
}

.hero {
  padding: 54px 0 30px;
}

.hero-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  background: #fff0bf;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.hero p {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
}

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

.btn {
  border-radius: 10px;
  padding: 11px 18px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--primary);
  color: #2d2200;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border: 1px solid #f2db86;
  background: #fff9e7;
  color: var(--primary-dark);
}

.hero-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 100%;
}

.section {
  padding: 34px 0 50px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.section-header p {
  margin: 8px 0 0;
  color: var(--muted);
}

.category-title {
  margin: 34px 0 16px;
  font-size: 23px;
}

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

.card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #f7ebc2;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 14px;
}

.card-body h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta {
  padding: 10px 0 65px;
}

.cta-wrap {
  background: linear-gradient(120deg, #f8c233, #ffe08a);
  color: #2d2200;
  border-radius: 22px;
  text-align: center;
  padding: 38px 20px;
}

.cta-wrap h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.cta-wrap p {
  margin: 12px auto 20px;
  max-width: 56ch;
  opacity: 0.95;
}

.cta-wrap .btn-primary {
  display: inline-block;
  background: #fffdf5;
  color: var(--primary-dark);
}

.footer {
  border-top: 1px solid #f5e3a5;
  padding: 22px 0 30px;
  background: #fff;
}

.footer p {
  margin: 6px 0;
  color: var(--muted);
}

.footer strong {
  color: var(--text);
}

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

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

@media (max-width: 620px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .topbar-wrap {
    justify-content: center;
    text-align: center;
  }
}
