* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at top, rgba(230, 184, 184, 0.18), transparent 32rem),
    linear-gradient(180deg, #080808 0%, #111 55%, #080808 100%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 184, 184, 0.18);
}

.nav-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.nav-btn,
.btn {
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  display: inline-block;
}

.nav-btn {
  color: #111;
  background: linear-gradient(135deg, #f5dada, #b87878);
  padding: 10px 18px;
}

.hero {
  min-height: 84vh;
  display: grid;
  place-items: center;
  padding: 28px 18px 50px;
}

.hero-card {
  width: min(980px, 100%);
  text-align: center;
  padding: 32px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(230, 184, 184, 0.2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.hero-logo {
  width: min(320px, 78vw);
  filter: drop-shadow(0 0 18px rgba(230,184,184,0.25));
}

.eyebrow {
  color: #e6c4c4;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 18px;
}

h1 {
  margin: 12px 0 8px;
  font-size: clamp(3.4rem, 13vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.tagline {
  font-size: clamp(1.25rem, 4.5vw, 2rem);
  max-width: 760px;
  margin: 20px auto;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  padding: 15px 22px;
  font-size: 1rem;
}

.primary {
  color: #111;
  background: linear-gradient(135deg, #f5dada, #c98f8f, #9a6464);
  box-shadow: 0 10px 28px rgba(203,143,143,0.25);
}

.secondary {
  color: #f5dada;
  border: 1px solid rgba(245, 218, 218, 0.45);
  background: rgba(255,255,255,0.04);
}

.payment-note {
  color: #f1cfcf;
  font-weight: 700;
  margin-top: 22px;
}

.section {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 44px 20px;
}

.section h2 {
  font-size: clamp(2rem, 8vw, 4rem);
  margin: 0 0 18px;
}

.intro p,
.order-box p {
  color: #ddd;
  font-size: 1.2rem;
  line-height: 1.55;
  max-width: 850px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.product-card {
  padding: 24px;
  min-height: 150px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(230, 184, 184, 0.18);
}

.product-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.product-card p {
  margin: 0;
  color: #e9caca;
  font-weight: 700;
}

.order-box {
  text-align: center;
  background: rgba(230, 184, 184, 0.07);
  border: 1px solid rgba(230, 184, 184, 0.18);
  border-radius: 28px;
  margin-bottom: 40px;
}

.order-box p {
  margin-left: auto;
  margin-right: auto;
}

footer {
  text-align: center;
  padding: 30px 18px;
  color: #bbb;
  border-top: 1px solid rgba(230, 184, 184, 0.12);
}

@media (max-width: 520px) {
  .topbar {
    padding: 10px 14px;
  }

  .nav-logo {
    width: 50px;
    height: 50px;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-card {
    padding: 24px 14px;
  }

  .btn {
    width: 100%;
    max-width: 330px;
  }
}
