.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-section);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-eyebrow {
  color: var(--color-terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.section-header h2,
.section-title {
  color: var(--color-forest);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.12;
  margin: 0;
}

.section-header p {
  color: rgba(29, 38, 31, 0.72);
  font-size: 1rem;
  line-height: 1.7;
  margin: 10px 0 0;
  max-width: 620px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

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

.btn-primary {
  background: var(--color-forest);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(35, 79, 50, 0.3);
  color: var(--color-forest);
}

.btn-secondary:hover {
  background: rgba(125, 166, 127, 0.13);
}

.btn-commercial {
  background: var(--color-terracotta);
  color: #fff;
}

.card,
.product-card,
.category-card,
.trust-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.badge,
.product-badge {
  align-items: center;
  background: rgba(125, 166, 127, 0.15);
  border-radius: 999px;
  color: var(--color-forest);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 10px;
}

.badge-commercial,
.product-discount-badge {
  background: var(--color-terracotta);
  color: #fff;
}

.responsive-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.product-card:hover {
  border-color: rgba(125, 166, 127, 0.5);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.product-link {
  color: inherit;
  display: block;
  text-decoration: none;
}

.product-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(125, 166, 127, 0.14), rgba(250, 249, 245, 0.9));
  margin: 0;
  overflow: hidden;
  position: relative;
}

.product-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-discount-badge {
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  left: 12px;
  padding: 7px 10px;
  position: absolute;
  top: 12px;
}

.product-body {
  padding: 16px 16px 10px;
}

.product-category {
  color: var(--color-sage);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.product-title {
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 8px;
  min-height: 2.7em;
}

.product-cue {
  color: rgba(29, 38, 31, 0.64);
  font-size: 0.88rem;
  margin: 0 0 12px;
}

.product-meta { min-height: 46px; }
.price,
.price-discounted {
  color: var(--color-terracotta);
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
}
.price-original {
  color: rgba(29, 38, 31, 0.45);
  display: block;
  font-size: 0.82rem;
  text-decoration: line-through;
}

.product-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding: 0 16px 16px;
}

.btn-sm {
  border-radius: var(--radius-md);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  text-decoration: none;
}

.btn-detail {
  align-items: center;
  border: 1px solid var(--color-border);
  color: var(--color-forest);
  flex: 1;
}

.add-cart {
  align-items: center;
  background: var(--color-forest);
  border: 0;
  color: #fff;
  cursor: pointer;
  flex: 1;
}

.promo-strip {
  background: linear-gradient(135deg, rgba(200, 107, 74, 0.13), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(200, 107, 74, 0.22);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

@media (max-width: 720px) {
  :root { --space-section: 52px; }
  .container { width: min(100% - 24px, var(--container)); }
  .section-header { align-items: start; flex-direction: column; }
  .btn { width: 100%; }
  .product-actions { flex-direction: column; }
  .btn-sm { width: 100%; }
}
