:root {
  --primary: #254b43;
  --secondary: #d68d60;
  --primary-dark: #1c3933;
  --secondary-dark: #bf7950;
  --bg-light: #f7f4ef;
  --white: #ffffff;
  --text: #1f2a28;
  --muted: #6b7280;
  --border: rgba(37, 75, 67, 0.10);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --transition: all 0.3s ease;
}

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

.page-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-header .tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(214, 141, 96, 0.12);
  color: var(--secondary-dark);
  font-weight: 600;
  font-size: var(--type-eyebrow, 14px);
  margin-bottom: var(--space-heading-gap, 16px);
}

.page-header h1 {
  font-size: var(--type-page-hero, 42px);
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: var(--space-heading-gap, 16px);
}

.page-header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: var(--type-body, 16px);
  color: var(--muted);
}

.category-section {
  margin-bottom: 60px;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.category-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.category-badge {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.category-title {
  font-size: var(--type-section, 32px);
  color: var(--primary);
  margin: 0;
}

.category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(37,75,67,0.2), rgba(214,141,96,0.25));
  min-width: 120px;
}
