.home-types {
  padding: 60px 0;
}

.categories-header {
  margin-bottom: 32px;
}

.categories-header h2 {
  font-size: 32px;
  margin: 8px 0;
}

.categories-header .subtitle {
  color: #6b7280;
  margin: 0;
}

.categories-header .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin: 0;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.type-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 180px;
}

.type-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

.type-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.type-card-title {
  font-size: 20px;
  font-weight: 700;
}

.type-card-desc {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.5;
}

.type-card--goods {
  background: linear-gradient(135deg, #ffe9f3, #fdf2ff);
}

.type-card--services {
  background: linear-gradient(135deg, #e4f3ff, #edf5ff);
}

.type-card--clubs {
  background: linear-gradient(135deg, #eef8e7, #f5ffed);
}

.type-card--events {
  background: linear-gradient(135deg, #fff4e5, #fff0f0);
}

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