/* ============================================================
   SETWALA MARKETPLACE — BRIGHT PREMIUM THEME
   Brand: Violet #6D28D9 | Orange #EA580C | Light Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* ── SETWALA BRAND COLORS ── */
  --purple:        #250c77;
  --purple-light:  #3a1a9e;
  --purple-dark:   #180850;
  --purple-soft:   #ede8ff;   /* very light tint of brand purple */
  --orange:        #ed642b;
  --orange-light:  #f47c47;
  --orange-dark:   #c94f1a;
  --orange-soft:   #fff3ee;   /* very light tint of brand orange */

  /* Surfaces — bright light theme */
  --dark-bg:       #f6f4ff;   /* page bg — barely-there purple tint */
  --dark-card:     #FFFFFF;   /* cards — pure white */
  --dark-border:   #e8e2ff;   /* borders — light brand purple tint */
  --dark-input:    #faf9ff;   /* input bg */

  /* Text */
  --text-primary:   #130840;  /* near-black — brand purple dark */
  --text-secondary: #3d2e6b;  /* mid-tone brand purple */
  --text-muted:     #8c7eb8;  /* muted brand purple */

  /* Semantic */
  --success:   #059669;
  --error:     #DC2626;
  --warning:   #D97706;

  /* Gradients — pure brand */
  --gradient:      linear-gradient(135deg, #250c77 0%, #ed642b 100%);
  --gradient-hero: linear-gradient(135deg, #0e0430 0%, #250c77 40%, #4a1a9e 70%, #ed642b 100%);
  --gradient-card: linear-gradient(135deg, #ede8ff 0%, #fff3ee 100%);

  /* Shadows — brand purple glow */
  --shadow:     0 4px 24px rgba(37,12,119,0.12);
  --shadow-lg:  0 12px 48px rgba(37,12,119,0.18);
  --shadow-card:0 2px 12px rgba(37,12,119,0.08);

  --radius:     14px;
  --radius-sm:  8px;
  --transition: 0.22s ease;
}

/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple-light); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--text-primary); }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; }
ul { list-style: none; }

/* ── CONTAINER ────────────────────────────────────── */
.container    { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 680px; }
.container-md { max-width: 900px; }

/* ── NAVBAR ───────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 1px 16px rgba(109,40,217,0.07);
  padding: 0 1.5rem;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; max-width: 1280px; margin: 0 auto;
}
.navbar-brand {
  font-size: 1.6rem; font-weight: 900;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.5px;
}
.navbar-search { flex: 1; max-width: 420px; margin: 0 2rem; position: relative; }
.navbar-search input {
  width: 100%; padding: 0.55rem 1rem 0.55rem 2.5rem;
  background: var(--dark-input); border: 1.5px solid var(--dark-border);
  border-radius: 50px; color: var(--text-primary); font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar-search input:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(109,40,217,0.12);
}
.navbar-search input::placeholder { color: var(--text-muted); }
.navbar-search .search-icon { position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.navbar-nav { display: flex; align-items: center; gap: 0.15rem; }
.navbar-nav a {
  color: var(--text-secondary); padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 500;
  transition: all var(--transition);
}
.navbar-nav a:hover { color: var(--purple); background: var(--purple-soft); }
.navbar-toggle { display: none; cursor: pointer; color: var(--text-primary); font-size: 1.4rem; background: none; border: none; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.6rem 1.4rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  border: none; transition: all var(--transition); white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-light); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(234,88,12,0.35); }
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple-light); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(109,40,217,0.35); }
.btn-gradient { background: var(--gradient); color: #fff; }
.btn-gradient:hover { opacity: 0.9; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--purple);
  border: 1.5px solid var(--purple);
}
.btn-outline:hover { background: var(--purple); color: #fff; }
.btn-ghost { background: var(--purple-soft); color: var(--purple); border: 1px solid var(--dark-border); }
.btn-ghost:hover { background: var(--purple); color: #fff; }
.btn-sm  { padding: 0.35rem 0.9rem; font-size: 0.8rem; }
.btn-lg  { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  padding: 5.5rem 1.5rem 5rem;
  background: var(--gradient-hero);
  text-align: center;
  position: relative; overflow: hidden;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(234,88,12,0.25) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
  background: var(--dark-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff; border: 1px solid rgba(255,255,255,0.25); border-radius: 50px;
  padding: 0.3rem 1.1rem; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero h1 { margin-bottom: 1.25rem; color: #fff; }
.hero h1 span {
  background: linear-gradient(135deg, #FDE68A, #FCA5A5, #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 1.1rem; max-width: 580px; margin: 0 auto 2.5rem; color: rgba(255,255,255,0.82); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-ghost   { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.30); }
.hero-actions .btn-ghost:hover  { background: rgba(255,255,255,0.25); color: #fff; }
.hero-actions .btn-outline { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.55); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.22); color: #fff; border-color: rgba(255,255,255,0.8); }
.hero-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 3.5rem; flex-wrap: wrap; }
.hero-stats .stat { text-align: center; }
.hero-stats .stat-num { font-size: 2.2rem; font-weight: 800; color: #fff; }
.hero-stats .stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }

/* ── SECTION ──────────────────────────────────────── */
.section { padding: 4.5rem 1.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 540px; margin: 0 auto; color: var(--text-muted); }

/* ── CATEGORY PILLS ───────────────────────────────── */
.category-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.category-pill {
  padding: 0.4rem 1.1rem; border-radius: 50px;
  background: var(--dark-card); border: 1.5px solid var(--dark-border);
  color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; cursor: pointer;
  transition: all var(--transition); box-shadow: var(--shadow-card);
}
.category-pill:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-soft); }
.category-pill.active { background: var(--purple); border-color: var(--purple); color: #fff; box-shadow: 0 4px 14px rgba(109,40,217,0.3); }

/* ── PRODUCT GRID ─────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: 0 16px 48px rgba(109,40,217,0.18);
}
.product-card-image {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: linear-gradient(135deg, #EDE9FE, #FFF7ED);
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-image img { transform: scale(1.07); }
.product-card-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--orange); color: #fff;
  padding: 0.2rem 0.65rem; border-radius: 5px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 2px 8px rgba(234,88,12,0.4);
}
.product-card-free { background: var(--success); box-shadow: 0 2px 8px rgba(5,150,105,0.4); }
.product-card-actions {
  position: absolute; top: 0.75rem; right: 0.75rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  opacity: 0; transform: translateX(8px); transition: all var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-card-actions.has-wishlisted { opacity: 1; transform: translateX(0); }
.action-btn {
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.92); color: var(--text-primary);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.action-btn:hover { background: var(--orange); color: #fff; transform: scale(1.1); }
.action-btn.wishlisted { background: rgba(234,88,12,0.15); color: var(--orange); }
.product-card-body { padding: 1rem 1.1rem 1.1rem; }
.product-card-category {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--purple); font-weight: 700; margin-bottom: 0.3rem;
}
.product-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 0.45rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card-creator { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-card-price { font-size: 1.15rem; font-weight: 800; color: var(--orange); }
.product-card-price .original { font-size: 0.8rem; text-decoration: line-through; color: var(--text-muted); margin-right: 0.35rem; }
.product-card-meta { display: flex; gap: 0.75rem; font-size: 0.75rem; color: var(--text-muted); }
.rating-stars { color: #F59E0B; letter-spacing: -1px; }

/* ── PRODUCT DETAIL ───────────────────────────────── */
.product-detail { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
.product-gallery { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.product-gallery-main { aspect-ratio: 16/9; background: var(--gradient-card); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; overflow-x: auto; }
.gallery-thumb {
  width: 80px; height: 56px; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; flex-shrink: 0;
  transition: border-color var(--transition); box-shadow: var(--shadow-card);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--orange); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-sidebar { position: sticky; top: 80px; }
.product-buy-box {
  background: var(--dark-card); border: 1.5px solid var(--dark-border);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}
.product-price { font-size: 2rem; font-weight: 800; color: var(--orange); margin-bottom: 1rem; }
.product-price .original { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; margin-left: 0.5rem; }

/* ── CARDS ────────────────────────────────────────── */
.card {
  background: var(--dark-card); border: 1.5px solid var(--dark-border);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.card-hover:hover { border-color: var(--purple); transform: translateY(-2px); box-shadow: var(--shadow); transition: all var(--transition); }

/* ── FORMS ────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem; }
.form-control {
  width: 100%; padding: 0.65rem 1rem;
  background: var(--dark-input); border: 1.5px solid var(--dark-border);
  border-radius: var(--radius-sm); color: var(--text-primary); font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(109,40,217,0.1);
  background: #fff;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control.error { border-color: var(--error); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-error { color: var(--error); font-size: 0.8rem; margin-top: 0.3rem; }
.form-hint  { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.form-check input[type="checkbox"] { accent-color: var(--purple); width: 16px; height: 16px; }

/* ── AUTH PAGES ───────────────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F5F3FF 0%, #FFF7ED 100%);
  padding: 2rem 1rem;
}
.auth-box {
  background: var(--dark-card); border: 1.5px solid var(--dark-border);
  border-radius: var(--radius); padding: 2.5rem; width: 100%; max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo .brand-name {
  font-size: 2rem; font-weight: 900;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.auth-title { text-align: center; margin-bottom: 1.75rem; }
.auth-title h2 { margin-bottom: 0.4rem; }
.auth-title p { font-size: 0.9rem; color: var(--text-muted); }
.auth-divider { text-align: center; position: relative; margin: 1.5rem 0; }
.auth-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--dark-border);
}
.auth-divider span {
  background: var(--dark-card); padding: 0 1rem;
  position: relative; color: var(--text-muted); font-size: 0.85rem;
}
.otp-input-group { display: flex; gap: 0.5rem; justify-content: center; }
.otp-input {
  width: 48px; height: 56px; text-align: center; font-size: 1.4rem; font-weight: 700;
  background: var(--dark-input); border: 2px solid var(--dark-border);
  border-radius: var(--radius-sm); color: var(--text-primary);
}
.otp-input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(109,40,217,0.1); }

/* ── DASHBOARD LAYOUT ─────────────────────────────── */
.dashboard-layout { display: flex; min-height: 100vh; background: #F5F3FF; }
.sidebar {
  width: 260px; min-height: 100vh;
  background: linear-gradient(180deg, #180850 0%, #250c77 60%, #3a1a9e 100%);
  padding: 1.5rem 1rem; position: sticky; top: 0; flex-shrink: 0;
  box-shadow: 4px 0 24px rgba(37,12,119,0.20);
}
.sidebar-brand {
  padding: 0 0.5rem 1.5rem; margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 1.4rem; font-weight: 900; color: #fff; letter-spacing: -0.5px;
}
.sidebar-nav { display: flex; flex-direction: column; gap: 0.2rem; }
.sidebar-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.85rem; border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500;
  transition: all var(--transition);
}
.sidebar-link:hover { background: rgba(255,255,255,0.12); color: #fff; }
.sidebar-link.active { background: rgba(255,255,255,0.18); color: #fff; font-weight: 600; }
.sidebar-link .icon { width: 18px; text-align: center; flex-shrink: 0; }
.sidebar-section-label {
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 1.8px;
  color: rgba(255,255,255,0.4); padding: 0.75rem 0.85rem 0.25rem; margin-top: 0.5rem;
}
.dashboard-main { flex: 1; padding: 2rem 2rem; min-width: 0; background: #F5F3FF; }
.dashboard-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.dashboard-title { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }

/* ── STATS CARDS ──────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--dark-card); border: 1.5px solid var(--dark-border);
  border-radius: var(--radius); padding: 1.35rem; position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient);
}
.stat-card-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--purple-soft); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1rem;
}
.stat-card-value { font-size: 1.75rem; font-weight: 800; color: var(--text-primary); }
.stat-card-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 0.25rem; }
.stat-card-change { font-size: 0.8rem; margin-top: 0.5rem; }
.stat-card-change.up   { color: var(--success); }
.stat-card-change.down { color: var(--error); }

/* ── TABLE ────────────────────────────────────────── */
.table-responsive { overflow-x: auto; border-radius: var(--radius); border: 1.5px solid var(--dark-border); box-shadow: var(--shadow-card); }
.table { width: 100%; border-collapse: collapse; background: var(--dark-card); }
.table th {
  background: var(--purple-soft); color: var(--purple);
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700;
  padding: 0.8rem 1rem; text-align: left; white-space: nowrap;
}
.table td { padding: 0.9rem 1rem; border-top: 1px solid var(--dark-border); vertical-align: middle; font-size: 0.88rem; }
.table tr:hover td { background: #FAFAFE; }

/* ── BADGES ───────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; padding: 0.22rem 0.65rem;
  border-radius: 50px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-success { background: rgba(5,150,105,0.12);  color: #059669; }
.badge-error   { background: rgba(220,38,38,0.10);  color: #DC2626; }
.badge-warning { background: rgba(217,119,6,0.12);  color: #D97706; }
.badge-purple  { background: var(--purple-soft);    color: var(--purple); }
.badge-orange  { background: var(--orange-soft);    color: var(--orange); }
.badge-gray    { background: #F3F4F6;               color: #6B7280; }

/* ── TAGS ─────────────────────────────────────────── */
.tag {
  display: inline-block; padding: 0.2rem 0.6rem;
  background: var(--purple-soft); border: 1px solid var(--dark-border);
  border-radius: 5px; font-size: 0.75rem; color: var(--purple); font-weight: 500;
}

/* ── SUBSCRIPTION CARDS ───────────────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.plan-card {
  background: var(--dark-card); border: 1.5px solid var(--dark-border);
  border-radius: var(--radius); padding: 2rem; text-align: center; position: relative;
  transition: all var(--transition); box-shadow: var(--shadow-card);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-card.popular { border-color: var(--orange); box-shadow: 0 8px 32px rgba(234,88,12,0.18); }
.plan-card-popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff; padding: 0.25rem 1.1rem;
  border-radius: 50px; font-size: 0.72rem; font-weight: 700;
}
.plan-name { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; font-weight: 600; }
.plan-price { font-size: 2.6rem; font-weight: 800; color: var(--text-primary); }
.plan-price span { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.plan-period { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.plan-features { text-align: left; margin-bottom: 2rem; }
.plan-feature {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0; font-size: 0.88rem; color: var(--text-secondary);
  border-bottom: 1px solid var(--dark-border);
}
.plan-feature:last-child { border: none; }
.plan-feature .check { color: var(--success); }
.plan-feature .cross { color: var(--error); }

/* ── ALERT ────────────────────────────────────────── */
.alert {
  padding: 0.9rem 1rem; border-radius: var(--radius-sm);
  margin-bottom: 1.25rem; font-size: 0.88rem; font-weight: 500;
}
.alert-success { background: rgba(5,150,105,0.09);  border: 1px solid rgba(5,150,105,0.25);   color: #059669; }
.alert-error   { background: rgba(220,38,38,0.08);  border: 1px solid rgba(220,38,38,0.2);    color: #DC2626; }
.alert-info    { background: var(--purple-soft);    border: 1px solid rgba(109,40,217,0.2);   color: var(--purple); }
.alert-warning { background: rgba(217,119,6,0.09);  border: 1px solid rgba(217,119,6,0.25);   color: #D97706; }

/* ── PAGINATION ───────────────────────────────────── */
.pagination { display: flex; justify-content: center; margin-top: 2rem; }
.pagination ul { display: flex; gap: 0.35rem; align-items: center; }
.pagination li a, .pagination li span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--dark-card); border: 1.5px solid var(--dark-border);
  color: var(--text-secondary); font-size: 0.85rem; transition: all var(--transition);
}
.pagination li.active a, .pagination li a:hover { background: var(--purple); border-color: var(--purple); color: #fff; }

/* ── SEARCH & FILTER ──────────────────────────────── */
.search-filters {
  background: var(--dark-card); border: 1.5px solid var(--dark-border);
  border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end;
  box-shadow: var(--shadow-card);
}
.filter-group { display: flex; flex-direction: column; gap: 0.35rem; min-width: 160px; }
.filter-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }

/* ── FILE DROP ZONE ───────────────────────────────── */
.file-drop-zone {
  border: 2px dashed var(--dark-border); border-radius: var(--radius);
  padding: 3rem; text-align: center; cursor: pointer; transition: all var(--transition);
  background: var(--dark-input);
}
.file-drop-zone:hover, .file-drop-zone.dragover {
  border-color: var(--purple); background: var(--purple-soft);
}
.file-drop-icon { font-size: 3rem; color: var(--purple); margin-bottom: 1rem; opacity: 0.6; }
.file-drop-text { font-size: 1rem; color: var(--text-secondary); font-weight: 500; }
.file-drop-sub  { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.35rem; }

/* ── CREATOR PROFILE ──────────────────────────────── */
.creator-banner {
  height: 200px; border-radius: var(--radius) var(--radius) 0 0;
  background: var(--gradient-hero); position: relative;
}
.creator-header {
  background: var(--dark-card); border: 1.5px solid var(--dark-border);
  border-top: none; border-radius: 0 0 var(--radius) var(--radius);
  padding: 1rem 1.5rem; display: flex; align-items: flex-end; gap: 1.25rem;
  box-shadow: 0 4px 16px rgba(109,40,217,0.08);
}
.creator-avatar-wrap {
  width: 90px; height: 90px; border-radius: 50%;
  border: 4px solid #fff; overflow: hidden; flex-shrink: 0;
  margin-top: -45px; background: var(--purple-soft);
  box-shadow: 0 4px 16px rgba(109,40,217,0.2);
}
.creator-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  background: linear-gradient(135deg, #0e0430 0%, #250c77 50%, #180850 100%);
  border-top: none;
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand { font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 0.75rem; letter-spacing: -0.5px; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-heading { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 1rem; font-weight: 700; }
.footer ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-socials { display: flex; gap: 0.65rem; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: all var(--transition); border: 1px solid rgba(255,255,255,0.1);
}
.footer-social:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }

/* ── UTILITIES ────────────────────────────────────── */
.text-center   { text-align: center; }
.text-orange   { color: var(--orange); }
.text-purple   { color: var(--purple); }
.text-muted    { color: var(--text-muted); }
.text-success  { color: var(--success); }
.text-error    { color: var(--error); }
.text-sm       { font-size: 0.85rem; }
.fw-bold       { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.d-flex        { display: flex; }
.align-center  { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.justify-between { justify-content: space-between; }
.hidden        { display: none; }
.w-100         { width: 100%; }

/* ── LOADER ───────────────────────────────────────── */
.loader {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--dark-border); border-top-color: var(--purple);
  animation: spin 0.8s linear infinite; margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── MODAL ────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(37,12,119,0.35);
  backdrop-filter: blur(6px); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal {
  background: var(--dark-card); border: 1.5px solid var(--dark-border);
  border-radius: var(--radius); padding: 2rem; max-width: 540px; width: 100%;
  box-shadow: var(--shadow-lg); position: relative;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--dark-border); background: var(--dark-input);
  color: var(--text-muted); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--error); color: #fff; border-color: var(--error); }

/* ── SCROLLBAR ────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--dark-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .product-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-search { display: none; }
  .navbar-toggle { display: block; }
  .navbar-nav { display: none; }
  .navbar-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 66px; left: 0; right: 0;
    background: #fff; padding: 1rem; box-shadow: 0 8px 24px rgba(109,40,217,0.12);
    border-bottom: 1.5px solid var(--dark-border);
  }
  .hero { padding: 3.5rem 1rem 3rem; }
  .hero::after { height: 40px; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .dashboard-layout { flex-direction: column; }
  .sidebar { width: 100%; min-height: auto; position: relative; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .auth-box { padding: 1.5rem; }
}

/* ============================================================
   INTERACTIVE ENHANCEMENTS
============================================================ */

/* ── SCROLL / LOAD ANIMATION ────────────────────────────── */
/* Safe approach: elements are VISIBLE by default.
   JS adds .sw-animate to trigger the slide-up. No hidden state. */
@keyframes swFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sw-animate {
  animation: swFadeUp 0.5s cubic-bezier(.22,.68,0,1.2) both;
}

/* ── BUTTON RIPPLE ──────────────────────────────────────── */
.btn { overflow: hidden; }
.btn-ripple {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transform: translate(-50%,-50%) scale(0);
  animation: ripple-expand 0.62s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-expand {
  to { transform: translate(-50%,-50%) scale(60); opacity: 0; }
}

/* ── LIVE SEARCH DROPDOWN ───────────────────────────────── */
.navbar-search { position: relative; }
.search-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff;
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  overflow: hidden;
  max-height: 400px;
  overflow-y: auto;
  animation: dropDown 0.2s ease;
}
.search-dropdown.open { display: block; }
@keyframes dropDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.search-result-item {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.75rem 1rem; text-decoration: none;
  border-bottom: 1px solid var(--dark-border);
  transition: background var(--transition);
}
.search-result-item:last-of-type { border-bottom: none; }
.search-result-item:hover { background: var(--purple-soft); }
.search-result-item img,
.search-result-placeholder {
  width: 48px; height: 36px; border-radius: 6px;
  object-fit: cover; flex-shrink: 0;
  background: var(--gradient-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.search-result-info  { flex: 1; min-width: 0; }
.search-result-title { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-meta  { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.search-loading {
  padding: 1rem; text-align: center; color: var(--text-muted); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.search-spinner {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--dark-border); border-top-color: var(--purple);
  animation: spin 0.7s linear infinite; display: inline-block;
}
.search-empty   { padding: 1rem; text-align: center; color: var(--text-muted); font-size: 0.88rem; }
.search-see-all {
  display: block; padding: 0.7rem 1rem; text-align: center;
  font-size: 0.82rem; font-weight: 700; color: var(--purple);
  background: var(--purple-soft); border-top: 1px solid var(--dark-border);
  transition: background var(--transition);
}
.search-see-all:hover { background: var(--purple); color: #fff; }

/* ── QUICK VIEW MODAL ───────────────────────────────────── */
.qv-modal {
  max-width: 700px; padding: 0; overflow: hidden;
  transform: scale(0.92); transition: transform 0.22s cubic-bezier(.22,.68,0,1.2);
}
.qv-modal.qv-open { transform: scale(1); }
.qv-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
.qv-image-wrap {
  background: var(--gradient-card);
  overflow: hidden;
}
.qv-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qv-placeholder {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center; font-size: 4.5rem;
}
.qv-info {
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
@media (max-width: 580px) {
  .qv-body { grid-template-columns: 1fr; }
  .qv-image-wrap { height: 200px; }
}

/* ── HEART BURST PARTICLES ──────────────────────────────── */
.heart-particle {
  position: absolute;
  font-size: 1rem;
  color: #ef4444;
  pointer-events: none;
  z-index: 9999;
  animation: heartFloat 0.8s ease-out forwards;
  line-height: 1;
}
@keyframes heartFloat {
  0%   { opacity: 1; transform: translate(0,0) scale(1); }
  100% { opacity: 0; transform: translate(var(--dx), calc(var(--dy) - 30px)) scale(0.4); }
}

/* ── TOAST NOTIFICATION ─────────────────────────────────── */
.sw-toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.8rem 1.25rem; border-radius: 10px;
  font-size: 0.88rem; font-weight: 600; color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transform: translateY(80px); opacity: 0;
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.3), opacity 0.3s ease;
  max-width: 320px;
}
.sw-toast--in  { transform: translateY(0); opacity: 1; }
.sw-toast--out { transform: translateY(80px); opacity: 0; }
.sw-toast--success { background: linear-gradient(135deg,#059669,#10b981); }
.sw-toast--error   { background: linear-gradient(135deg,#DC2626,#ef4444); }
.sw-toast--info    { background: linear-gradient(135deg,#250c77,#3a1a9e); }
.sw-toast--warning { background: linear-gradient(135deg,#D97706,#f59e0b); }
.sw-toast-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}

/* ============================================================
   COMPREHENSIVE MOBILE & RESPONSIVE STYLES
   Production-grade — covers all pages and components
============================================================ */

/* ── TABLET (≤ 1024px) ─────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 2.4rem; }
  .checkout-grid,
  .product-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .search-filters { flex-wrap: wrap; gap: 0.75rem; }
  .filter-group { min-width: calc(50% - 0.5rem); }
}

/* ── MOBILE (≤ 768px) ──────────────────────────────────── */
@media (max-width: 768px) {
  /* Typography */
  .hero-title { font-size: 1.9rem; line-height: 1.25; }
  .hero-sub   { font-size: 0.95rem; }
  .section    { padding: 3rem 0; }

  /* Navbar — dark mobile menu */
  .navbar { padding: 0 1rem; height: 60px; }
  .navbar-inner { height: 60px; }
  .navbar-brand img { height: 36px; }
  .navbar-nav.open {
    top: 60px;
    background: var(--dark-card);
    border: none;
    border-top: 1px solid var(--dark-border);
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
    z-index: 999;
    gap: 0;
    padding: 0.5rem 0;
  }
  .navbar-nav.open a {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--dark-border);
    color: var(--text-primary);
    font-size: 0.95rem;
  }
  .navbar-nav.open a:last-child { border-bottom: none; }
  .navbar-nav.open .btn { margin: 0.5rem 1.25rem; width: calc(100% - 2.5rem); text-align: center; }

  /* Search bar shows as full row below nav on mobile */
  .navbar-search {
    display: block;
    position: fixed; top: 60px; left: 0; right: 0;
    background: var(--dark-card);
    border-bottom: 1px solid var(--dark-border);
    padding: 0.5rem 1rem;
    z-index: 998;
  }
  .navbar-search input { width: 100%; box-sizing: border-box; }
  body { padding-top: 104px; } /* navbar 60 + search bar 44 */

  /* Hero */
  .hero { padding: 2.5rem 1rem 2.5rem; text-align: center; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }

  /* Product grid — 2 col on mobile */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .product-card-thumb { height: 150px; }

  /* Dashboard layout */
  .dashboard-layout { flex-direction: column; }
  .sidebar {
    width: 100%; min-height: auto; position: relative;
    padding: 0.75rem 1rem;
  }
  .sidebar-nav {
    display: flex; flex-wrap: wrap; gap: 0.25rem;
    flex-direction: row; padding: 0;
  }
  .sidebar-link {
    padding: 0.5rem 0.75rem; font-size: 0.8rem;
    border-radius: 6px; white-space: nowrap;
  }
  .sidebar-section-label { display: none; }
  .sidebar-brand { padding: 0.75rem 0; margin-bottom: 0.5rem; }
  .sidebar-brand img { height: 32px; }
  .dashboard-main { padding: 1.25rem 1rem; }
  .dashboard-header { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .dashboard-title { font-size: 1.4rem; }

  /* Stats grid */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stat-card { padding: 1rem; }
  .stat-value { font-size: 1.6rem; }

  /* Tables — horizontal scroll */
  .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table { min-width: 600px; }
  .table th, .table td { padding: 0.6rem 0.75rem; font-size: 0.82rem; white-space: nowrap; }

  /* Cards */
  .card { padding: 1.25rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .form-group { margin-bottom: 1rem; }
  .search-filters { flex-direction: column; gap: 0.75rem; }
  .filter-group { width: 100%; min-width: 0; }

  /* Category pills — horizontal scroll */
  .category-pills {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap; padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .category-pills::-webkit-scrollbar { display: none; }
  .category-pill { white-space: nowrap; flex-shrink: 0; }

  /* Auth box */
  .auth-box { padding: 1.5rem 1.25rem; margin: 1rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Checkout */
  .checkout-grid { grid-template-columns: 1fr; }

  /* Modal */
  .modal-box { width: 95vw; max-width: 95vw; padding: 1.5rem 1.25rem; margin: 1rem; }

  /* Badges & buttons */
  .btn-lg { padding: 0.7rem 1.5rem; font-size: 0.95rem; }

  /* Alert */
  .alert { padding: 0.75rem 1rem; font-size: 0.88rem; }

  /* Plan cards */
  .plan-grid { grid-template-columns: 1fr; gap: 1rem; }
  .plan-card { padding: 1.5rem; }

  /* Toast — full width on small screens */
  .sw-toast { left: 1rem; right: 1rem; max-width: none; }

  /* Upload area */
  .upload-area { padding: 1.5rem 1rem; }

  /* Section header */
  .section-header { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
}

/* ── SMALL MOBILE (≤ 480px) ────────────────────────────── */
@media (max-width: 480px) {
  /* Single column everything */
  .product-grid  { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr; }
  .plan-grid     { grid-template-columns: 1fr; }

  .hero-title    { font-size: 1.6rem; }
  .navbar-brand img { height: 30px; }

  /* Sidebar nav wraps tighter */
  .sidebar-link { font-size: 0.75rem; padding: 0.4rem 0.6rem; }
  .sidebar-link .icon { display: none; }

  /* Full-width buttons in forms */
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }

  /* Remove horizontal card padding on tiny screens */
  .card { padding: 1rem; border-radius: 10px; }

  /* Dashboard title smaller */
  .dashboard-title { font-size: 1.2rem; }

  /* Product card compact */
  .product-card-thumb { height: 130px; }
  .product-card-body  { padding: 0.75rem; }
  .product-card-title { font-size: 0.88rem; }
  .product-card-price { font-size: 1rem; }

  /* Table scroll hint */
  .table-responsive::before {
    content: "← Scroll to see more →";
    display: block;
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
  }

  /* Auth */
  .auth-box { padding: 1.25rem 1rem; margin: 0.5rem; }
  .auth-title { font-size: 1.4rem; }

  /* Footer */
  .footer-brand img { height: 40px; }
}

/* ── TOUCH / HOVER FIXES ───────────────────────────────── */
@media (hover: none) {
  /* Disable hover-only effects on touch devices */
  .product-card:hover { transform: none; box-shadow: var(--shadow); }
  .btn:hover { opacity: 0.92; }
  .sidebar-link:hover { background: var(--purple-soft); }
}

/* ── PRINT ─────────────────────────────────────────────── */
@media print {
  .navbar, .sidebar, .footer, .btn, .modal-overlay { display: none !important; }
  .dashboard-main { padding: 0; }
  body { background: #fff; color: #000; }
  .card { border: 1px solid #ddd; box-shadow: none; }
}

/* ── Product card placeholder ──────────────────────────── */
.product-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a0a4a 0%, #2d1060 50%, #3d1a0a 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; flex-direction: column; gap: 0.5rem;
}
