/* VelocityShift — Shop Animations & Polish
   Micro-interactions, skeleton loaders, glass effects, performance polish
   Respects prefers-reduced-motion
*/

/* ===========================
   CSS CUSTOM PROPERTIES (accent-only additions)
   =========================== */
:root {
  --accent-cyan: #00d4ff;
}

/* ===========================
   REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ===========================
   GLOBAL BUTTONS
   =========================== */
.btn {
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  will-change: transform;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: scale(0.97) translateY(0) !important;
  transition-duration: 0.08s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: #d12a3a;
  box-shadow: 0 0 24px rgba(232, 55, 74, 0.5), 0 4px 12px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-outline:hover {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(232, 55, 74, 0.2);
}

/* ===========================
   TYPOGRAPHY POLISH
   =========================== */
/* Rajdhani for headings, Inter for body — loaded via layout */
body {
  font-family: 'Inter', 'DM Sans', system-ui, sans-serif;
}
h1, h2, h3, h4, h5,
.page-header h1,
.product-info h1,
.philosophy-headline,
.categories-title,
.closing-headline {
  font-family: 'Rajdhani', 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===========================
   NAV — SCROLL BLUR + SHADOW
   =========================== */
.shop-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 55, 74, 0.1);
  transition: box-shadow 0.3s ease;
}
.shop-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* Mobile hamburger */
.shop-nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--fg);
}
@media (max-width: 768px) {
  .shop-nav-hamburger { display: flex; align-items: center; }
  .shop-nav-links { display: none; }
  .shop-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(232, 55, 74, 0.15);
    animation: slideDown 0.25s ease-out;
  }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ===========================
   CART BADGE — PULSING GLOW
   =========================== */
.cart-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  padding: 0 5px;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 55, 74, 0); }
  50% { box-shadow: 0 0 8px 2px rgba(232, 55, 74, 0.5); }
}

/* ===========================
   PRODUCT GRID
   =========================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ===========================
   PRODUCT CARD — CORE
   =========================== */
.product-card {
  display: block;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(232, 55, 74, 0.4), 0 0 30px rgba(232, 55, 74, 0.1);
  border-color: rgba(232, 55, 74, 0.4);
}

/* Product card image */
.product-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

/* Sale badge */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}

/* Add to Cart overlay — slides up on hover */
.product-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 60%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 3;
}
.product-card:hover .product-card-overlay {
  transform: translateY(0);
}
.product-card-overlay .btn-primary {
  width: 100%;
  padding: 10px;
  font-size: 13px;
  border-radius: 6px;
}

/* Card body */
.product-card-body {
  padding: 16px;
}
.product-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.product-card-category {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 4px;
}
.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-current {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.price-compare {
  font-size: 13px;
  color: var(--fg-3);
  text-decoration: line-through;
}

/* ===========================
   PRODUCT CARD — SCROLL FADE-IN
   =========================== */
.product-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.product-card:nth-child(1) { transition-delay: 0ms; }
.product-card:nth-child(2) { transition-delay: 60ms; }
.product-card:nth-child(3) { transition-delay: 120ms; }
.product-card:nth-child(4) { transition-delay: 180ms; }
.product-card:nth-child(5) { transition-delay: 240ms; }
.product-card:nth-child(6) { transition-delay: 300ms; }
.product-card:nth-child(7) { transition-delay: 360ms; }
.product-card:nth-child(8) { transition-delay: 420ms; }

/* ===========================
   SKELETON LOADERS
   =========================== */
.skeleton {
  background: var(--bg-3);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.04) 50%,
    transparent 100%
  );
  animation: shimmer 1.5s ease-in-out infinite;
  background-size: 200% 100%;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
}
.skeleton-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  border-radius: 0;
}
.skeleton-body {
  padding: 16px;
}
.skeleton-line {
  height: 14px;
  background: var(--bg-3);
  border-radius: 4px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.skeleton-line.short { width: 60%; }
.skeleton-line.medium { width: 80%; }
.skeleton-line.long { width: 100%; }
.skeleton-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  animation: shimmer 1.5s ease-in-out infinite;
  background-size: 200% 100%;
}

/* ===========================
   TOAST NOTIFICATIONS
   =========================== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(20, 20, 28, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 55, 74, 0.3);
  border-radius: 10px;
  padding: 14px 20px;
  color: var(--fg);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 16px rgba(232, 55, 74, 0.1);
  max-width: 320px;
}
.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Toast variant: success */
.toast.success {
  border-color: rgba(39, 174, 96, 0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 16px rgba(39, 174, 96, 0.15);
}

/* ===========================
   LOADING SPINNER — BRAND
   =========================== */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(232, 55, 74, 0.25);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spinFast 0.6s linear infinite;
}
@keyframes spinFast { to { transform: rotate(360deg); } }

/* ===========================
   PAGE TRANSITION
   =========================== */
body {
  animation: pageFadeIn 0.2s ease-out;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===========================
   IMAGE LAZY LOAD FADE
   =========================== */
/* Native lazy loading handles visibility — no opacity:0 needed.
   Previously set opacity:0 on img[loading="lazy"] but modern browsers
   with native lazy support never added the .loaded class, leaving images invisible. */

/* ===========================
   CART SIDEBAR
   =========================== */
.cart-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  background: rgba(16, 16, 22, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(232, 55, 74, 0.15);
  z-index: 501;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open {
  transform: translateX(0);
}

.cart-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-sidebar-header h2 {
  font-family: 'Rajdhani', 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--fg);
  text-transform: uppercase;
}
.cart-sidebar-close {
  background: none;
  border: none;
  color: var(--fg-2);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.cart-sidebar-close:hover { color: var(--fg); }

.cart-sidebar-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-sidebar-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  animation: itemSlideIn 0.3s ease-out;
}
@keyframes itemSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.cart-sidebar-item.removing {
  animation: itemSlideOut 0.3s ease-out forwards;
}
@keyframes itemSlideOut {
  from { opacity: 1; transform: translateX(0); max-height: 100px; }
  to { opacity: 0; transform: translateX(-30px); max-height: 0; padding: 0; margin: 0; overflow: hidden; }
}
.cart-sidebar-item-img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bg-3);
  flex-shrink: 0;
}
.cart-sidebar-item-info { flex: 1; min-width: 0; }
.cart-sidebar-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-sidebar-item-price {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}
.cart-sidebar-item-qty {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}
.qty-mini-btn {
  width: 24px;
  height: 24px;
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  color: var(--fg);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.1s;
}
.qty-mini-btn:active { transform: scale(0.9); }
.qty-mini-val {
  font-size: 13px;
  color: var(--fg-2);
  min-width: 20px;
  text-align: center;
}
.cart-sidebar-remove {
  background: none;
  border: none;
  color: var(--fg-3);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  align-self: flex-start;
  transition: color 0.2s;
}
.cart-sidebar-remove:hover { color: var(--accent); }

.cart-sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(10, 10, 10, 0.8);
}
.cart-sidebar-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-sidebar-total-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.cart-sidebar-total-amount {
  font-family: 'Rajdhani', 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
}

/* Empty cart state */
.cart-sidebar-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 48px 24px;
  text-align: center;
  color: var(--fg-2);
}
.cart-sidebar-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.4;
}
.cart-sidebar-empty h3 {
  font-family: 'Rajdhani', 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--fg);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.cart-sidebar-empty p {
  font-size: 14px;
  color: var(--fg-3);
  max-width: 220px;
  line-height: 1.6;
}

/* ===========================
   FORM INPUTS — POLISH
   =========================== */
.form-input, .form-select {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--fg);
  padding: 12px 14px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 55, 74, 0.15);
}
.form-input::placeholder { color: var(--fg-3); }
.form-select option { background: var(--bg-2); }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 6px;
  font-weight: 500;
}

/* ===========================
   VARIANT BUTTONS — ANIMATION
   =========================== */
.variant-btn {
  transition: all 0.2s ease;
}
.variant-btn:active {
  transform: scale(0.95);
}

/* ===========================
   QUANTITY SELECTOR — POLISH
   =========================== */
.quantity-btn {
  transition: background 0.15s ease, transform 0.1s ease;
}
.quantity-btn:active {
  transform: scale(0.9);
  background: var(--accent-dim);
}
.quantity-input {
  transition: border-color 0.2s ease;
}

/* ===========================
   SHOP FOOTER — POLISH
   =========================== */
.shop-footer {
  background: #080810;
  border-top: 1px solid rgba(232, 55, 74, 0.08);
  padding: 60px 24px 32px;
}
.shop-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 48px;
}
@media (max-width: 900px) { .shop-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .shop-footer-grid { grid-template-columns: 1fr; } }
.shop-footer-col h4 {
  font-family: 'Rajdhani', 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--fg);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.shop-footer-col a {
  display: block;
  color: var(--fg-3);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.shop-footer-col a:hover { color: var(--accent); }
.shop-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  max-width: 1100px;
  margin: 0 auto;
}
.shop-footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.shop-footer-copy {
  font-size: 12px;
  color: var(--fg-3);
}

/* ===========================
   CUSTOM SCROLLBAR
   =========================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(232, 55, 74, 0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ===========================
   TOP BAR
   =========================== */
.topbar {
  background: linear-gradient(90deg, rgba(232, 55, 74, 0.12) 0%, rgba(232, 55, 74, 0.06) 100%);
  border-bottom: 1px solid rgba(232, 55, 74, 0.1);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 8px 16px;
}

/* ===========================
   SEARCH BAR POLISH
   =========================== */
.search-bar {
  display: flex;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-bar:focus-within {
  border-color: rgba(232, 55, 74, 0.4);
  box-shadow: 0 0 0 3px rgba(232, 55, 74, 0.1);
}
.search-bar input {
  background: transparent;
  border: none;
  color: var(--fg);
  padding: 8px 14px;
  font-size: 13px;
  font-family: 'DM Sans', system-ui, sans-serif;
  min-width: 200px;
  outline: none;
}
.search-bar input::placeholder { color: var(--fg-3); }
.search-bar button {
  background: rgba(232, 55, 74, 0.15);
  border: none;
  border-left: 1px solid rgba(255,255,255,0.06);
  color: var(--accent);
  padding: 8px 14px;
  font-size: 12px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.search-bar button:hover { background: var(--accent); color: #fff; }

/* ===========================
   CATEGORY CARDS
   =========================== */
.categories-grid .category-card {
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.categories-grid .category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ===========================
   BUNDLES & STATS POLISH
   =========================== */
.bundle-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.bundle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-color: rgba(232, 55, 74, 0.3);
}
.about-stat {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ===========================
   ORDER CONFIRMATION ANIMATION
   =========================== */
.order-confirm-box {
  animation: confirmPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes confirmPop {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* ===========================
   CHECKOUT SECTION STEPPED ANIMATION
   =========================== */
.checkout-section {
  transition: border-color 0.2s ease;
}
.checkout-section:hover {
  border-color: rgba(232, 55, 74, 0.2);
}

/* ===========================
   LOADING OVERLAY
   =========================== */
.page-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 0.3s ease 0.5s forwards;
}
@keyframes fadeOut {
  to { opacity: 0; pointer-events: none; }
}
.page-loading-inner {
  text-align: center;
}
.page-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(232, 55, 74, 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spinFast 0.6s linear infinite;
  margin: 0 auto 16px;
}
.page-loading-text {
  font-family: 'Rajdhani', 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--fg-3);
  text-transform: uppercase;
}

/* ===========================
   CHECKBOX / RADIO CUSTOM
   =========================== */
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 10px;
}
.form-check input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  background: var(--bg-2);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-check input[type="checkbox"]:checked {
  border-color: var(--accent);
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===========================
   MANIFESTO SCROLL REVEAL
   =========================== */
.manifesto-inner {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.manifesto-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   MISC POLISH
   =========================== */
a { transition: color 0.2s ease; }