:root {
  color: #18181b;
  background: #f7f7f5;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
}

a {
  color: #7f1d1d;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid #e2e2dd;
  background: #ffffff;
}

.brand {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  color: #18181b;
}

nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

main {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.intro {
  padding: 48px 0 28px;
}

.intro h1 {
  margin: 0;
  max-width: 720px;
  font-size: 42px;
  line-height: 1.1;
}

.intro p {
  max-width: 680px;
  color: #52525b;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding-bottom: 48px;
}

.product-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid #e2e2dd;
  border-radius: 8px;
  background: #ffffff;
}

.product-card h2,
.product-card p {
  margin: 0;
}

.category {
  color: #7f1d1d;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card a {
  margin-top: auto;
  font-weight: 700;
}

.legal {
  max-width: 760px;
  padding: 48px 0;
  line-height: 1.65;
}

.consent {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(420px, calc(100% - 32px));
  padding: 16px;
  border: 1px solid #d4d4d0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgb(0 0 0 / 14%);
}

.consent p {
  margin: 0 0 12px;
}

.consent button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #7f1d1d;
  border-radius: 6px;
  background: #ffffff;
  color: #7f1d1d;
  font-weight: 700;
}

.consent .accept {
  background: #7f1d1d;
  color: #ffffff;
}

footer {
  padding: 24px;
  border-top: 1px solid #e2e2dd;
  color: #52525b;
}

