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

:root {
  --bg: #09060a;
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.11);
  --text: #fff7fb;
  --muted: #c9aeba;
  --pink: #ff4f93;
  --deep: #5c1233;
  --gold: #f5c77e;
  --border: rgba(255, 255, 255, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 147, 0.24), transparent 35%),
    radial-gradient(circle at right, rgba(92, 18, 51, 0.45), transparent 42%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 6, 10, 0.96);
  backdrop-filter: blur(16px);
}

.age-gate.hidden {
  display: none;
}

.age-card {
  width: min(520px, 100%);
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  text-align: center;
}

.age-card h1 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 8vw, 72px);
  margin: 8px 0 16px;
}

.age-card p {
  color: var(--muted);
  line-height: 1.7;
}

.age-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

.age-actions button,
.product button,
.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: .25s;
}

.age-actions button,
.btn.primary,
.product button {
  background: linear-gradient(135deg, var(--pink), #b5155f);
  color: white;
  box-shadow: 0 16px 36px rgba(255, 79, 147, .28);
}

.age-actions a,
.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,.05);
}

button:hover,
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.hero {
  min-height: 92vh;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 140px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,79,147,.35), rgba(245,199,126,.14));
  filter: blur(16px);
  opacity: .8;
}

.nav {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.5px;
}

.logo span {
  color: var(--pink);
  margin-left: 5px;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.hero-content {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 120px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 800;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 9vw, 112px);
  line-height: .9;
  max-width: 850px;
  margin: 18px 0 24px;
}

.hero-text {
  max-width: 610px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.notice {
  width: min(1180px, calc(100% - 32px));
  margin: -48px auto 48px;
  background: rgba(245, 199, 126, .1);
  border: 1px solid rgba(245, 199, 126, .25);
  color: #ffe8bc;
  border-radius: 20px;
  padding: 18px 20px;
  position: relative;
  z-index: 3;
  line-height: 1.6;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-title {
  margin-bottom: 28px;
}

.section-title h2,
.order-card h2 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 8px;
}

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

.product,
.order-card,
.faq-grid > div {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.product-img {
  height: 280px;
  background-size: cover;
  background-position: center;
}

.img-1 {
  background:
    linear-gradient(145deg, rgba(0,0,0,.05), rgba(0,0,0,.6)),
    radial-gradient(circle at 50% 20%, #513044, #130911 70%);
}

.img-2 {
  background:
    linear-gradient(145deg, rgba(0,0,0,.05), rgba(0,0,0,.6)),
    radial-gradient(circle at 50% 20%, #6b203f, #130911 70%);
}

.img-3 {
  background:
    linear-gradient(145deg, rgba(0,0,0,.05), rgba(0,0,0,.6)),
    radial-gradient(circle at 50% 20%, #8d3459, #130911 70%);
}

.product-body {
  padding: 22px;
}

.product h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.product p,
.order-card p,
.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.price {
  color: var(--gold);
  font-weight: 900;
  margin: 18px 0;
}

.product button {
  width: 100%;
}

.order-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  padding: 34px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: white;
  padding: 14px 15px;
  outline: none;
}

select option {
  color: #111;
}

textarea {
  resize: vertical;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check input {
  width: auto;
}

.form-status {
  color: var(--gold);
  font-weight: 700;
}

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

.faq-grid > div {
  padding: 24px;
}

.faq h3 {
  margin-bottom: 10px;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .hero-content {
    padding-top: 76px;
  }

  .products,
  .order-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .product-img {
    height: 220px;
  }
}
