:root {
  --bg: #ffffff;
  --fg: #0a0a0a;
  --muted: #6b6b6b;
  --line: #e5e5e5;
  --accent: #00b25b;
  --black: #0a0a0a;
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  z-index: 50;
}
.nav .logo {
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 18px;
}
.nav .links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  text-transform: lowercase;
}
.nav .links a:hover { opacity: 0.6; }

/* layout */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* hero (editorial) */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.hero .copy {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .eyebrow {
  text-transform: lowercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(44px, 5.5vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-bottom: 32px;
}
.hero p.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 40px;
}
.hero .image {
  background: #f4f4f4;
  background-image: url("https://azari.com/cdn/shop/files/Azari_-_Starter_Pack_-_WebRes_-_F1.webp?v=1755191188");
  background-size: cover;
  background-position: center;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--black);
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  transition: opacity 0.2s ease;
}
.btn:hover { opacity: 0.85; }
.btn.ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--fg);
}

/* editorial sections */
.section {
  padding: 120px 32px;
  border-bottom: 1px solid var(--line);
}
.section h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-bottom: 32px;
}
.section p {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 16px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.three-col .card h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: lowercase;
  margin-bottom: 12px;
}
.three-col .card p {
  font-size: 15px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

/* product page */
.product {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  padding: 64px 32px 120px;
  max-width: var(--max);
  margin: 0 auto;
}
.product .gallery {
  background: #f4f4f4;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product .gallery img { width: 90%; height: auto; }

.product .info { display: flex; flex-direction: column; gap: 24px; }
.product .stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.product .stock .dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}
.product h1 {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  line-height: 0.95;
}
.product .meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 280px;
}
.product .meta .label {
  font-size: 12px;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.product .meta .value {
  font-size: 15px;
  text-transform: lowercase;
}
.product .price {
  font-size: 28px;
  font-weight: 800;
}

.qty-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  margin-top: 8px;
}
.qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  padding: 0 16px;
  height: 56px;
  font-size: 16px;
}
.qty button {
  font-size: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty button:hover { opacity: 0.5; }

.atc {
  width: 100%;
  height: 56px;
  background: var(--black);
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  transition: opacity 0.2s ease;
}
.atc:hover { opacity: 0.85; }

.product .desc {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  line-height: 1.55;
}
.product .desc strong { font-weight: 700; }
.product .desc .muted { color: var(--muted); }

.bullets {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

/* footer */
.footer {
  padding: 48px 32px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

/* mobile */
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .hero .copy { padding: 48px 24px; }
  .hero .image { min-height: 380px; }
  .three-col { grid-template-columns: 1fr; gap: 32px; }
  .product { grid-template-columns: 1fr; gap: 32px; padding: 24px 24px 80px; }
  .section { padding: 64px 24px; }
  .nav { padding: 16px 20px; }
  .nav .links { gap: 16px; font-size: 13px; }
}
