:root {
  --bg: #f7f5f1;
  --card: #ffffff;
  --text: #191919;
  --muted: #66615c;
  --accent: #e21b2d;
  --accent-dark: #b91422;
  --soft-accent: #fff1f2;
  --border: #ece4d8;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: radial-gradient(circle at top, #fff7e8 0, var(--bg) 40%, #f1eee8 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.45;
}

a { color: inherit; }

.page {
  width: min(940px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 60px;
}

.hero {
  background: linear-gradient(135deg, #161616 0%, #2c2c2c 100%);
  color: white;
  border-radius: 28px;
  padding: 34px 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero:after {
  content: "";
  width: 210px;
  height: 210px;
  background: rgba(226, 27, 45, 0.25);
  border-radius: 50%;
  position: absolute;
  right: -70px;
  top: -70px;
}

.badge {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 18px 0 10px;
  font-size: clamp(34px, 7vw, 62px);
  line-height: 0.98;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.primary-cta, .card a, .link-list a, .category {
  text-decoration: none;
}

.primary-cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.primary-cta:hover { background: var(--accent-dark); }

.notice {
  margin-top: 18px;
  background: #fff8df;
  border: 1px solid #f0df9d;
  color: #4c3b00;
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 14px;
}

.section {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.section-header { margin-bottom: 16px; }

.section h2 {
  margin: 0 0 4px;
  font-size: 24px;
}

.section p { color: var(--muted); }

.section-header p { margin: 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.card.featured { border-color: rgba(226, 27, 45, 0.32); }

.emoji {
  font-size: 34px;
  margin-bottom: 6px;
}

.card-img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  margin-bottom: 10px;
  object-fit: cover;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0 0 16px;
  font-size: 14px;
}

.option-buttons {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.option-buttons a {
  display: block;
  background: var(--accent);
  color: white;
  text-align: center;
  font-weight: 800;
  padding: 11px 10px;
  border-radius: 12px;
  font-size: 14px;
}

.option-buttons a:nth-child(n+2) {
  background: var(--soft-accent);
  color: var(--accent);
  border: 1px solid rgba(226, 27, 45, 0.22);
}

.option-buttons a:hover {
  background: var(--accent-dark);
  color: white;
}

.option-buttons a.primary-option {
  background: #2563eb;
  color: white;
}

.option-buttons a.primary-option:hover {
  background: #1d4ed8;
}

.option-buttons a.secondary-option {
  background: #16a34a; /* green */
  color: white;
}

.option-buttons a.secondary-option:hover {
  background: #15803d; /* darker green on hover */
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.link-list a:hover, .category:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.link-list span { font-weight: 800; }

.link-list small {
  color: var(--muted);
  text-align: right;
}

.link-list.compact a {
  display: block;
  font-weight: 750;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.category {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  font-weight: 800;
  text-align: center;
}

.category-section { padding-top: 18px; }

.disclosure {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  max-width: 680px;
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 20px, 640px);
    padding-top: 12px;
  }

  .hero {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .hero h1 { font-size: 42px; }

  .product-grid, .category-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 18px;
    border-radius: 20px;
  }

  .link-list a { display: block; }

  .link-list small {
    display: block;
    text-align: left;
    margin-top: 4px;
  }
}
