:root {
  --bg: #06030a;
  --shell: #0c0715;
  --glass: rgba(126, 26, 255, 0.14);
  --glass-strong: rgba(146, 60, 255, 0.22);
  --border: rgba(195, 120, 255, 0.28);
  --text: #f7f2ff;
  --muted: #cab8e6;
  --primary: #a855f7;
  --secondary: #6d28d9;
  --accent: #d8b4fe;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(126, 34, 206, 0.35), transparent 25%),
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.22), transparent 30%),
    var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
}

.topbar {
  background: rgba(8, 4, 14, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(188, 128, 255, 0.18);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-brand,
.footer-brand {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #8b5cf6, #4c1d95);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.7);
}

.nav-link {
  color: var(--muted) !important;
}

.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(168, 85, 247, 0.12);
  color: var(--text);
  display: inline-grid;
  place-items: center;
}

.badge-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 21px;
  height: 21px;
  border-radius: 999px;
  background: #a855f7;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0 4px;
}

.glass-card,
.product-card,
.bundle-card,
.review-card,
.category-card,
.cta-card,
.hero-showcase {
  background: linear-gradient(135deg, rgba(146, 60, 255, 0.16), rgba(15, 8, 24, 0.88));
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.hero-section {
  padding: 6rem 0 4rem;
}

.eyebrow {
  display: inline-block;
  color: #e9d5ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.06;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-copy p,
.section-heading p,
.bundle-card p,
.review-card p,
.cta-card p,
.category-card p,
.product-card .product-meta {
  color: var(--muted);
}

.btn-primary,
.btn-outline-light,
.btn-light {
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #5b21b6);
  border: none;
  box-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(168, 85, 247, 0.75);
}

.metric-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  min-width: 160px;
}

.metric-card strong {
  display: block;
  font-size: 1.4rem;
}

.hero-showcase {
  border-radius: 28px;
  padding: 1rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.showcase-item {
  min-height: 150px;
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(196, 141, 255, 0.22);
}

.showcase-item.large {
  grid-column: span 2;
  min-height: 220px;
}

.label,
.bundle-badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.2);
  color: #f3e8ff;
  font-size: 0.72rem;
  margin-bottom: 0.8rem;
}

.section-heading h2 {
  margin-bottom: 0;
  font-weight: 800;
}

.category-card {
  border-radius: 20px;
  padding: 1.25rem;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover,
.product-card:hover,
.review-card:hover,
.bundle-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 188, 255, 0.82);
}

.category-card i,
.review-card .stars {
  color: #d8b4fe;
}

.category-card i {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.product-toolbar {
  border-radius: 20px;
}

.search-wrap {
  position: relative;
}

.search-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.search-wrap input {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border: 1px solid var(--border);
  padding-left: 2.6rem;
  height: 48px;
}

.search-wrap input::placeholder {
  color: #d1bee8;
}

.filters .filter-chip {
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.14);
  border: 1px solid rgba(198, 150, 255, 0.28);
  color: var(--text);
  padding: 0.55rem 0.95rem;
}

.filters .filter-chip.active {
  background: linear-gradient(135deg, #8b5cf6, #5b21b6);
}

.product-card {
  border-radius: 22px;
  padding: 1rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-thumb {
  height: 170px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(167, 93, 255, 0.45), rgba(17, 10, 31, 0.9));
  margin-bottom: 0.9rem;
  position: relative;
}

.product-thumb i {
  font-size: 3rem;
  color: #f3e8ff;
}

.product-chip,
.product-ribbon {
  position: absolute;
  top: 12px;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-chip {
  left: 12px;
  background: rgba(16, 16, 30, 0.68);
}

.product-ribbon {
  right: 12px;
  background: rgba(168, 85, 247, 0.88);
}

.product-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.8rem;
}

.product-title {
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
}

.product-meta {
  font-size: 0.88rem;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0.6rem 0;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-actions .btn {
  border-radius: 999px;
  font-size: 0.85rem;
  padding: 0.55rem 0.8rem;
}
.sticky-buy-bar {
  position: sticky;
  bottom: 0;
  z-index: 5;
  background: linear-gradient(180deg, rgba(17, 8, 28, 0.08), rgba(17, 8, 28, 0.92));
  padding-top: 0.6rem;
  backdrop-filter: blur(12px);
}
.heart-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  color: #f9b8ff;
}

.heart-btn.active {
  background: rgba(255, 0, 119, 0.15);
  border-color: rgba(255, 0, 119, 0.4);
}

.best-seller-card {
  border-radius: 22px;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(154, 74, 255, 0.18), rgba(0,0,0,0.36));
  border: 1px solid rgba(192, 135, 255, 0.24);
}

.bundle-card,
.review-card,
.cta-card {
  border-radius: 24px;
  padding: 1.5rem;
}

.faq-accordion .accordion-item {
  margin-bottom: 1rem;
  border-radius: 18px;
  overflow: hidden;
}

.accordion-button {
  background: transparent !important;
  color: var(--text) !important;
  box-shadow: none !important;
  font-weight: 700;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  z-index: 1050;
}

.glass-modal {
  background: linear-gradient(135deg, rgba(18, 5, 32, 0.96), rgba(33, 4, 56, 0.96)) !important;
  border: 1px solid rgba(170, 107, 255, 0.6);
  color: var(--text);
}

.modal-body img {
  border-radius: 18px;
  border: 1px solid rgba(200, 150, 255, 0.3);
}

.footer {
  border-top: 1px solid rgba(198, 150, 255, 0.24);
  background: rgba(9, 5, 15, 0.6);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 4rem;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-item.large {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .hero-copy h1 {
    font-size: 2.25rem;
  }

  .product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
