* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #0a001a, #02000a);
  color: #fff;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 20px;
  background: #050014;
  display: flex;
  justify-content: space-between;
  z-index: 200;
}

.menu-btn { font-size: 22px; cursor: pointer; }

/* MENU */
.side-menu {
  position: fixed;
  right: -220px;
  top: 0;
  width: 200px;
  height: 100%;
  background: #060014;
  padding: 80px 20px;
  transition: 0.3s;
  z-index: 300;
}

.side-menu a {
  display: block;
  margin-bottom: 20px;
  color: #aaa;
  text-decoration: none;
}

/* HERO */
.hero {
  margin-top: 80px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.typing {
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 900;
  background: linear-gradient(90deg,#00eaff,#d400ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.typing::after {
  content: "|";
  color: #eaffff;
  margin-left: 6px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,50% {opacity:1;}
  51%,100% {opacity:0;}
}

/* SEARCH */
.search-wrap {
  max-width: 820px;
  margin: 14px auto;
  padding: 0 16px;
}

.search-wrap input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 20px;
  border: none;
  background: #1a1233;
  color: #fff;
}

.search-results {
  display: none;
  background: #120b2a;
  border-radius: 14px;
  margin-top: 8px;
  overflow: hidden;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
}

.search-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.search-item:hover {
  background: rgba(255,255,255,0.06);
}

/* DIVIDER */
.divider {
  height: 4px;
  margin: 40px auto;
  width: 240px;
  background: linear-gradient(90deg,#00eaff,#d400ff);
  border-radius: 10px;
}

@media (min-width: 768px) {
  .divider { width: 60vw; max-width: 900px; }
}

/* SECTIONS */
.section {
  padding: 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.cards {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .cards { grid-template-columns: repeat(2,1fr); }
}

.card {
  background: rgba(20,10,50,0.8);
  padding: 20px;
  border-radius: 20px;
}

.product-img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* 🔹 ЦЕНА — СДВИНУТА ЧУТЬ ВВЕРХ */
.price {
  font-size: 22px;
  color: #9b7cff;
  margin-top: -15px; /* ← ВОТ ЭТО */
}

.buy {
  padding: 12px 20px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(90deg,#00eaff,#d400ff);
  font-weight: bold;
  cursor: pointer;
}

/* FAQ */
.faq-item { margin-bottom: 10px; }

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  display: none;
  color: #bbb;
}

/* FEATURES */
.features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-left: 22px; /* ← СДВИГ ВСЕХ 3 СТРОК ВПРАВО */
}

.features li {
  padding-left: 26px;
  margin-bottom: 8px;
  position: relative;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00eaff;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  opacity: 0.6;
}

/* SEARCH BORDER */
#searchInput {
  border: 2px solid rgba(255, 255, 255, 0.25);
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

#searchInput:focus {
  border-color: #00eaff;
  box-shadow: 0 0 10px rgba(0, 234, 255, 0.6);
}

.buy-form { display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-top:10px; }
.buy-email { flex:1; min-width:180px; padding:10px; border-radius:10px; border:1px solid #ccc; }
