:root {
  --bg: #fefbf3;
  --accent: #000000;
  --muted: #6b6b6b;

  /* GOLD THEME */
  --gold: #ffbf00; /* primary gold */
  --gold-rich: #ffd034; /* richer gold for accents */
  --gold-light: #f7e79e; /* light glow */
  --yellow: #f1c40f; /* bright yellow */
  --green: #15ff47;
  --pink: #ff5050;
}
html,
body {
  height: 100%;
  background: var(--bg);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Helvetica Neue",
    Arial;
  margin: 0;
}
.container-fluid {
  padding: 0;
}
/* Modal container */
.signup-modal .modal-dialog {
  max-width: 420px;
}

.signup-modal .modal-content {
  border-radius: 18px;
  border: none;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  padding: 28px 26px 30px;
}

/* Offer card */
.offer-box {
  background: radial-gradient(120% 120% at top, #1b1b1b, #000);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 40px rgba(0, 255, 100, 0.35);
  margin-bottom: 26px;
}
.bubble-back {
  background: linear-gradient(180deg, #e8e8e8, #bdbdbd);
  color: #222;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.step-nav {
  display: flex;
  flex-direction: row; /* 👈 force horizontal */
  align-items: center;
  gap: 16px;
}

.step-nav .bubble {
  width: 140px; /* optional: same size */
}
.step-nav {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f6d365;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.offer-price {
  font-size: 34px;
  font-weight: 800;
  color: #f6d365;
}

.old-price {
  color: #8c8c8c;
  text-decoration: line-through;
  font-size: 14px;
  margin-right: 6px;
}

.discount {
  display: inline-block;
  background: #ff4d4f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  margin-top: 6px;
}

.offer-footer {
  margin-top: 14px;
  font-size: 12px;
  color: gold;
  border: 1px solid #ffd806;
  padding: 6px 10px;
  border-radius: 8px;
}

/* Titles */
.signup-title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4px;
}

.signup-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 18px;
}

/* Buttons */
.btn-green {
  background: gold;
  border: none;
  font-weight: 600;
}

.btn-green:hover {
  background: #f0ca00;
}

.social-btn {
  border: 1px solid #dee2e6;
  font-weight: 500;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9ca3af;
  font-size: 13px;
  margin: 18px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.signin-link {
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
}

.signin-link a {
  color: #22c55e;
  text-decoration: none;
  font-weight: 600;
}

/* ===== OTP VERIFY SCREEN ===== */
.otp-screen {
  display: none;
}

.otp-title {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}

.otp-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 18px;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.otp-inputs input {
  width: 44px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  border-radius: 10px;
  border: 1.5px solid #d1d5db;
}

.otp-inputs input:focus {
  border-color: gold;
  outline: none;
  box-shadow: 0 0 0 2px rgba(72, 187, 120, 0.25);
}
/* slide panels - only the .active one is visible */
.slide {
  display: none;
  box-sizing: border-box;
  padding: 30px;
  min-height: 100vh;
  align-items: flex-start;
}
.slide.active {
  display: block;
}

/* common layout (kept for desktop look) */
.brand-logo {
  display: flex;
  gap: 18px;
  align-items: center;
}
.logo-box {
  max-width: 250px;
  height: auto;
  background: linear-gradient(135deg, #f6d365, var(--gold-rich));
  border-radius: 8px;
  flex: 0 0 auto;
}
.logo-box img {
  width: 100%;
}

.progress {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  background: transparent;
}
.dot {
  width: 44px;
  height: 8px;
  border-radius: 12px;
  background: #f0e6d0;
}
.dot.active {
  background: var(--gold);
}

h1 {
  font-size: 48px;
  line-height: 1.02;
  color: var(--accent);
  font-weight: 700;
  margin-top: 18px;
}
.sub {
  color: #6d6d6d;
  font-size: 18px;
  margin-bottom: 8px;
}

.brand-input input.form-control,
.variant-input input.form-control {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 18px;
  border: 2px solid #efe3d0;
  background: white;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.03) inset;
}
.hint {
  color: #6b6b6b;
  font-size: 12px;
  font-style: italic;
}

/* right image card */
.image-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(10, 10, 30, 0.08);
  background: #fff;
}
.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.callout {
  position: absolute;
  left: 20px;
  bottom: 36px;
  background: #fff6e6;
  padding: 22px;
  border-radius: 16px;
  width: 78%;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.08);
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

/* floating controls */
.float-next {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.bubble {
  width: 120px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--yellow), var(--gold));
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 14px 30px rgba(164, 112, 24, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.12);
}
.chat-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(164, 112, 24, 0.18);
}

.back-left {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 1200;
  background: var(--gold);
  color: white;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(140, 90, 10, 0.18);
  border: none;
}

/* Slide dashboard layout */
.loader-box {
  border: 3px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  box-shadow: 0 8px 0 rgba(212, 175, 55, 0.02) inset;
}
.loader-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
}
.loader-title {
  font-weight: 800;
  color: #222;
}
.loader-eta {
  font-size: 12px;
  color: #888;
}

.loader-progress {
  flex: 1;
  height: 10px;
  background: #eee;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.loader-progress .bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transition: width 200ms linear;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}
.stat-card {
  background: white;
  border-radius: 12px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.08);
}
.stat-card .label {
  color: #333;
  font-weight: 700;
  margin-bottom: 8px;
}
.stat-card .value {
  font-size: 36px;
  font-weight: 900;
  color: var(--pink);
}

.big-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}
.big-card {
  background: white;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.06);
}
.big-card h5 {
  font-weight: 700;
}
.chart-axes {
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #888;
  font-size: 12px;
}
.chart-placeholder {
  width: 90%;
  height: 220px;
  border: 1px dashed #efe8d6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.02),
    rgba(0, 0, 0, 0.01)
  );
}

.right-column {
  /* keeps right column stacking behavior but uses responsive grid */
}
.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.06);
}
/* === Step 3 specific adjustments (paste into your existing style) === */
.step3-row {
  gap: 2rem;
  align-items: flex-start;
}
.step3-left {
  flex: 1;
  min-width: 0;
}
.step3-right {
  width: 380px;
  flex: 0 0 380px;
}

.progress-gold {
  display: flex;
  gap: 8px;
  align-items: center;
}
.progress-gold .dot {
  width: 44px;
  height: 8px;
  border-radius: 12px;
  background: #f0e6d0;
}
.progress-gold .dot.gold {
  background: var(--gold);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.14);
}
.slide2-title {
  font-size: 48px;
}
.slide2-title span {
  font-weight: 900;
}
.variant-label {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.variant-label label {
  font-weight: 700;
}
.variant-label span {
  font-style: italic;
  font-size: 12px;
}
.offer-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  display: block;
}
.confirmPrimary {
  color: var(--gold);
}
/* NEW: promo card (matches provided sample image) */
.promo-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  color: white;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 46px rgba(10, 10, 30, 0.18);
  padding: 18px;
}
.promo-inner {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
  border-radius: 12px;
  padding: 14px;
}
.promo-top-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.promo-badge-wrap {
  background: #0f0f0f;
  border-radius: 999px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.promo-blackfriday {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.02em;
  font-weight: 800;
}
.promo-title {
  text-align: center;
  margin-top: 6px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}
.promo-prices {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.promo-price-old {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
  font-weight: 800;
}
.promo-price-now {
  font-size: 44px;
  font-weight: 900;
  color: var(--green);
  text-shadow:
    0 12px 36px rgba(247, 231, 158, 0.18),
    0 6px 18px rgba(0, 0, 0, 0.6);
  filter: drop-shadow(0 8px 30px rgba(247, 231, 158, 0.18));
}
.promo-cta {
  margin-top: 12px;
  text-align: center;
}
.promo-cta .pill {
  display: inline-block;
  background: #d61100;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(255, 91, 77, 0.22);
}
.promo-sub {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  text-align: center;
}
.promo-offer-row {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}
.promo-offer-inner {
  width: 92%;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(212, 175, 55, 0.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35) inset;
}
.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 6px 20px rgba(0, 193, 118, 0.28);
}
.promo-offer-text {
  flex: 1;
  color: #bfeed6;
  font-weight: 700;
  font-size: 13px;
}

/* pricing card spacing inside right column */
.right-pricing .pricing-card {
  margin-bottom: 18px;
}
/* Pricing radio switch (snapshot style) */
.pricing-switch-row .plan-card {
  display: block;
  cursor: pointer;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
  position: relative;
  transition: all 220ms ease;
  height: 100%;
  text-align: center;
}
.pricing-switch-row .plan-card .plan-inner {
  padding: 6px 4px;
}
.pricing-switch-row .plan-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
  font-weight: 700;
}
.pricing-switch-row .plan-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.pricing-switch-row .plan-sub {
  font-size: 12px;
  color: #999;
  margin-top: 6px;
}

/* selected look like snapshot: golden border, larger shadow */
.pricing-switch-row .plan-card.selected {
  border: 2px solid var(--gold);
  box-shadow: 0 12px 34px rgba(212, 175, 55, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fff);
}

/* check mark circle top-right (subtle) */
.pricing-switch-row .plan-check {
  position: absolute;
  top: 8px;
  right: 10px;
  background: var(--gold);
  color: #000;
  font-weight: 900;
  border-radius: 8px;
  padding: 4px 6px;
  font-size: 12px;
  display: none;
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.14);
}
.pricing-switch-row .plan-card.selected .plan-check {
  display: inline-block;
}

/* visually-hidden helper (accessible) */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
/* Web Results (responsive) */
.web-results-list {
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.web-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 6px 18px rgba(10, 10, 30, 0.03);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

/* favicon */
.web-result-favicon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex: 0 0 44px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  background: #fff;
}

/* body text container — allows truncation/wrapping */
.web-result-body {
  flex: 1;
  min-width: 0; /* allow overflow/ellipsis to work */
}

/* title: allow 1-2 lines depending on screen; use clamp for base font-size */
.web-result-title {
  font-weight: 500;
  color: #000;
  font-size: clamp(13px, 1.4vw, 14px);
  line-height: 1.2;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; /* show up to 2 lines, then ellipsis */
}

/* domain */
.web-result-domain {
  font-size: 12px;
  color: #666;
}

/* right area (alert) */
.web-result-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}

/* SVG alert sizing (keeps consistent box) */
.web-result-alert {
  width: 38px;
  height: 38px;
  display: inline-block;
  border-radius: 8px;
  padding: 6px;
  box-sizing: border-box;
}

/* responsive tweaks */
@media (max-width: 991.98px) {
  .web-results-list {
    max-height: 340px;
  }
  .web-result-favicon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }
  .web-result-alert {
    width: 34px;
    height: 34px;
    padding: 5px;
    border-radius: 6px;
  }
}

@media (max-width: 575.98px) {
  .web-results-list {
    max-height: 260px;
    gap: 8px;
    padding: 6px;
  }
  .web-result-favicon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }
  .web-result-title {
    -webkit-line-clamp: 2;
    font-size: 13px;
  }
  .web-result-alert {
    width: 30px;
    height: 30px;
    padding: 4px;
    border-radius: 6px;
  }
  .web-result-item {
    padding: 8px 10px;
    gap: 10px;
  }
}

/* very small narrow screens: stack domain under title if space is very tight */
@media (max-width: 360px) {
  .web-result-title {
    -webkit-line-clamp: 2;
  }
  .web-result-domain {
    font-size: 11px;
  }
}

/* mobile tweak: smaller padding */
@media (max-width: 575.98px) {
  .pricing-switch-row .plan-card {
    padding: 10px;
  }
  .pricing-switch-row .plan-price {
    font-size: 22px;
  }
}

/* small utility classes that replace inline sizes */
.w-max-720 {
  max-width: 720px;
}
.img-h-560 {
  height: 560px;
  object-fit: cover;
}
.img-h-360 {
  height: 360px;
  object-position: center;
}

/* make sure right column stacks below on smaller screens but keeps visual width on lg */
@media (max-width: 991.98px) {
  .step3-right {
    width: 100%;
    flex-basis: 100%;
  }
  .step3-row {
    flex-direction: column;
  }
}

/* Responsive tweaks using bootstrap breakpoints */
@media (max-width: 1199.98px) {
  .slide {
    padding: 36px 32px;
  }
  h1 {
    font-size: 38px;
  }
  .callout {
    width: 72%;
    left: 18px;
    bottom: 28px;
    padding: 18px;
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  .slide {
    padding: 28px 18px;
    /* DO NOT override `display` here — let .slide and .slide.active handle visibility */
  }
  .image-card img {
    height: 360px;
    object-position: center;
  }
  .float-next {
    right: 16px;
    bottom: 16px;
  }
  .back-left {
    left: 16px;
    bottom: 16px;
  }
  h1 {
    font-size: 30px;
  }
  .stats-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .big-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .image-card img {
    height: 240px;
  }
  h1 {
    font-size: 24px;
  }
  .brand-input input.form-control,
  .variant-input input.form-control {
    padding: 14px 12px;
    font-size: 16px;
  }
  .bubble {
    width: 110px;
    height: 56px;
    font-size: 16px;
  }
  .chat-dot {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
  .callout {
    width: 86%;
    left: 12px;
    bottom: 16px;
    padding: 12px;
    font-size: 13px;
  }
}

/* utility for hiding callout on very narrow widths if overlapping */
@media (max-width: 420px) {
  .callout {
    display: none;
  }
}

/* small text utilities used in the markup */
.muted-12 {
  font-size: 12px;
  color: #999;
}
.stat-label {
  font-weight: 800;
  color: #222;
}
.center-text {
  text-align: center;
}

/* Confirm popup styling */
.confirm-box {
  width: 640px;
  max-width: 92%;
  background: white;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 22px 60px rgba(10, 10, 30, 0.35);
  text-align: center;
  position: relative;
}
.confirm-title {
  font-size: 26px;
  font-weight: 800;
  color: #3d3d3d;
  margin-bottom: 8px;
}
.confirm-body {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.confirm-primary {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin-top: 8px;
}
.confirm-var {
  font-size: 16px;
  margin: 6px 0;
  color: var(--pink);
  font-weight: 700;
}
.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}
.confirm-btn-primary {
  background: #0a0a0a;
  color: white;
  border-radius: 10px;
  padding: 10px 22px;
  font-weight: 700;
  border: 0;
}
.confirm-btn-cancel {
  background: #8b8f94;
  color: white;
  border-radius: 10px;
  padding: 10px 22px;
  font-weight: 700;
  border: 0;
}

/* button override for pay button (inline originally) */
#payCheckout {
  background: var(--gold);
  color: #000;
  font-weight: 800;
  border-radius: 10px;
}
/* Top Brandits table — icon + name + right-side red highlight */
.top-brandits-table td,
.top-brandits-table th {
  vertical-align: middle;
  border-top: 0;
}

.top-brandits-table .favicon {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.top-brandits-table .domain-name {
  font-weight: 800;
  color: #222;
}

.top-brandits-table .infr-badge {
  display: inline-block;
  min-width: 64px;
  text-align: center;
  padding: 6px 10px;
  border-radius: 12px;
  font-weight: 900;
  color: #ff4040; /* bright red for highlight */
  background: rgba(255, 64, 64, 0.08); /* subtle red background */
  box-shadow: 0 6px 18px rgba(255, 64, 64, 0.06) inset;
}

/* --- Step 4 Dashboard (Tabs) --- */
.tabs-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: center;
}
.tab-btn {
  padding: 8px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 800;
  cursor: pointer;
}
.tab-btn.active {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.12);
  color: #000;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.tab-content .big-card figure {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 10px;
}
.tab-content .big-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* make dashboard header image look like the sample */
.dashboard-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}
.dashboard-header img {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  object-fit: cover;
}
