
:root {
  --accent: #e6ded0;
  --brand: #faf6ec;
  --bg: #d9d9d9;
  --text: #3c3a36;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}
.container { max-width: 1080px; margin: 0 auto; padding: 24px; }
header { display: flex; align-items: center; gap: 16px; padding: 16px 0; }
header img.logo { width: 120px; height: auto; }
nav a { margin-right: 16px; text-decoration: none; color: var(--text); font-weight: 600; }
nav a:hover { color: var(--accent); }

.hero {
  padding: 48px 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}
.hero h1 { font-size: 44px; margin: 0 0 12px; color: var(--brand); }
.hero p { font-size: 18px; line-height: 1.5; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid black;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}
.button.primary { background: var(--accent); color: black; }
.button.secondary { background: white; color: var(--brand); border-color: black; }
.button:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.06); }

.section { padding: 40px 0; border-top: 1px dashed rgba(0,0,0,.06); }
.section h2 { margin: 0 0 12px; color: var(--brand); }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: white; border-radius: 16px; padding: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.05); text-align: center;
}
.badge { display: inline-block; padding: 6px 10px; border-radius: 999px; background: #eee; color: #666; font-size: 12px; font-weight: 700; }

ol.how { padding-left: 20px; line-height: 1.7; }
.price-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
footer { text-align: center; padding: 28px 0 48px; color: #777; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
}


/* --- Thumbnails for section headers --- */
.section-thumb { 
  width: 100%; 
  height: auto; 
  border-radius: 12px; 
  margin: 10px 0 18px; 
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  object-fit: cover;
}

/* --- Low inventory badge toggle ---
   Add class "low" to a .card to show the badge.
*/
.badge.low { 
  background: #ffd966; 
  color: #5a4a00; 
  display: none; 
}
.card.low .badge.low { display: inline-block; }


/* Size selector styling */
.size-row { display:flex; align-items:center; gap:10px; margin:10px 0 6px; }
.size-row label { font-weight:600; font-size:14px; }
.size-select { padding:8px 10px; border:1px solid #ccc; border-radius:10px; background:white; }
