/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Bricolage Grotesque", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
ul {
  list-style: none;
}

:root {
  --green: #236135;
  --green-bg: #e8f0e0;
  --green-pale: #f0f5ea;
  --orange: #e8671a;
  --dark: #1a1a1a;
  --muted: #6b7280;
  --white: #ffffff;
  --radius: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.center {
  text-align: center;
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: #fff3ec;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-label.center {
  display: block;
  text-align: center;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0.7rem;
}
.section-title.center {
  text-align: center;
}
.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.section-sub.center {
  text-align: center;
}
.link-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
  white-space: nowrap;
  align-self: flex-end;
  padding-bottom: 0.4rem;
}
.link-more:hover {
  gap: 0.6rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cart badge */
.nav-cart-wrap { position: relative; display: inline-flex; }
.cart-badge {
  position: absolute;
  top: -3px; right: -3px;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge.show { display: flex; }
