
:root {
  --bg: #050010;
  --accent: #ff62c6;
  --accent2: #7b5cff;
  --text: #f7f3ff;
  --muted: #c5bddb;
  --border: #2b2140;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #16082a 0, #050010 45%, #020008 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #1a0828;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
}

.wrapper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(5, 0, 16, 0.95), rgba(5, 0, 16, 0.85), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 40%;
  background: radial-gradient(circle at 30% 20%, #ffe6ff 0, #ff62c6 30%, #7b5cff 70%, #050010 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-mark span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1b061f;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transform: scaleX(0.4);
  transition: 0.15s ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  color: #16071f;
}

.btn-ghost {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(123, 92, 255, 0.12);
  color: var(--muted);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.chip-cart-count {
  min-width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  background: #fff;
  color: #1a0828;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.burger {
  display: none;
  border: none;
  background: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
}

.hero {
  padding: 2.4rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.hero-eyebrow span {
  font-size: 0.75rem;
  padding: 0.05rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 98, 198, 0.16);
  color: var(--accent);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.18;
  margin: 0 0 0.75rem;
}

.hero .glow {
  background: linear-gradient(120deg, #ffd8ff, #ff62c6, #7b5cff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 0.96rem;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.hero-tags span {
  font-size: 0.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(12, 6, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.hero-note {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-media {
  position: relative;
}

.hero-card {
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(123, 92, 255, 0.45), rgba(5, 0, 16, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.hero-card-pill {
  font-size: 0.75rem;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(5, 0, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.mini-card {
  border-radius: 14px;
  background: rgba(7, 2, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.7rem;
  font-size: 0.75rem;
}

.bubble-note {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.bubble-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #59e1b0;
}

.announcement {
  margin-bottom: 2.2rem;
}

.announcement-card {
  border-radius: 18px;
  background: rgba(7, 2, 20, 0.95);
  border: 1px solid var(--border);
  padding: 1.1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.25fr) minmax(0, 1fr);
  gap: 1rem;
  font-size: 0.8rem;
}

.announcement-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.announcement-badges span {
  font-size: 0.72rem;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sections & products */
.section {
  margin-bottom: 2.6rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-title p {
  font-size: 0.8rem;
  color: var(--muted);
}

.section-actions {
  font-size: 0.8rem;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.product-card {
  border-radius: 18px;
  background: rgba(7, 2, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.product-image {
  position: relative;
  border-radius: 14px;
  background: radial-gradient(circle at top, #ffbff0, #ff62c6 35%, #7b5cff 70%, #050010 100%);
  padding: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-pill {
  position: absolute;
  left: 0.6rem;
  top: 0.6rem;
  font-size: 0.66rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(5, 0, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.4rem;
  font-size: 0.8rem;
}

.product-price strong {
  font-size: 0.92rem;
}

.product-price small {
  color: var(--muted);
  font-size: 0.72rem;
}

.product-actions {
  display: flex;
  gap: 0.35rem;
}

.btn-mini {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  cursor: pointer;
}

.btn-mini-primary {
  border-color: var(--accent);
  background: rgba(255, 98, 198, 0.14);
  color: #fff;
}

/* Steps, shipping, FAQ basics */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  font-size: 0.8rem;
}

.step-card {
  border-radius: 16px;
  background: rgba(7, 2, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.9rem;
}

.step-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.shipping-layout,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.4rem;
  font-size: 0.8rem;
}

.shipping-note,
.faq-side {
  border-radius: 16px;
  background: rgba(7, 2, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.9rem 1rem;
}

.shipping-list {
  border-radius: 16px;
  background: rgba(7, 2, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.faq-list {
  border-radius: 16px;
  background: rgba(7, 2, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.9rem;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.6rem 0;
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 40;
}

.cart-drawer.open {
  display: flex;
}

.cart-inner {
  width: 100%;
  max-width: 360px;
  background: #050010;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.cart-close-btn {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
}

.cart-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.7rem;
  font-size: 0.8rem;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.cart-note {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.cart-status {
  font-size: 0.76rem;
  margin-top: 0.4rem;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2rem;
  padding: 1.4rem 0 2rem;
  font-size: 0.76rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.7fr));
  gap: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-bottom {
  margin-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shipping-layout,
  .faq-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .announcement-card {
    grid-template-columns: minmax(0, 1fr);
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  header.nav-open .nav-links,
  header.nav-open .nav-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(5, 0, 16, 0.98);
    border-radius: 16px;
    padding: 0.75rem 0.9rem;
    margin-top: 0.6rem;
  }
  header.nav-open .nav {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .shipping-list {
    grid-template-columns: minmax(0, 1fr);
  }
}
