/* Dashboard (no Tailwind) — styled to resemble screenshot */

:root{
  --bg: #fff5f7;
  --card: #ffffff;
  --pink-50:#fff0f5;
  --pink-100:#fde2e8;
  --pink-200:#fbcfe8;
  --pink-500:#ec4899;
  --rose-500:#f43f5e;
  --amber-500:#f59e0b;
  --gray-50:#f9fafb;
  --gray-100:#f3f4f6;
  --gray-400:#9ca3af;
  --gray-500:#6b7280;
  --gray-700:#374151;
  --gray-900:#111827;
}

*{box-sizing:border-box}
html,body{height:100%}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@700;800;900&display=swap');

body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--gray-900);
}

h1, h2, h3, h4, .dashHero__title, .dash__crumb, .tab, .giftCard__title {
  font-family: 'Outfit', sans-serif;
}

.dash{
  min-height:100vh;
  background:
    radial-gradient(circle at 12% 20%, rgba(236,72,153,.08), transparent 40%),
    radial-gradient(circle at 85% 18%, rgba(244,63,94,.08), transparent 45%),
    radial-gradient(circle at 75% 78%, rgba(236,72,153,.08), transparent 45%),
    var(--bg);
}

.dash__top{
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.dash__back{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:999px;
  text-decoration:none;
  color: var(--pink-500);
  background: rgba(255,255,255,.9);
  border:1px solid var(--pink-100);
}
.dash__crumb{
  display:flex;align-items:center;gap:8px;
  font-weight:800;
  color: var(--gray-700);
  font-size:14px;
}
.dash__crumbIcon{opacity:.8}
.dash__profile{
  display:flex;align-items:center;gap:10px;
}
.dash__userChip{
  display:flex;align-items:center;gap:8px;
  background: rgba(255,255,255,.95);
  border:1px solid var(--pink-100);
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  color: var(--gray-700);
}
.dash__avatar{
  width:22px;height:22px;border-radius:999px;
  display:grid;place-items:center;
  background: var(--pink-50);
}
.dash__logout{
  text-decoration:none;
  color: var(--gray-500);
  font-weight:800;
  font-size:12px;
}

.dash__main{
  max-width:1120px;
  margin:0 auto;
  padding: 8px 24px 40px 24px;
}

.dashHero{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  padding:22px 24px;
  border-radius:18px;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
  color:white;
  box-shadow: 0 20px 40px rgba(236,72,153,.22);
  position:relative;
  overflow:hidden;
}
.dashHero::after{
  content:"";
  position:absolute; inset:-40px -60px auto auto;
  width:220px;height:220px;
  background: rgba(255,255,255,.12);
  filter: blur(0);
  border-radius:999px;
  transform: rotate(25deg);
}
.dashHero__welcome{margin:0;font-size:12px;font-weight:900;opacity:.9}
.dashHero__title{margin:4px 0 6px 0;font-size:26px;font-weight:950}
.dashHero__sub{margin:0;font-size:12px;font-weight:900;opacity:.9}
.dashHero__note{margin:8px 0 0 0;max-width:420px;font-size:11px;font-weight:600;line-height:1.5;opacity:.85}
.dashHero__actions{display:flex;gap:10px;flex-wrap:wrap;position:relative;z-index:1}

.chip{
  text-decoration:none;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  letter-spacing:.02em;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.chip--ghost{
  color:white;
  border:1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.chip--solid{
  color: var(--pink-500);
  background: rgba(255,255,255,.95);
}

.tabs{
  margin-top: 14px;
  display:flex;
  gap:10px;
  align-items:center;
}
.tab{
  border:0;
  background: rgba(255,255,255,.9);
  border:1px solid var(--pink-100);
  color: var(--gray-700);
  padding:10px 14px;
  border-radius:12px;
  font-weight:900;
  font-size:12px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.tab--active{
  color: var(--pink-500);
  box-shadow: 0 12px 26px rgba(236,72,153,.12);
}
.tab__pill{
  background: var(--pink-50);
  color: var(--pink-500);
  border:1px solid var(--pink-100);
  font-size:10px;
  font-weight:950;
  padding:2px 8px;
  border-radius:999px;
}

.cards{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  min-height: 200px;
}
@media (max-width: 980px){
  .cards{grid-template-columns: repeat(2, 1fr);}
}
@media (max-width: 640px){
  .dash__main{padding-inline:16px}
  .dash__top{padding-inline:16px}
  .dashHero{flex-direction:column;align-items:flex-start}
  .cards{grid-template-columns: 1fr;}
}

.giftCard{
  background: rgba(255,255,255,.95);
  border:1px solid var(--pink-100);
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(17,24,39,.06);
}
.giftCard__thumb{
  height: 110px;
  background: linear-gradient(135deg, rgba(236,72,153,.14), rgba(244,63,94,.12));
  display:grid;place-items:center;
  position:relative;
}
.giftCard__thumbIcon{
  width:44px;height:44px;border-radius:14px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(255,255,255,.65);
  display:grid;place-items:center;
  font-size:22px;
  color: var(--pink-500);
}
.giftCard__body{padding:14px}
.giftCard__titleRow{display:flex;justify-content:space-between;gap:10px;align-items:center}
.giftCard__title{
  margin:0;
  font-weight:950;
  font-size:13px;
  color: var(--gray-900);
}
.pillStatus{
  font-size:10px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid var(--pink-100);
  background: var(--pink-50);
  color: var(--pink-500);
}
.pillStatus--published{
  background: rgba(245,158,11,.10);
  border-color: rgba(245,158,11,.18);
  color: var(--amber-500);
}
.giftCard__meta{
  margin-top:8px;
  display:flex;justify-content:space-between;align-items:center;
  color: var(--gray-500);
  font-size:11px;
  font-weight:800;
}
.giftCard__actions{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.btnSmall{
  flex:1 1 auto;
  min-width: 88px;
  border:1px solid var(--pink-100);
  background:white;
  color: var(--gray-700);
  padding:10px 12px;
  border-radius:12px;
  font-weight:950;
  font-size:12px;
  cursor:pointer;
}
.btnSmall--primary{
  background: #f59e0b;
  border-color: rgba(245,158,11,.3);
  color:white;
}
.btnSmall--danger{
  background: #fff;
  border-color: #fecaca;
  color: #dc2626;
}
.btnSmall:hover{filter:brightness(0.98)}

.dashFooter{
  margin-top: 34px;
  padding: 20px 4px;
  color: var(--gray-500);
  font-size:12px;
}
.dashFooter__brand{font-weight:950;color:var(--gray-700);margin-bottom:10px}
.dashFooter__links{
  display:flex; flex-wrap:wrap;
  gap:14px;
  margin-bottom:10px;
}
.dashFooter__links a{color:inherit;text-decoration:none;font-weight:800}
.dashFooter__links a:hover{color:var(--pink-500)}
.dashFooter__fine{opacity:.9}

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--pink-100);
  color: var(--gray-700);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.18);
  z-index: 9999;
}
.hidden{display:none !important;}

