:root {
  --ink: #172026;
  --muted: #61707c;
  --line: #dde5ea;
  --paper: #fbfcf7;
  --panel: #ffffff;
  --accent: #0f766e;
  --accent-dark: #0b514c;
  --gold: #f6b73c;
  --rose: #e85d75;
  --blue: #2b6cb0;
  --shadow: 0 18px 60px rgba(23, 32, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(221, 229, 234, 0.85);
  background: rgba(251, 252, 247, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-button,
.primary-button,
.secondary-button,
.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 750;
}

.nav-button {
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
}

.hero,
.featured-section,
.products-section,
.disclosure,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 54px 0 30px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5.2vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
}

.hero-text {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button {
  padding: 0 20px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.22);
}

.secondary-button {
  padding: 0 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: min(56vw, 520px);
  min-height: 360px;
  object-fit: cover;
}

.stats-bar {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stats-bar span {
  min-height: 62px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  backdrop-filter: blur(12px);
}

.stats-bar strong {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
}

.featured-section,
.products-section {
  padding: 58px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

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

.feature,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 26px rgba(23, 32, 38, 0.06);
}

.feature {
  padding: 24px;
}

.feature span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--rose);
  font-weight: 800;
}

.feature p,
.product-card p,
.disclosure p {
  color: var(--muted);
  line-height: 1.65;
}

.products-heading {
  align-items: end;
}

.search-box {
  display: grid;
  gap: 8px;
  min-width: min(100%, 340px);
}

.search-box label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.search-box input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.category-tabs button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #eef4f3;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

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

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.rating {
  color: #9a6500;
  font-weight: 800;
}

.price {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 850;
}

.product-link {
  width: 100%;
  background: var(--ink);
  color: #fff;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.disclosure {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 48px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--accent-dark);
  font-weight: 750;
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-actions {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .disclosure {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

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

  .section-heading,
  .products-heading {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .hero,
  .featured-section,
  .products-section,
  .disclosure,
  .footer,
  .nav {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

  .hero-panel img {
    height: 340px;
    min-height: 0;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

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

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
