/**
 * ============================================================
 * TOOLVEDA — COMPLETE DESIGN SYSTEM
 * assets/css/style.css
 *
 * Architecture (top → bottom):
 *   1.  CSS Custom Properties (design tokens)
 *   2.  Typography scale
 *   3.  Layout utilities
 *   4.  Form elements
 *   5.  Badges & tags
 *   6.  Star ratings
 *   7.  Cards (product, bundle, blog, portfolio, category)
 *   8.  Hero section
 *   9.  Section shells
 *  10.  Homepage sections (how-it-works, categories, testimonials, FAQ)
 *  11.  Shop page
 *  12.  Product detail page
 *  13.  Bundles page
 *  14.  Free tools page
 *  15.  Checkout page (3-step wizard)
 *  16.  Order confirmation page
 *  17.  My Account page
 *  18.  Blog pages
 *  19.  Portfolio page
 *  20.  Compare pages
 *  21.  About, Contact, Guarantee pages
 *  22.  Admin panel
 *  23.  Modals & overlays
 *  24.  Animations & keyframes
 *  25.  Utility helpers
 *  26.  Print styles
 *  27.  Responsive overrides (768px, 1024px, 1200px)
 * ============================================================
 */

/* ════════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES
════════════════════════════════════════════════════════════ */
:root {
  /* Brand colours */
  --black:        #0A0A0A;
  --black-soft:   #111111;
  --black-card:   #141414;
  --black-border: rgba(201, 168, 76, 0.12);
  --gold:         #C9A84C;
  --gold-light:   #F0D080;
  --gold-pale:    rgba(201, 168, 76, 0.08);
  --gold-glow:    rgba(201, 168, 76, 0.25);
  --white:        #F5F5F5;
  --white-dim:    #BBBBBB;
  --muted:        #777777;
  --muted-light:  #999999;
  --danger:       #EF4444;
  --success:      #22C55E;
  --warning:      #F59E0B;
  --info:         #3B82F6;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --size-xs:      0.75rem;    /* 12px */
  --size-sm:      0.875rem;   /* 14px */
  --size-base:    1rem;       /* 16px */
  --size-md:      1.125rem;   /* 18px */
  --size-lg:      1.25rem;    /* 20px */
  --size-xl:      1.5rem;     /* 24px */
  --size-2xl:     1.875rem;   /* 30px */
  --size-3xl:     2.25rem;    /* 36px */
  --size-4xl:     3rem;       /* 48px */
  --size-5xl:     3.75rem;    /* 60px */

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;

  /* Border radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 20px rgba(201,168,76,0.25);
  --shadow-gold-lg: 0 0 40px rgba(201,168,76,0.35);

  /* Transitions */
  --transition:       all 0.3s ease;
  --transition-fast:  all 0.15s ease;
  --transition-slow:  all 0.5s ease;

  /* Z-index scale */
  --z-base:    1;
  --z-above:   10;
  --z-modal:   500;
  --z-header:  1000;
  --z-toast:   1100;
}

/* ════════════════════════════════════════════════════════════
   2. TYPOGRAPHY SCALE
════════════════════════════════════════════════════════════ */
.display-1 { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.1; }
.display-2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);   font-weight: 700; line-height: 1.15; }
.display-3 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.2; }

.text-xs   { font-size: var(--size-xs); }
.text-sm   { font-size: var(--size-sm); }
.text-base { font-size: var(--size-base); }
.text-lg   { font-size: var(--size-lg); }
.text-xl   { font-size: var(--size-xl); }

.font-display { font-family: var(--font-display); }
.font-normal  { font-weight: 400; }
.font-medium  { font-weight: 500; }
.font-semibold{ font-weight: 600; }
.font-bold    { font-weight: 700; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-gold    { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--muted); }
.text-danger  { color: var(--danger); }
.text-success { color: var(--success); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.section-subheading {
  font-size: var(--size-base);
  color: var(--muted-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-heading + .section-subheading { margin-top: var(--space-2); }
.section-label {
  font-size: var(--size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-2);
}

/* ════════════════════════════════════════════════════════════
   3. LAYOUT UTILITIES
════════════════════════════════════════════════════════════ */
.flex           { display: flex; }
.flex-col       { flex-direction: column; }
.flex-wrap      { flex-wrap: wrap; }
.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between{ justify-content: space-between; }
.justify-end    { justify-content: flex-end; }
.gap-1  { gap: var(--space-1); }
.gap-2  { gap: var(--space-2); }
.gap-3  { gap: var(--space-3); }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }

.w-full  { width: 100%; }
.h-full  { height: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mt-2  { margin-top: var(--space-2); }
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }

.p-4  { padding: var(--space-4); }
.p-6  { padding: var(--space-6); }
.p-8  { padding: var(--space-8); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-16{ padding-top: var(--space-16); padding-bottom: var(--space-16); }
.py-20{ padding-top: var(--space-20); padding-bottom: var(--space-20); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }

.hidden         { display: none; }
.overflow-hidden{ overflow: hidden; }
.relative       { position: relative; }
.sticky-top     { position: sticky; top: 90px; }

/* ════════════════════════════════════════════════════════════
   4. FORM ELEMENTS
════════════════════════════════════════════════════════════ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.form-label {
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.form-label .required-mark { color: var(--danger); }

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: var(--size-sm);
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}
.form-control:invalid:not(:placeholder-shown) { border-color: var(--danger); }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
select.form-control option { background: #1a1a0a; color: var(--white); }

/* Checkbox & radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.form-check-label { font-size: var(--size-sm); color: var(--white-dim); line-height: 1.5; }

/* File input */
.file-drop-zone {
  border: 2px dashed rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--muted);
  font-size: var(--size-sm);
}
.file-drop-zone:hover,
.file-drop-zone.drag-over {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--gold);
}
.file-drop-zone input[type="file"] { display: none; }

/* Inline form message */
.field-error  { font-size: var(--size-xs); color: var(--danger);  margin-top: var(--space-1); }
.field-success{ font-size: var(--size-xs); color: var(--success); margin-top: var(--space-1); }

/* Progress bar (checkout wizard) */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-8);
}
.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  position: relative;
  flex: 1;
}
.wizard-step::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: rgba(201, 168, 76, 0.15);
}
.wizard-step:last-child::before { display: none; }
.wizard-step.active  .wizard-step-num { background: var(--gold); color: var(--black); }
.wizard-step.done    .wizard-step-num { background: var(--success); color: var(--black); }
.wizard-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-sm);
  font-weight: 700;
  color: var(--muted);
  z-index: 1;
  transition: var(--transition);
}
.wizard-step-label {
  font-size: var(--size-xs);
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
}
.wizard-step.active .wizard-step-label { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   5. BADGES & TAGS
════════════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.badge-gold    { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--black); }
.badge-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.badge-success { background: rgba(34, 197, 94, 0.15); color: var(--success); border: 1px solid rgba(34,197,94,0.3); }
.badge-danger  { background: rgba(239, 68, 68, 0.15); color: var(--danger);  border: 1px solid rgba(239,68,68,0.3); }
.badge-warning { background: rgba(245,158,11,0.15);   color: var(--warning); border: 1px solid rgba(245,158,11,0.3); }
.badge-info    { background: rgba(59,130,246,0.15);   color: var(--info);    border: 1px solid rgba(59,130,246,0.3); }
.badge-muted   { background: rgba(255,255,255,0.06);  color: var(--muted);   border: 1px solid rgba(255,255,255,0.1); }

.tag-category {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}
.tag-category:hover {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-light);
}

/* Status pills */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--size-xs);
  font-weight: 600;
}
.status-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.status-pending    { background: rgba(245,158,11,0.12); color: var(--warning); }
.status-in_progress{ background: rgba(59,130,246,0.12); color: var(--info); }
.status-delivered  { background: rgba(34,197,94,0.12);  color: var(--success); }
.status-cancelled  { background: rgba(239,68,68,0.12);  color: var(--danger); }

/* ════════════════════════════════════════════════════════════
   6. STAR RATINGS
════════════════════════════════════════════════════════════ */
.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.star-rating .star {
  font-size: 0.9rem;
  line-height: 1;
  color: rgba(255,255,255,0.2);
}
.star-rating .star.filled { color: var(--gold); }
.star-rating .star.half   { color: var(--gold); opacity: 0.6; }

.rating-summary {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.rating-score {
  font-family: var(--font-display);
  font-size: var(--size-xl);
  font-weight: 700;
  color: var(--gold);
}
.rating-count { font-size: var(--size-xs); color: var(--muted); }

/* Input star picker (review form) */
.star-picker { display: flex; flex-direction: row-reverse; gap: 4px; }
.star-picker input { display: none; }
.star-picker label {
  font-size: 1.6rem;
  cursor: pointer;
  color: rgba(255,255,255,0.15);
  transition: color 0.15s;
}
.star-picker input:checked          ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   7. CARDS
════════════════════════════════════════════════════════════ */

/* ── Product card ──────────────────────────────────────── */
.product-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.1);
}
.product-card-header {
  padding: var(--space-5) var(--space-5) var(--space-3);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.product-card-emoji {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
}
.product-card-meta { flex: 1; min-width: 0; }
.product-card-category {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: var(--space-1);
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-body {
  padding: 0 var(--space-5) var(--space-4);
  flex: 1;
}
.product-card-hook {
  font-size: var(--size-sm);
  color: var(--muted-light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.product-card-rating .rating-num {
  font-size: var(--size-xs);
  color: var(--muted);
}
.product-card-urgency {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: var(--space-2) var(--space-5);
  background: rgba(201, 168, 76, 0.04);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}
.product-card-urgency span {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
}
.product-card-urgency .viewers { color: var(--muted-light); font-weight: 400; }
.product-card-footer {
  padding: var(--space-4) var(--space-5) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.product-card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
}
.product-card-price .currency { font-size: 0.85rem; }
.product-card-price .free-label { color: var(--success); font-size: 0.9rem; }
.product-card .btn { flex-shrink: 0; }

/* Deal countdown badge on card */
.deal-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: linear-gradient(135deg, #b91c1c, #ef4444);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* ── Bundle card ───────────────────────────────────────── */
.bundle-card {
  background: linear-gradient(135deg, #111100, #0d0d00);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.bundle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,168,76,0.08), transparent 60%);
  pointer-events: none;
}
.bundle-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-4px);
}
.bundle-save-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: var(--size-sm);
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.bundle-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.bundle-desc { font-size: var(--size-sm); color: var(--muted-light); margin-bottom: var(--space-5); }
.bundle-tool-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}
.bundle-tool-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--size-sm);
  color: var(--white-dim);
}
.bundle-tool-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.bundle-price-now {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}
.bundle-price-was {
  font-size: var(--size-sm);
  color: var(--muted);
  text-decoration: line-through;
}
.bundle-price-saving {
  font-size: var(--size-sm);
  color: var(--success);
  font-weight: 600;
}

/* ── Blog card ─────────────────────────────────────────── */
.blog-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a0a, #0d0d00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.blog-card-cat  { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); }
.blog-card-time { font-size: 0.72rem; color: var(--muted); }
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: var(--space-3);
  transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--gold-light); }
.blog-card-excerpt { font-size: var(--size-sm); color: var(--muted-light); line-height: 1.6; flex: 1; }
.blog-card-footer {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-card-author { font-size: 0.75rem; color: var(--muted); }
.blog-card-read   { font-size: var(--size-sm); font-weight: 600; color: var(--gold); transition: color 0.2s; }
.blog-card:hover .blog-card-read { color: var(--gold-light); }

/* ── Category card ─────────────────────────────────────── */
.category-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  transition: var(--transition);
}
.category-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: linear-gradient(135deg, #141400, #0d0d00);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.category-card-icon {
  font-size: 2.2rem;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.category-card:hover .category-card-icon {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.35);
}
.category-card-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.category-card-count { font-size: 0.72rem; color: var(--muted); }

/* ── Portfolio card ────────────────────────────────────── */
.portfolio-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.portfolio-card-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1a0a, #050505);
  overflow: hidden;
  position: relative;
}
.portfolio-card-img img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-card-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,0,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
  gap: var(--space-3);
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }
.portfolio-card-body { padding: var(--space-5); }
.portfolio-card-tag { margin-bottom: var(--space-2); }
.portfolio-card-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: var(--space-4); }
.portfolio-card-link { font-size: var(--size-sm); font-weight: 600; color: var(--gold); }

/* ── Review card ───────────────────────────────────────── */
.review-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.review-card-author { font-weight: 600; font-size: var(--size-sm); }
.review-card-date   { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.review-card-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.review-card-text { font-size: var(--size-sm); color: var(--white-dim); line-height: 1.7; }
.review-card-tool { font-size: 0.72rem; color: var(--muted); margin-top: var(--space-3); }

/* ════════════════════════════════════════════════════════════
   8. HERO SECTION
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-20) 0;
}
/* Particle shimmer background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(201,168,76,0.03) 0%, transparent 35%);
  pointer-events: none;
}
/* Gold shimmer grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-6);
  animation: fadeInDown 0.6s ease both;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-5);
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-headline .gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subheadline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(201,168,76,0.15); }

/* ════════════════════════════════════════════════════════════
   9. SECTION SHELLS
════════════════════════════════════════════════════════════ */
.section {
  padding: var(--space-20) 0;
  position: relative;
}
.section-dark { background: var(--black); }
.section-card { background: var(--black-soft); }
.section-gold-tint {
  background: linear-gradient(180deg, var(--black) 0%, #0d0b00 50%, var(--black) 100%);
}

.section-header { margin-bottom: var(--space-10); }
.section-header.center { text-align: center; }
.section-header.center .section-subheading { margin: 0 auto; }
.section-header.center .divider-gold { margin: var(--space-3) auto; }

/* Gold shimmer horizontal divider */
.divider-gold {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--space-3) 0;
}

/* ════════════════════════════════════════════════════════════
   10. HOMEPAGE SECTIONS
════════════════════════════════════════════════════════════ */

/* How it works */
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  position: relative;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
}
.how-step:hover {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(135deg, #141400, #0d0d00);
  box-shadow: var(--shadow-gold);
}
.how-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
}
.how-step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.how-step-desc { font-size: var(--size-sm); color: var(--muted-light); line-height: 1.6; }

/* Categories grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

/* Testimonials strip */
.testimonials-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(201,168,76,0.25); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  color: var(--white);
  font-size: var(--size-base);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background 0.2s;
  color: var(--gold);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--gold-pale);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--size-sm);
  color: var(--muted-light);
  line-height: 1.8;
}

/* ════════════════════════════════════════════════════════════
   11. SHOP PAGE
════════════════════════════════════════════════════════════ */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding: var(--space-4) var(--space-5);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
}
.shop-search-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.shop-search-wrap input {
  padding-left: 2.5rem;
}
.shop-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}
.shop-filters select { min-width: 160px; }
.shop-result-count {
  font-size: var(--size-sm);
  color: var(--muted);
  margin-left: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

/* Bundles spotlight on shop page */
.bundle-spotlight {
  background: linear-gradient(135deg, #0d0b00, #111100);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-10);
}
.bundle-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.bundle-mini-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: var(--transition);
}
.bundle-mini-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: var(--shadow-gold);
}
.bundle-mini-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: var(--space-2); }
.bundle-mini-save { font-size: var(--size-xs); color: var(--success); font-weight: 600; margin-bottom: var(--space-4); }

/* ════════════════════════════════════════════════════════════
   12. PRODUCT DETAIL PAGE
════════════════════════════════════════════════════════════ */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}
.product-detail-main {}
.product-detail-sidebar {
  position: sticky;
  top: 90px;
}

/* Product header */
.product-detail-header { margin-bottom: var(--space-6); }
.product-emoji-large {
  font-size: 3rem;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
}
.product-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.product-hook {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: var(--space-4);
  line-height: 1.5;
}
.product-description { font-size: var(--size-base); color: var(--white-dim); line-height: 1.8; margin-bottom: var(--space-6); }

/* Feature list */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--size-sm);
  color: var(--white-dim);
  line-height: 1.5;
}
.feature-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 1px;
}

/* What you get / Ideal for boxes */
.product-info-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}
.product-info-box {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.product-info-box-heading {
  font-size: var(--size-sm);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.product-info-box-text { font-size: var(--size-sm); color: var(--white-dim); line-height: 1.7; }

/* Urgency counters */
.product-urgency-bar {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}
.product-urgency-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--size-sm);
  color: var(--gold);
  font-weight: 500;
}
.product-urgency-item span { color: var(--muted-light); font-weight: 400; }

/* Sidebar order box */
.order-box {
  background: linear-gradient(135deg, #111100, #0d0d00);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: sticky;
  top: 90px;
}
.order-box-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.order-box-price-main {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.order-box-price-gst { font-size: var(--size-xs); color: var(--muted); }
.order-box-delivery {
  font-size: var(--size-sm);
  color: var(--success);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.order-box-amc {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-5);
}
.order-box-trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.order-box-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--size-xs);
  color: var(--muted-light);
}

/* Deal countdown */
.deal-countdown {
  background: linear-gradient(135deg, #1a0000, #110000);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-5);
  text-align: center;
}
.deal-countdown-label { font-size: var(--size-xs); color: #ef4444; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-2); }
.countdown-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}
.countdown-unit { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.countdown-num { line-height: 1; color: var(--gold-light); }
.countdown-label { font-size: 0.6rem; color: var(--muted); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.countdown-sep { color: var(--gold); font-size: 1.5rem; margin-bottom: 10px; }

/* ════════════════════════════════════════════════════════════
   13. CHECKOUT PAGE
════════════════════════════════════════════════════════════ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}
.checkout-form-panel {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.checkout-summary-panel {
  background: linear-gradient(135deg, #111100, #0d0d00);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: sticky;
  top: 90px;
}
.checkout-summary-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  font-size: var(--size-sm);
  color: var(--white-dim);
}
.checkout-summary-row.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  border-top: 1px solid rgba(201,168,76,0.15);
  margin-top: var(--space-3);
  padding-top: var(--space-4);
}
.checkout-summary-row.discount { color: var(--success); }
.checkout-coupon-row {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.coupon-input-group {
  display: flex;
  gap: var(--space-2);
}
.coupon-input-group input { flex: 1; }
.coupon-feedback {
  font-size: var(--size-xs);
  margin-top: var(--space-2);
  min-height: 1.2em;
}
.coupon-feedback.valid   { color: var(--success); }
.coupon-feedback.invalid { color: var(--danger); }

/* Payment method selector */
.payment-options { display: flex; flex-direction: column; gap: var(--space-3); }
.payment-option {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}
.payment-option:hover { border-color: rgba(201,168,76,0.3); }
.payment-option.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.payment-option input[type="radio"] { display: none; }
.payment-option-label { font-size: var(--size-sm); font-weight: 600; }
.payment-option-desc  { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.payment-option-icons {
  margin-left: auto;
  display: flex;
  gap: var(--space-2);
  align-items: center;
}
.payment-icon-pill {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}

/* UPI manual panel */
.upi-panel {
  margin-top: var(--space-5);
  padding: var(--space-5);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
}
.upi-qr-wrap {
  width: 160px; height: 160px;
  background: #fff;
  border-radius: var(--radius-md);
  margin: 0 auto var(--space-4);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.upi-qr-wrap img { width: 100%; height: 100%; object-fit: contain; }
.upi-id-display {
  text-align: center;
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
}

/* ════════════════════════════════════════════════════════════
   14. ORDER CONFIRMATION
════════════════════════════════════════════════════════════ */
.order-success-box {
  text-align: center;
  padding: var(--space-12) 0;
}
.order-success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  border: 2px solid rgba(34,197,94,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: 2.5rem;
  animation: scaleIn 0.5s ease both;
}
.order-id-pill {
  display: inline-block;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-full);
  padding: 0.4rem 1.25rem;
  font-size: var(--size-sm);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-8);
}
.what-next-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  text-align: left;
  margin-top: var(--space-6);
}
.what-next-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
}
.what-next-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-weight: 700;
  font-size: var(--size-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.what-next-step-text { font-size: var(--size-sm); color: var(--white-dim); line-height: 1.5; }

/* Referral box */
.referral-box {
  background: linear-gradient(135deg, #0d0b00, #111100);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  margin-top: var(--space-8);
}
.referral-link-field {
  display: flex;
  gap: var(--space-2);
  max-width: 480px;
  margin: var(--space-5) auto;
}
.referral-link-field input {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border-color: rgba(201,168,76,0.2);
  font-size: var(--size-sm);
  color: var(--muted-light);
}
.referral-share-btns { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }

/* ════════════════════════════════════════════════════════════
   15. MY ACCOUNT
════════════════════════════════════════════════════════════ */
.account-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}
.account-sidebar {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.account-user-info {
  padding: var(--space-6);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.account-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-3);
}
.account-name { font-weight: 700; font-size: 1.05rem; margin-bottom: 2px; }
.account-email { font-size: var(--size-xs); color: var(--muted); }
.account-credit-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.8rem;
  font-size: var(--size-xs);
  font-weight: 700;
  color: var(--gold);
  margin-top: var(--space-3);
}
.account-nav { padding: var(--space-2) 0; }
.account-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  color: var(--muted-light);
  font-size: var(--size-sm);
  font-weight: 500;
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}
.account-nav-link:hover { color: var(--gold); background: var(--gold-pale); }
.account-nav-link.active {
  color: var(--gold);
  background: var(--gold-pale);
  border-left-color: var(--gold);
}
.account-content {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
}
.account-tab-panel { display: none; }
.account-tab-panel.active { display: block; }

/* Orders table */
.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--size-sm);
}
.orders-table th {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.orders-table td {
  padding: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--white-dim);
  vertical-align: middle;
}
.orders-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ════════════════════════════════════════════════════════════
   16. BLOG
════════════════════════════════════════════════════════════ */
.blog-hero {
  background: linear-gradient(135deg, var(--black), #111100);
  border-bottom: 1px solid var(--black-border);
  padding: var(--space-16) 0 var(--space-12);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}
.blog-post-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--white-dim);
}
.blog-post-body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin: var(--space-8) 0 var(--space-4);
}
.blog-post-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: var(--space-6) 0 var(--space-3);
}
.blog-post-body p { margin-bottom: var(--space-5); }
.blog-post-body ul, .blog-post-body ol {
  padding-left: var(--space-6);
  margin-bottom: var(--space-5);
}
.blog-post-body li { margin-bottom: var(--space-2); }
.blog-post-body a  { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201,168,76,0.4); }
.blog-post-body strong { color: var(--white); font-weight: 700; }
.blog-post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: var(--space-4) var(--space-6);
  background: var(--gold-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-6) 0;
  font-style: italic;
  color: var(--gold-light);
}
.blog-post-body code {
  background: rgba(255,255,255,0.08);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--gold-light);
  font-family: 'Courier New', monospace;
}
.blog-post-body pre {
  background: #111;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  overflow-x: auto;
  margin-bottom: var(--space-5);
}
.blog-post-body pre code { background: none; padding: 0; }

/* Blog sidebar */
.blog-sidebar {}
.blog-sidebar-widget {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-5);
}
.blog-sidebar-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.blog-share-btns { display: flex; flex-direction: column; gap: var(--space-3); }
.blog-reading-bar {
  position: fixed;
  top: 70px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  z-index: 999;
  transition: width 0.1s linear;
}

/* ════════════════════════════════════════════════════════════
   17. PORTFOLIO
════════════════════════════════════════════════════════════ */
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.case-study-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}
.case-study-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.case-study-section {
  margin-bottom: var(--space-5);
}
.case-study-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.case-study-text { font-size: var(--size-sm); color: var(--white-dim); line-height: 1.7; }
.client-logos-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
}
.client-logo-placeholder {
  width: 100px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   18. COMPARE PAGES
════════════════════════════════════════════════════════════ */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--size-sm);
}
.compare-table th {
  padding: var(--space-4) var(--space-5);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 2px solid rgba(201,168,76,0.2);
}
.compare-table th.toolveda-col {
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.compare-table td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
  text-align: center;
}
.compare-table td:first-child { text-align: left; color: var(--white-dim); font-weight: 500; }
.compare-table .toolveda-col { background: rgba(201,168,76,0.04); }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-tick { color: var(--success); font-size: 1.2rem; }
.compare-cross { color: var(--danger);  font-size: 1.1rem; }
.compare-partial { color: var(--warning); font-size: 0.75rem; font-weight: 600; }

.compare-verdict {
  background: linear-gradient(135deg, #0d0b00, #111100);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-top: var(--space-10);
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   19. ABOUT / CONTACT / GUARANTEE
════════════════════════════════════════════════════════════ */
.about-hero {
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06), transparent 60%);
  padding: var(--space-20) 0 var(--space-16);
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  counter-reset: process-step;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  counter-increment: process-step;
}
.process-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.team-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a0a, #2a2a0a);
  border: 2px solid rgba(201,168,76,0.2);
  margin: 0 auto var(--space-4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.team-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: var(--size-xs); color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.contact-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
.contact-form-box {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.contact-info-box {
  background: linear-gradient(135deg, #0d0b00, #111100);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.guarantee-steps { display: grid; grid-template-columns: 1fr; gap: var(--space-5); margin-top: var(--space-6); }
.guarantee-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
}
.guarantee-step-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   20. ADMIN PANEL
════════════════════════════════════════════════════════════ */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  background: #080808;
}
.admin-sidebar {
  background: #0d0d0d;
  border-right: 1px solid rgba(201,168,76,0.1);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-logo {
  padding: var(--space-6) var(--space-5);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.admin-sidebar-logo span { color: var(--gold); }
.admin-nav { padding: var(--space-4) 0; flex: 1; }
.admin-nav-section {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: var(--space-4) var(--space-5) var(--space-2);
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  color: var(--muted-light);
  font-size: var(--size-sm);
  font-weight: 500;
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
  text-decoration: none;
}
.admin-nav-link:hover { color: var(--gold); background: var(--gold-pale); }
.admin-nav-link.active {
  color: var(--gold);
  background: var(--gold-pale);
  border-left-color: var(--gold);
}
.admin-nav-link .nav-icon { font-size: 1rem; width: 20px; text-align: center; }
.admin-nav-link .nav-badge {
  margin-left: auto;
  background: var(--danger);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
}

.admin-main { padding: var(--space-8); overflow-x: hidden; }
.admin-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.admin-page-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}

/* KPI cards */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}
.kpi-card {
  background: #0d0d0d;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: var(--transition);
}
.kpi-card:hover { border-color: rgba(201,168,76,0.25); box-shadow: var(--shadow-gold); }
.kpi-label { font-size: var(--size-xs); color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-1); }
.kpi-value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.kpi-trend { font-size: var(--size-xs); color: var(--muted); margin-top: 2px; }
.kpi-icon { font-size: 2rem; opacity: 0.5; }

/* Admin data table */
.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--size-sm);
}
.admin-table th {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: #0d0d0d;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  white-space: nowrap;
}
.admin-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--white-dim);
  vertical-align: middle;
}
.admin-table tr:hover td { background: rgba(201,168,76,0.02); }
.admin-table .actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }

/* Admin filter bar */
.admin-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  background: #0d0d0d;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
}
.admin-filter-bar input,
.admin-filter-bar select { max-width: 200px; }

/* Admin card panel */
.admin-panel {
  background: #0d0d0d;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}
.admin-panel-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Revenue chart container */
.chart-container {
  position: relative;
  height: 260px;
  background: #0a0a0a;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

/* ════════════════════════════════════════════════════════════
   21. MODALS & OVERLAYS
════════════════════════════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
  background: #141410;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s ease;
}
.modal-backdrop.open .modal { transform: scale(1) translateY(0); }
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.modal-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--muted-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1rem;
  transition: var(--transition-fast);
}
.modal-close:hover { background: rgba(239,68,68,0.15); color: var(--danger); border-color: rgba(239,68,68,0.3); }

/* Toast notifications */
.toast-container {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  pointer-events: none;
  width: calc(100% - 2rem);
  max-width: 400px;
}
.toast {
  background: #1a1a0a;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-size: var(--size-sm);
  color: var(--white-dim);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  pointer-events: all;
  animation: slideUp 0.3s ease both;
}
.toast.success { border-color: rgba(34,197,94,0.3); }
.toast.error   { border-color: rgba(239,68,68,0.3); }
.toast-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   22. ANIMATIONS & KEYFRAMES
════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-15px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Gold shimmer text effect */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 60%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Scroll-triggered fade-in */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
  color: transparent;
  user-select: none;
}

/* ════════════════════════════════════════════════════════════
   23. UTILITY HELPERS
════════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.break-word { word-break: break-word; overflow-wrap: break-word; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.rounded-full { border-radius: var(--radius-full); }
.rounded-lg   { border-radius: var(--radius-lg); }
.border-gold  { border-color: rgba(201,168,76,0.25) !important; }
.bg-gold-pale { background: var(--gold-pale); }
.opacity-50   { opacity: 0.5; }
.pointer      { cursor: pointer; }
.no-select    { user-select: none; }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}
.page-btn {
  min-width: 36px; height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,168,76,0.15);
  background: var(--black-card);
  color: var(--muted-light);
  font-size: var(--size-sm);
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  padding: 0 var(--space-3);
}
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 700; }
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  color: var(--muted);
}
.empty-state-icon { font-size: 3.5rem; margin-bottom: var(--space-5); opacity: 0.4; }
.empty-state-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white-dim); margin-bottom: var(--space-3); }
.empty-state-desc { font-size: var(--size-sm); line-height: 1.6; }

/* Alert boxes */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--size-sm);
  line-height: 1.5;
}
.alert-success { background: rgba(34,197,94,0.08);  border: 1px solid rgba(34,197,94,0.25);  color: var(--success); }
.alert-danger  { background: rgba(239,68,68,0.08);  border: 1px solid rgba(239,68,68,0.25);  color: var(--danger); }
.alert-warning { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25); color: var(--warning); }
.alert-info    { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.25); color: var(--info); }
.alert-icon    { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

/* ════════════════════════════════════════════════════════════
   24. PRINT STYLES
════════════════════════════════════════════════════════════ */
@media print {
  #site-header, .guarantee-strip, .newsletter-band,
  .site-footer, .wa-widget, .cookie-notice,
  .blog-reading-bar, .admin-sidebar { display: none !important; }

  body { background: #fff; color: #000; font-size: 11pt; }
  .container { max-width: 100%; padding: 0; }
  a { color: #000; text-decoration: underline; }
  .btn { display: none; }
  h1, h2, h3 { color: #000; font-family: Georgia, serif; }
  .product-detail-sidebar { display: none; }
  .product-detail-layout { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   25. RESPONSIVE — 640px+
════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .products-grid         { grid-template-columns: repeat(2, 1fr); }
  .categories-grid       { grid-template-columns: repeat(3, 1fr); }
  .how-grid              { grid-template-columns: repeat(3, 1fr); }
  .testimonials-strip    { grid-template-columns: repeat(2, 1fr); }
  .blog-grid             { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid        { grid-template-columns: repeat(2, 1fr); }
  .bundle-spotlight-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid              { grid-template-columns: repeat(2, 1fr); }
  .product-info-boxes    { grid-template-columns: repeat(2, 1fr); }
  .guarantee-steps       { grid-template-columns: repeat(3, 1fr); }
  .what-next-steps       { grid-template-columns: repeat(3, 1fr); }
  .team-grid             { grid-template-columns: repeat(3, 1fr); }
  .contact-layout        { grid-template-columns: 1fr 340px; }
}

/* ════════════════════════════════════════════════════════════
   26. RESPONSIVE — 768px+
════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .products-grid         { grid-template-columns: repeat(2, 1fr); }
  .categories-grid       { grid-template-columns: repeat(4, 1fr); }
  .testimonials-strip    { grid-template-columns: repeat(3, 1fr); }
  .blog-grid             { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid        { grid-template-columns: repeat(3, 1fr); }
  .kpi-grid              { grid-template-columns: repeat(4, 1fr); }
  .bundle-spotlight-grid { grid-template-columns: repeat(3, 1fr); }

  .product-detail-layout {
    grid-template-columns: 1fr 380px;
  }
  .checkout-layout {
    grid-template-columns: 1fr 360px;
  }
  .blog-post-layout {
    grid-template-columns: 1fr 280px;
  }
  .account-layout {
    grid-template-columns: 260px 1fr;
  }
  .process-steps  { grid-template-columns: repeat(2, 1fr); }

  .hero-ctas      { flex-wrap: nowrap; }
  .hero-stats     { gap: var(--space-8); }

  .shop-toolbar   { flex-wrap: nowrap; }
}

/* ════════════════════════════════════════════════════════════
   27. RESPONSIVE — 1024px+
════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .products-grid         { grid-template-columns: repeat(3, 1fr); }
  .categories-grid       { grid-template-columns: repeat(5, 1fr); }
  .bundle-spotlight-grid { grid-template-columns: repeat(4, 1fr); }
  .portfolio-grid        { grid-template-columns: repeat(3, 1fr); }
  .process-steps         { grid-template-columns: repeat(4, 1fr); }
  .team-grid             { grid-template-columns: repeat(4, 1fr); }

  .header-cta-btn { display: inline-flex !important; }
}

/* ════════════════════════════════════════════════════════════
   28. RESPONSIVE — 1200px+
════════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .products-grid  { grid-template-columns: repeat(4, 1fr); }
  .categories-grid{ grid-template-columns: repeat(6, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   MOBILE-FIRST RESETS (max-width overrides for tiny screens)
════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: var(--space-5); }
  .bundle-pricing { flex-wrap: wrap; }
  .referral-link-field { flex-direction: column; }
  .coupon-input-group { flex-direction: column; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .orders-table { font-size: 0.72rem; }
  .orders-table th, .orders-table td { padding: var(--space-2) var(--space-3); }
  .checkout-form-panel { padding: var(--space-5) var(--space-4); }
}
