:root {
  --bg: #ffffff;
  --surface: #f7f9fb;
  --line: #e5e7eb;
  --text: #182230;
  --muted: #667085;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --accent: #0f766e;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 7vw;
  border-bottom: 1px solid rgba(229, 231, 235, 0.86);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 2px;
  min-width: 130px;
}

.brand span,
.eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong {
  font-size: 20px;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
}

.nav a {
  white-space: nowrap;
}

.order-link,
.button.primary {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.order-link {
  padding: 11px 16px;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #f7fbff 0%, #eef6f4 100%);
}

.hero-media.has-image {
  background-position: center;
  background-size: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.78) 42%, rgba(255,255,255,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 22px;
  width: min(620px, 86vw);
  padding: 7vw;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions,
.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button,
button,
select {
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

button,
select {
  padding: 0 16px;
}

button {
  cursor: pointer;
}

.button.ghost {
  color: var(--brand);
  border-color: rgba(37, 99, 235, 0.28);
}

.section {
  padding: 72px 7vw;
}

.intro,
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.intro {
  border-bottom: 1px solid var(--line);
}

.intro p,
.section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.category-tabs {
  display: flex;
  gap: 10px;
  padding: 28px 0 18px;
  overflow-x: auto;
}

.category-tabs button {
  flex: 0 0 auto;
}

.category-tabs button.active {
  color: #fff;
  background: var(--text);
  border-color: var(--text);
}

.status {
  padding: 24px 0;
  color: var(--muted);
  font-weight: 700;
}

.status:empty {
  display: none;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.product-desc {
  min-height: 46px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
}

.price {
  color: #c2410c;
  font-size: 22px;
  font-weight: 900;
}

.tag {
  color: var(--accent);
  font-weight: 800;
}

.contact {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.contact-card span {
  color: var(--muted);
  font-weight: 700;
}

.contact-card strong {
  font-size: 22px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 7vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 20px;
  }

  .nav {
    gap: 12px;
    font-size: 14px;
  }

  .nav a:not(.order-link) {
    display: none;
  }

  .hero-content,
  .section {
    padding: 56px 20px;
  }

  .intro,
  .section-heading {
    display: grid;
    align-items: start;
  }

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

@media (max-width: 560px) {
  .brand strong {
    font-size: 17px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.82) 52%, rgba(255,255,255,0.36) 100%);
  }

  .hero p {
    font-size: 17px;
  }

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

  .footer {
    display: grid;
  }
}
