:root {
  --bg: #ecebe7;
  --surface: #f3f2ef;
  --text: #121212;
  --muted: #5b5b5b;
  --border: #c9c6be;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  background: #000;
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

.page {
  min-height: 100vh;
  padding: var(--space-4);
}

.frame {
  margin: 0 auto;
  max-width: 1120px;
  background: rgba(243, 242, 239, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  padding: var(--space-5) var(--space-4);
}

.hero {
  margin-bottom: var(--space-5);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 500;
  line-height: 1.08;
  max-width: none;
  width: 100%;
}

.section-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.product-card {
  min-height: 240px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card h3 {
  margin: 0 0 var(--space-2);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 500;
}

.product-card p {
  margin: 0;
  font-size: 1rem;
  color: #2f2f2f;
}

.product-card__footer {
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: #2d2d2d;
  background: #f8f7f5;
}

@media (min-width: 900px) {
  .page {
    padding: var(--space-6);
  }

  .frame {
    padding: var(--space-6);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
