:root {
  --bg: #0a0f14;
  --surface: #111822;
  --surface-2: #151d29;
  --accent: #40E0D0;
  --accent-dim: rgba(64, 224, 208, 0.14);
  --text: #e2e8f0;
  --text-dim: #7a8a9a;
  --border: rgba(64, 224, 208, 0.12);
  --border-soft: rgba(226, 232, 240, 0.08);
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 92vw);
  z-index: 500;
  background: rgba(17, 24, 34, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--accent), #1f9e93);
  color: #06110f;
  font-weight: 800;
  font-family: 'Fira Code', monospace;
  box-shadow: 0 0 20px rgba(64, 224, 208, 0.35);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 15px;
}

.brand-name span {
  color: var(--accent);
  font-weight: 500;
}

.brand-name.small { font-size: 14px; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a:hover { color: var(--text); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-account {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 6px 5px 5px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
}

.nav-account-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}

.nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-account-name {
  font-size: 13px;
  font-weight: 600;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-logout {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-logout:hover {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

.account-section {
  max-width: 720px;
}

.account-guard {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--text-dim);
}

.profile-grid {
  display: grid;
  gap: 20px;
}

.profile-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px;
}

.profile-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.profile-card-label {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.profile-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  font-weight: 600;
}

.profile-badge.is-linked {
  background: var(--accent-dim);
  color: var(--accent);
}

.profile-identity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 1.05rem;
  font-weight: 700;
}

.profile-sub {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 2px;
}

.profile-action {
  margin-top: 18px;
  width: 100%;
}

.profile-action-danger {
  border-color: rgba(255, 107, 107, 0.25);
  color: #ff8a8a;
}

.profile-action-danger:hover {
  border-color: #ff6b6b;
  color: #ff6b6b;
}

.profile-logout-row {
  margin-top: 28px;
  text-align: center;
}

.cart-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
}

.cart-trigger:hover {
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(64, 224, 208, 0.3);
  color: var(--accent);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #06110f;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-family: 'Fira Code', monospace;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(64, 224, 208, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 224, 208, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 10%, transparent 75%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(64, 224, 208, 0.16) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 780px; }

.hero-tag {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--accent-dim);
  color: var(--accent);
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(120deg, var(--accent), #8ef3e8 50%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 11px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: #06110f;
  box-shadow: 0 0 0 rgba(64, 224, 208, 0);
}

.btn-primary:hover {
  box-shadow: 0 0 28px rgba(64, 224, 208, 0.55);
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-soft);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full { width: 100%; }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  z-index: 2;
}

.scroll-indicator span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  animation: scrollDown 1.8s ease infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 24px;
}

.section-head { margin-bottom: 48px; text-align: center; }

.section-eyebrow {
  display: block;
  color: var(--accent);
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.auth-gate {
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.06), rgba(17, 24, 34, 0.6));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 36px;
  transition: opacity 0.4s ease, max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
  overflow: hidden;
}

.auth-gate.is-complete {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  border-width: 0;
  pointer-events: none;
}

.auth-gate-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.auth-gate-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.auth-gate-text p {
  color: var(--text-dim);
  font-size: 13.5px;
  max-width: 460px;
  line-height: 1.6;
}

.auth-gate-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.auth-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 11px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
}

.auth-btn:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(64, 224, 208, 0.3);
  color: var(--accent);
}

.auth-btn.is-linked {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
  cursor: default;
  box-shadow: none;
}

.auth-btn-status {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--text-dim);
  padding-left: 10px;
  border-left: 1px solid var(--border-soft);
}

.auth-btn.is-linked .auth-btn-status {
  color: var(--accent);
  border-left-color: rgba(64, 224, 208, 0.3);
}

.product-grid-wrapper {
  position: relative;
}

.product-grid-lock {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: rgba(10, 15, 20, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  opacity: 1;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.product-grid-lock p {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 320px;
}

.product-grid-wrapper.is-unlocked .product-grid-lock {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.product-grid-wrapper:not(.is-unlocked) .product-grid {
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(64, 224, 208, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover::before { opacity: 1; }

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(64, 224, 208, 0.15);
}

.product-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 11px;
  background: var(--surface-2);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.product-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 15, 20, 0.6));
}

.product-category {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-name {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.product-price {
  font-family: 'Fira Code', monospace;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
}

.product-price span {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 400;
}

.add-to-cart {
  padding: 10px 18px;
  border-radius: 9px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.add-to-cart:hover {
  background: var(--accent);
  color: #06110f;
  box-shadow: 0 0 20px rgba(64, 224, 208, 0.45);
}

.add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.skeleton-card {
  height: 320px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface-2) 50%, var(--surface) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease infinite;
  border: 1px solid var(--border-soft);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.state-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
  font-size: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(64, 224, 208, 0.12);
}

.feature-icon {
  font-family: 'Fira Code', monospace;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  opacity: 0.7;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.65;
}

.section-more {
  text-align: center;
  margin-top: 40px;
}

.discord-section {
  padding-top: 0;
  padding-bottom: 0;
}

.discord-card {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.08), var(--surface));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.discord-card-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--accent-dim);
  color: var(--accent);
}

.discord-card-text {
  flex: 1;
  min-width: 240px;
}

.discord-card-text p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
  max-width: 520px;
}

.page-header {
  padding: 160px 24px 40px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.page-header-sub {
  color: var(--text-dim);
  font-size: 14.5px;
  margin-top: 14px;
}

.category-block {
  margin-bottom: 56px;
}

.category-block:last-child {
  margin-bottom: 0;
}

.category-heading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-inner p {
  color: var(--text-dim);
  font-size: 13px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 20, 0.6);
  backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: rgba(17, 24, 34, 0.75);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-left: 1px solid var(--border);
  z-index: 950;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.cart-panel.active { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border-soft);
}

.cart-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.cart-close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
}

.cart-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-dim);
  font-size: 14px;
  text-align: center;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  align-items: center;
}

.cart-item-media {
  width: 56px;
  height: 56px;
  border-radius: 9px;
  background: var(--surface-2);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-family: 'Fira Code', monospace;
  font-size: 12.5px;
  color: var(--accent);
  margin-top: 4px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.qty-btn:hover { border-color: var(--accent); color: var(--accent); }

.qty-value {
  font-family: 'Fira Code', monospace;
  font-size: 12.5px;
  min-width: 16px;
  text-align: center;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.cart-item-remove:hover { color: #ff6b6b; }

.cart-footer {
  padding: 22px 24px 26px;
  border-top: 1px solid var(--border-soft);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 15px;
}

.cart-total span:last-child {
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .section { padding: 80px 20px; }
}
