
:root {
  --bg:#f5f5ff;
  --bg-card:#ffffff;
  --accent:#ff3d1f;
  --accent-soft:#ffe2d6;
  --text:#111827;
  --muted:#6b7280;
  --shadow:0 14px 40px rgba(15,23,42,0.12);
  --radius-card:24px;
}
* { box-sizing:border-box; margin:0; padding:0; }
body {
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { text-decoration:none; color:inherit; }
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(148,163,184,0.4);
}
.nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:#111827;
}
nav a {
  margin-left: 18px;
  font-size: 14px;
  font-weight: 600;
  color:#4b5563;
}
nav a:hover { color: var(--accent); }
.nav-right {
  display:flex;
  align-items:center;
  gap:14px;
}
.cart-link {
  position:relative;
  font-size:14px;
  font-weight:600;
}
.cart-count {
  position:absolute;
  top:-8px;
  right:-12px;
  background:var(--accent);
  color:#fff;
  font-size:11px;
  border-radius:999px;
  padding:1px 6px;
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  font-weight:600;
  font-size:14px;
  transition:0.2s;
}
.btn-primary {
  background:var(--accent);
  color:#fff;
  box-shadow:0 14px 30px rgba(239,68,68,0.45);
}
.btn-primary:hover {
  background:#ff2205;
}
.btn-ghost {
  background:transparent;
  border:1px solid rgba(148,163,184,0.7);
  color:#374151;
}
.btn-ghost:hover {
  background:#e5e7eb;
}

main {}

.hero {
  max-width:1220px;
  margin: 0 auto;
  padding: 26px 20px 40px;
  display:grid;
  grid-template-columns:minmax(0,3.2fr) minmax(0,3.8fr);
  gap:28px;
  align-items:center;
}
.hero-text h1 {
  font-size:34px;
  line-height:1.05;
  margin-bottom:10px;
}
.hero-text p {
  font-size:16px;
  color:var(--muted);
  margin-bottom:12px;
  max-width:480px;
}
.hero-pill {
  font-size:11px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:#6366f1;
  margin-bottom:8px;
}
.hero-note {
  font-size:13px;
  color:var(--muted);
  max-width:470px;
}
.hero-cta {
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero-image {
  border-radius:30px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.hero-image img { width:100%; display:block; }

.section {
  max-width:1220px;
  margin:0 auto;
  padding: 18px 20px 40px;
}
.section-header {
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-end;
  margin-bottom:20px;
}
.section-title {
  font-size:26px;
}
.section-sub {
  font-size:14px;
  color:var(--muted);
  max-width:460px;
}
.chips {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.chip {
  padding:6px 12px;
  border-radius:999px;
  background:#eef2ff;
  font-size:13px;
  color:#4f46e5;
}

.cards-row {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.card {
  background:var(--bg-card);
  border-radius:var(--radius-card);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.card-top img {
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}
.card-body {
  padding:16px 18px 18px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.card-body h3 {
  font-size:18px;
  margin:0;
}
.card-body p {
  font-size:14px;
  color:var(--muted);
  margin:0;
}
.card-footer {
  margin-top:8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.price {
  font-weight:700;
  font-size:18px;
  color:var(--accent);
}

.info-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
}
.info-box {
  background:#ffffff;
  border-radius:18px;
  padding:16px 16px 18px;
  box-shadow:0 10px 26px rgba(15,23,42,0.08);
  font-size:14px;
  color:var(--muted);
}
.info-box h3 {
  margin:0 0 6px;
  font-size:16px;
  color:var(--text);
}

.faq {
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(0,2fr);
  gap:18px;
}
.faq-item {
  background:#ffffff;
  border-radius:16px;
  border:1px solid rgba(148,163,184,0.5);
  margin-bottom:10px;
  overflow:hidden;
}
.faq-q {
  padding:10px 14px;
  cursor:pointer;
  font-size:14px;
  font-weight:600;
  background:#ffffff;
}
.faq-a {
  padding:0 14px 12px;
  font-size:14px;
  color:var(--muted);
  display:none;
}
.faq-item.active .faq-a { display:block; background:#f9fafb; }

.contacts {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.contact-card {
  background:#ffffff;
  border-radius:18px;
  padding:16px 18px;
  box-shadow:0 10px 26px rgba(15,23,42,0.06);
  font-size:14px;
  color:var(--muted);
}
.contact-card h3 { margin:0 0 6px; font-size:16px; color:var(--text); }
.form-field {
  width:100%;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(156,163,175,0.9);
  font-size:13px;
}
textarea.form-field {
  border-radius:14px;
  resize:vertical;
}

.cart-page {
  max-width:800px;
  margin:0 auto;
  padding:24px 20px 40px;
}
.cart-list {
  margin-top:16px;
}
.cart-item {
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#fff;
  padding:10px 12px;
  border-radius:12px;
  box-shadow:0 4px 14px rgba(15,23,42,0.06);
  margin-bottom:10px;
  font-size:14px;
}
.cart-item-title { font-weight:600; }
.cart-summary {
  margin-top:16px;
  font-size:15px;
  font-weight:600;
}
.cart-empty {
  margin-top:20px;
  font-size:14px;
  color:var(--muted);
}

footer {
  background:#111827;
  color:#9ca3af;
  padding:16px 20px 20px;
}
.footer-inner {
  max-width:1220px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:12px;
}

@media (max-width:900px) {
  .hero {
    grid-template-columns:1fr;
  }
  .faq {
    grid-template-columns:1fr;
  }
  nav a { margin-left:10px; font-size:12px; }
}
