:root {
  --bg: #f6efe3;
  --bg-accent: #ecd6b5;
  --surface: #fff9ef;
  --surface-strong: #fff;
  --ink: #1f1b17;
  --ink-soft: #5e554c;
  --brand: #cc4f1b;
  --brand-strong: #a83e14;
  --ring: rgba(204, 79, 27, 0.3);
  --shadow: 0 16px 34px rgba(64, 41, 20, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 221, 171, 0.65), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(255, 183, 119, 0.4), transparent 35%),
    var(--bg);
  min-height: 100vh;
}

a {
  color: inherit;
}

.site-shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 20px 16px 28px;
}

.hero {
  background: linear-gradient(120deg, #301d12, #5a351d 55%, #7d4726);
  color: #fff7ee;
  border-radius: 24px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 6vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hero p {
  margin: 12px 0 0;
  color: rgba(255, 241, 225, 0.9);
  line-height: 1.45;
  max-width: 56ch;
}

.product-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.product-link {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(64, 41, 20, 0.08);
}

.product-link:hover,
.product-link:focus-visible {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 4px var(--ring), var(--shadow);
}

.product-link img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
}

.product-meta {
  display: grid;
  gap: 6px;
}

.product-meta h2 {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.25;
}

.price {
  color: var(--brand-strong);
  font-weight: 700;
}

.desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.35;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 14px;
  color: #4f4338;
  text-decoration: none;
  font-weight: 600;
}

.item-card {
  background: var(--surface-strong);
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(64, 41, 20, 0.08);
  overflow: hidden;
}

.item-card img {
  width: 100%;
  display: block;
  aspect-ratio: 12 / 7;
  object-fit: cover;
}

.item-body {
  padding: 20px 18px 22px;
  display: grid;
  gap: 12px;
}

.item-body h1 {
  margin: 0;
  font-size: clamp(1.45rem, 5vw, 2.05rem);
  line-height: 1.15;
}

.item-body .price {
  font-size: 1.22rem;
}

.cta {
  margin-top: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--brand), #e56732);
  color: #fff;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(168, 62, 20, 0.3);
}

.cta:hover,
.cta:focus-visible {
  outline: none;
  background: linear-gradient(135deg, var(--brand-strong), #d45523);
}

.footnote {
  margin: 12px 0 0;
  color: #6a6058;
  font-size: 0.88rem;
}

@media (min-width: 720px) {
  .site-shell {
    padding: 36px 24px 44px;
  }

  .hero {
    padding: 34px 30px;
  }

  .product-link {
    grid-template-columns: 132px 1fr;
    gap: 16px;
    padding: 12px;
  }

  .product-link img {
    width: 132px;
    height: 102px;
  }

  .item-body {
    padding: 28px 26px 28px;
  }
}
