:root {
  --primary-dark: #252a2b;
  --primary-teal: #6edad5;
  --accent-green: #08a88a;
  --accent-yellow: #fcc700;
  --white: #ffffff;

  /* Neutrals */
  --bg: #ffffff;
  --bg-soft: #f7faf9;
  --line: rgba(37,42,43,.12);
  --text-muted: rgba(37,42,43,.70);

  /* Radius + spacing */
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;

  /* Subtle shadow */
  --shadow-sm: 0 6px 14px rgba(0,0,0,.06);
  --shadow-xs: 0 2px 8px rgba(0,0,0,.04);

  /* Layout */
  --container: 1160px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--primary-dark);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}
a:hover { color: var(--accent-green); }

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.5px;
}

h1 { font-size: 40px; line-height: 1.15; }
h2 { font-size: 28px; line-height: 1.25; }
h3 { font-size: 18px; line-height: 1.3; }

p { margin: 0; }
img { display:block; max-width:100%; }

.small {
  font-size: 13px;
  color: var(--text-muted);
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 22px;
}

.hr {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

/* NAV */
.nav {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0 18px;
}

.nav .brand {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.nav-links {
  display:flex;
  align-items:center;
  gap: 14px;
}

/* Buttons — clean like ufeelgreat */
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .08s ease, filter .12s ease, box-shadow .12s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(.99);
  box-shadow: var(--shadow-xs);
}

.btn-primary {
  background: var(--accent-yellow);
  color: var(--primary-dark);
}

.btn-secondary {
  background: var(--accent-green);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--primary-dark);
}

/* Cards — subtle, clean */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: none;
}

.card-soft {
  background: var(--bg-soft);
  border: 1px solid rgba(8,168,138,.14);
  border-radius: var(--radius-lg);
}

/* Badge / Pill */
.badge {
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(110,218,213,.18);
  border: 1px solid rgba(110,218,213,.22);
  font-weight: 800;
  font-size: 12.5px;
}

.pill-row {
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  font-weight: 800;
  font-size: 13px;
}

/* Grid */
.grid {
  display:grid;
  gap: 16px;
}

.grid-products {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Product card */
.product-card {
  display:flex;
  flex-direction:column;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  transition: box-shadow .15s ease, transform .12s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.product-img {
  height: 180px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(37,42,43,.08);
  background: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.product-meta {
  display:flex;
  flex-direction:column;
  gap: 6px;
}

.product-actions {
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Section headings */
.section-title {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.section-title p {
  max-width: 760px;
  color: var(--text-muted);
}

/* Responsive type */
@media(max-width: 600px){
  h1 { font-size: 32px; }
  .container { padding: 22px 16px; }
}
