* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff; /* ВСЕ БІЛЕ */
  color: #1f2937;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* 🔥 HERO (тільки тут almond) */
.hero {
  background: #e8dccb; /* almond */
  padding: 60px 0 40px;
  border-bottom: 1px solid #e5e7eb;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: #3e2f1c;
}

.hero p {
  max-width: 700px;
  font-size: 1.05rem;
  color: #5c4a36;
}

/* SECTIONS */
.category-section {
  padding: 50px 0;
}

/* HEADINGS */
.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: 1.9rem;
  margin-bottom: 8px;
  color: #111827;
}

.section-heading p {
  color: #6b7280;
  font-size: 1rem;
}

/* GRID */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.card img {
  height: 220px;
  object-fit: cover;
}

.card h3 {
  padding: 18px 16px 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

/* 📱 RESPONSIVE */

/* планшет */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* мобілка */
@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr; /* 1 в ряд */
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .section-heading h2 {
    font-size: 1.5rem;
  }

  .card img {
    height: 200px;
  }
}