:root {
  color-scheme: dark;
  --bg: #111111;
  --panel: #1a1a1a;
  --panel-strong: #23201d;
  --line: #3b342d;
  --text: #fff8ef;
  --muted: #b9afa4;
  --orange: #ff8a1f;
  --orange-dark: #2b1400;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 138, 31, 0.22), transparent 28rem),
    linear-gradient(135deg, #111111 0%, #191613 52%, #0f0f0f 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.products-page {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 18px 56px;
}

.products-hero {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 28px;
}

.eyebrow,
.product-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.products-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #e4d8cb;
  font-size: 1.04rem;
  line-height: 1.55;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.94);
  box-shadow: var(--shadow);
}

.product-card-featured {
  border-color: rgba(255, 138, 31, 0.48);
}

.product-visual {
  display: grid;
  place-items: center;
  min-height: 178px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.1), transparent),
    #f8f5ef;
}

.product-visual img {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: contain;
}

.product-copy {
  padding: 20px;
}

.product-copy h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.product-copy p:last-child {
  margin: 10px 0 0;
  color: #e1d8cf;
  line-height: 1.5;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0 20px 20px;
  border: 1px solid rgba(255, 138, 31, 0.8);
  border-radius: 8px;
  background: var(--orange);
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: none;
}

.product-link:hover {
  background: #ffa64f;
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .products-page {
    padding: 28px 10px 42px;
  }

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

  .product-card {
    min-height: 0;
  }
}
