:root {
  --bg: #f3efe7;
  --bg-soft: #faf7f2;
  --card: rgba(255,255,255,.92);
  --text: #171515;
  --muted: #6d665d;
  --line: rgba(32, 24, 15, .09);
  --accent: #1f1a17;
  --accent-2: #b6955f;
  --cream: #f3efe7;
  --black: #111111;
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(182,149,95,.08), transparent 28%),
    linear-gradient(180deg, #f5f1ea 0%, #efe9de 100%);
  color: var(--text);
}

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

.hero {
  min-height: 92vh;
  padding: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(182,149,95,.18), transparent 24%),
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.08), transparent 22%),
    linear-gradient(135deg, #0c0b0a 0%, #171311 55%, #2a2118 100%);
  color: #fff;
  overflow: hidden;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: 20px;
  min-height: 44px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff6e8 0%, #cba972 100%);
  color: #111;
  font-weight: 900;
  letter-spacing: -.08em;
  box-shadow: 0 10px 30px rgba(182,149,95,.25);
}

.nav-cta,
.secondary-btn {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 13px 18px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  transition: .2s ease;
}
.nav-cta:hover,
.secondary-btn:hover { background: rgba(255,255,255,.12); }

.hero-grid {
  max-width: 1180px;
  margin: 84px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 36px;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: #c8b18a;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: .88;
  letter-spacing: -.07em;
  max-width: 820px;
}

.hero-text {
  max-width: 650px;
  color: rgba(255,255,255,.76);
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.primary-btn,
.wa-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  min-height: 54px;
  background: linear-gradient(180deg, #231d19 0%, #14110f 100%);
  color: #fff8ef;
  font-weight: 850;
  box-shadow: 0 18px 34px rgba(17, 14, 12, .24);
  transition: .2s ease;
}
.primary-btn:hover,
.wa-btn:hover { transform: translateY(-2px); filter: brightness(1.04); }

.hero-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-card::before {
  content: "obsessedby";
  position: absolute;
  right: -40px;
  bottom: 6px;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -.08em;
  color: rgba(255,255,255,.04);
}
.trust-list { position: relative; display: grid; gap: 14px; }
.trust-list div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(0,0,0,.15);
}
.trust-list strong { display: block; font-size: 22px; margin-bottom: 6px; }
.trust-list span { color: rgba(255,255,255,.68); }

.info-strip {
  max-width: 1180px;
  margin: -62px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}
.info-strip div {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 18px 50px rgba(44,29,8,.08);
  border: 1px solid rgba(182,149,95,.12);
  backdrop-filter: blur(10px);
}
.info-strip span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 850;
}
.info-strip strong { display: block; font-size: 20px; margin-bottom: 8px; }
.info-strip p { margin: 0; color: var(--muted); line-height: 1.4; }

.catalog {
  max-width: 1180px;
  margin: 72px auto 0;
  padding: 0 24px;
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
  margin-bottom: 28px;
}
.section-head h2,
.order-box h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: .95;
  letter-spacing: -.055em;
  margin-bottom: 16px;
}
.section-head p:not(.eyebrow),
.order-box p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(251,247,240,.96) 100%);
  border: 1px solid rgba(182,149,95,.13);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(73,49,16,.07);
}
.product-card.featured {
  border: 1px solid rgba(182,149,95,.28);
  box-shadow: 0 22px 60px rgba(182,149,95,.16);
}
.stock-label {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,251,245,.92);
  color: #4d3c26;
  font-size: 12px;
  font-weight: 850;
  border: 1px solid rgba(182,149,95,.20);
}
.image-wrap {
  min-height: 270px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 52%, #fff 0%, #fbf8f2 44%, #efe8da 100%);
  padding: 34px 20px 22px;
}
.image-wrap img {
  width: 100%;
  max-width: 330px;
  height: 230px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .25s ease;
}
.product-card:hover .image-wrap img { transform: scale(1.04) rotate(-1deg); }
.product-body { padding: 22px; }
.product-body h3 {
  font-size: 26px;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}
.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 10px 0;
  color: var(--muted);
}
.meta-row strong { color: #111; }
.price-row {
  margin: 14px 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
}
.old-price {
  display: block;
  color: #8d857c;
  text-decoration: line-through;
  margin-bottom: 2px;
  font-size: 14px;
}
.price-row strong {
  display: block;
  font-size: 29px;
  letter-spacing: -.045em;
}
.wa-btn { width: 100%; }

.order-section {
  max-width: 1180px;
  margin: 28px auto 84px;
  padding: 0 24px;
}
.order-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #17120e 0%, #251d15 100%);
  color: #fff;
  border: 1px solid rgba(182,149,95,.18);
  box-shadow: 0 25px 70px rgba(41,29,11,.18);
}
.order-box p { color: rgba(255,255,255,.68); max-width: 700px; }

.footer {
  padding: 34px 24px 44px;
  background: #110f0d;
  color: #fff;
  text-align: center;
}
.footer-brand { justify-content: center; margin-bottom: 10px; }
.footer p { margin: 0; color: rgba(255,255,255,.58); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; margin-top: 60px; }
  .hero-card { min-height: auto; }
  .info-strip { grid-template-columns: 1fr; margin-top: -38px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .order-box { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .hero { padding: 18px; min-height: auto; padding-bottom: 90px; }
  .nav { align-items: center; }
  .brand { font-size: 18px; }
  .brand-mark { width: 44px; height: 44px; }
  .nav-cta { padding: 11px 15px; }
  .hero-grid { margin-top: 52px; }
  h1 { font-size: 52px; }
  .hero-text { font-size: 17px; }
  .hero-actions a { width: 100%; }
  .info-strip, .catalog, .order-section { padding-left: 18px; padding-right: 18px; }
  .catalog { margin-top: 72px; }
  .product-grid { grid-template-columns: 1fr; }
  .section-head h2, .order-box h2 { font-size: 38px; }
  .hero-card::before { opacity: .45; font-size: 46px; right: -24px; }
  .order-box { padding: 24px; }
}
