:root {
  /* Glam Beauty Studio & Supplies Ltd — Hot Pink + Gold */
  --berry:        #c8006b;    /* primary: glam pink/magenta */
  --berry-mid:    #9d0052;    /* deep pink */
  --berry-soft:   #e0368c;    /* mid pink */
  --blush:        #f7c5dc;    /* light pink blush */
  --blush-light:  #fce0ee;    /* very light blush */
  --blush-soft:   #fff0f7;    /* pale pink wash */

  /* Gold */
  --gold:         #c9a84c;    /* warm gold */
  --gold-light:   #e8c96e;    /* bright gold */
  --gold-soft:    #faf0dc;    /* gold wash */

  /* Neutrals */
  --ivory:        #fdfaf8;    /* warm white background */
  --ivory-warm:   #faf5f0;    /* slightly warmer */
  --paper:        #f5ede8;    /* blush-paper */
  --line:         #f0d8e4;    /* soft pink line */

  /* Dark */
  --deep:         #1a0c0c;    /* very dark */
  --deep-soft:    #2d1020;    /* dark card */

  /* Ink */
  --ink:          #1a0c0c;
  --ink-soft:     #4a2535;
  --ink-mid:      #7a5060;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(200,0,107,.10);
  --shadow-md:    0 8px 24px rgba(200,0,107,.15);
  --shadow-lg:    0 24px 56px rgba(200,0,107,.20);

  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', -apple-system, sans-serif;
  --script: 'Dancing Script', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--deep); overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 3vw, 2rem); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── Top Bar ── */
.top-bar {
  background: var(--berry);
  color: rgba(255,255,255,.95);
  font-size: 12px;
  padding: 9px 0;
  text-align: center;
  letter-spacing: .06em;
}
.top-bar strong { color: var(--gold-light); }
.top-bar a { color: var(--gold-light); border-bottom: 1px solid transparent; transition: border .2s; }
.top-bar a:hover { border-bottom-color: var(--gold-light); }

/* ── Navigation ── */
.nav {
  background: rgba(253,250,246,.97);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { height: 56px; }
.nav-logo img { height: 100%; width: auto; }
.nav-links { display: flex; gap: 30px; align-items: center; font-size: 13.5px; }
.nav-links a {
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--berry-soft);
  transition: width .3s;
}
.nav-links a:hover { color: var(--berry); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  background: transparent;
  transition: background .2s;
  position: relative;
  cursor: pointer;
}
.nav-icon-btn:hover { background: var(--blush-soft); }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--berry);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.menu-toggle { display: none; background: transparent; padding: 8px; border: none; cursor: pointer; }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav { position: sticky; top: 0; z-index: 100; }
  .nav-inner { padding: 10px 16px; }
  .nav-logo { height: 48px; }
  .top-bar { font-size: 11px; padding: 7px 0; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  font-family: var(--sans);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary {
  background: var(--berry);
  color: #fff;
  box-shadow: 0 6px 20px rgba(107,31,58,.35);
}
.btn-primary:hover {
  background: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(107,31,58,.5);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 20px rgba(201,151,58,.4);
}
.btn-gold:hover { background: #b5832e; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--berry);
  border: 2px solid var(--berry);
}
.btn-outline:hover { background: var(--berry); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); transform: translateY(-2px); }
.btn-blush {
  background: var(--blush);
  color: var(--berry);
  box-shadow: 0 6px 20px rgba(242,167,192,.45);
}
.btn-blush:hover { background: var(--blush-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 11px; }

/* ── Section spacing ── */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--berry-soft);
  font-weight: 700;
  margin-bottom: 14px;
  font-family: var(--sans);
}
.section-header p { font-size: 1.1rem; color: var(--ink-mid); max-width: 520px; margin: 18px auto 0; }

/* ── Product Cards ── */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  border: 1px solid var(--line);
}
.product-card:hover { transform: translateY(-5px); border-color: var(--blush); box-shadow: var(--shadow-lg); }
.product-card-img {
  aspect-ratio: 1;
  background: var(--blush-soft);
  overflow: hidden;
  position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--berry);
  color: #fff;
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
}
.product-card-tag.new-tag { background: var(--gold); }
.product-card-info { padding: 20px; text-align: center; }
.product-card-info h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-card-cat {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 8px;
}
.product-card-price {
  font-size: 15px;
  color: var(--berry);
  font-weight: 700;
  margin-bottom: 14px;
}

/* ── Page Header ── */
.page-header {
  background: linear-gradient(135deg, var(--berry) 0%, var(--berry-mid) 60%, var(--berry-soft) 100%);
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,151,58,.3) 0%, transparent 60%);
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  letter-spacing: .06em;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.4); }
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header h1 em { color: var(--gold-light); font-style: italic; }
.page-header p { color: rgba(255,255,255,.8); max-width: 500px; }

/* ── Category pills ── */
.cat-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.cat-pill {
  padding: 10px 22px;
  border: 2px solid var(--line);
  background: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.cat-pill:hover { border-color: var(--berry); color: var(--berry); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cat-pill.active { background: var(--berry); color: #fff; border-color: var(--berry); box-shadow: 0 6px 18px rgba(107,31,58,.3); }
@media (max-width: 720px) { .cat-pill { padding: 8px 16px; font-size: 11px; } }

/* ── Shop grid ── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 500px) { .products-grid { grid-template-columns: 1fr; } }

/* ── Cart / Form ── */
.cart-layout { padding: 60px 0 100px; max-width: 900px; margin: 0 auto; }
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
.cart-table th { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mid); font-weight: 600; padding: 0 0 16px; border-bottom: 2px solid var(--line); text-align: left; }
.cart-table td { padding: 20px 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-item-thumb { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; background: var(--blush-soft); }
.cart-item-name { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 4px; }
.cart-item-meta { font-size: 12px; color: var(--ink-mid); }
.qty-ctrl { display: inline-flex; align-items: center; gap: 12px; border: 1.5px solid var(--line); border-radius: 6px; padding: 6px 14px; }
.qty-ctrl button { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--ink-soft); padding: 0 4px; line-height: 1; }
.qty-ctrl span { min-width: 24px; text-align: center; font-weight: 600; font-size: 15px; }
.remove-btn { background: none; border: none; cursor: pointer; color: var(--ink-mid); padding: 4px; transition: color .2s; }
.remove-btn:hover { color: var(--berry); }
.cart-summary { background: var(--blush-soft); border: 1px solid var(--line); border-radius: 12px; padding: 32px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.summary-row:last-of-type { border-bottom: none; font-size: 16px; font-weight: 700; padding-top: 16px; color: var(--berry); }

/* ── Checkout / Forms ── */
.checkout-layout { padding: 60px 0 100px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  transition: border-color .25s, box-shadow .25s;
}
.form-input:focus { outline: none; border-color: var(--berry-soft); box-shadow: 0 0 0 3px rgba(107,31,58,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-summary-panel { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 32px; height: fit-content; }
.order-item { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.order-item:last-of-type { border-bottom: none; }
.order-item-thumb { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; background: var(--blush-soft); flex-shrink: 0; }
@media (max-width: 860px) { .checkout-layout { grid-template-columns: 1fr; } }

/* ── Footer ── */
footer {
  background: var(--deep);
  color: rgba(255,255,255,.85);
  padding: 80px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,.6); margin-top: 16px; max-width: 260px; }
.footer-logo img { height: 64px; width: auto; filter: brightness(0) invert(1) opacity(.9); }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: rgba(255,255,255,.6);
  transition: all .25s;
}
.footer-social a:hover { background: var(--berry); color: #fff; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--gold-light); }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ── App tray (mobile bottom nav) ── */
.app-tray {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,10,16,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  z-index: 200;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 960px) { .app-tray { display: flex; } body { padding-bottom: 64px; } }
.app-tray-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255,255,255,.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  transition: color .2s;
  position: relative;
}
.app-tray-btn svg { width: 22px; height: 22px; }
.app-tray-btn:hover, .app-tray-btn.active { color: var(--blush); }
.app-tray-tooltip { font-size: 9px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.app-tray-btn .badge {
  position: absolute;
  top: 2px; right: 8px;
  background: var(--berry);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: grid; place-items: center;
}

/* ── Mobile nav drawer ── */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
  pointer-events: none;
}
.nav-drawer.open { visibility: visible; pointer-events: all; }
.nav-drawer-bg {
  position: absolute;
  inset: 0;
  background: rgba(26,10,16,.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s;
  cursor: pointer;
}
.nav-drawer.open .nav-drawer-bg { opacity: 1; }
.nav-drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 310px;
  background: var(--ivory);
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blush-soft);
  display: grid; place-items: center;
  cursor: pointer;
  border: none;
  color: var(--berry);
  margin-bottom: 24px;
}
.drawer-logo { margin-bottom: 32px; }
.drawer-logo img { height: 52px; }
.drawer-links { display: flex; flex-direction: column; gap: 6px; }
.drawer-links a {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .2s;
}
.drawer-links a:hover { background: var(--blush-soft); color: var(--berry); }
.drawer-links a span { font-size: 18px; }
.drawer-divider { height: 1px; background: var(--line); margin: 16px 0; }
.drawer-social { display: flex; gap: 12px; margin-top: auto; padding-top: 24px; }
.drawer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blush-soft);
  display: grid; place-items: center;
  color: var(--berry);
}

/* ── Modals ── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,10,16,.7);
  backdrop-filter: blur(6px);
  z-index: 400;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 16px;
  overflow-y: auto;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--ivory);
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  padding: 48px;
  position: relative;
  animation: slideUp .35s cubic-bezier(.4,0,.2,1);
}
@keyframes slideUp { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform: translateY(0); } }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blush-soft);
  display: grid; place-items: center;
  font-size: 18px;
  cursor: pointer;
  border: none;
  color: var(--berry);
  line-height: 1;
}
.modal-header h3 { font-size: 1.6rem; margin-bottom: 6px; }
.modal-header p { font-size: 14px; color: var(--ink-mid); margin-bottom: 28px; }
.modal-body {}
.search-tag {
  padding: 7px 16px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  letter-spacing: .04em;
  transition: all .2s;
  display: inline-block;
  text-decoration: none;
}
.search-tag:hover { border-color: var(--berry); color: var(--berry); }

/* ── Reviews page ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 32px; }
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author { font-weight: 700; font-size: 13px; color: var(--berry); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--line); padding: 28px 0; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 24px;
}
.faq-question h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--blush-soft); display: grid; place-items: center; flex-shrink: 0; color: var(--berry); transition: all .3s; }
.faq-item.open .faq-icon { background: var(--berry); color: #fff; transform: rotate(45deg); }
.faq-answer { display: none; padding-top: 16px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.8; max-width: 680px; }
.faq-item.open .faq-answer { display: block; }

/* ── Blog/Journal ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { border-radius: 14px; overflow: hidden; background: #fff; border: 1px solid var(--line); transition: transform .4s, box-shadow .4s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/9; background: var(--blush-soft); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 28px; }
.blog-tag { display: inline-block; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; color: var(--berry-soft); background: var(--blush-soft); padding: 5px 12px; border-radius: 4px; margin-bottom: 12px; }
.blog-card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-card-body p { font-size: 13.5px; color: var(--ink-mid); line-height: 1.7; }
.blog-card-footer { padding: 0 28px 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--ink-mid); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── Misc utility ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-berry { color: var(--berry); }
.divider { height: 1px; background: var(--line); margin: 40px 0; }
.sparkle { display: inline-block; }
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--blush-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--berry);
}
.empty-state { text-align: center; padding: 80px 20px; grid-column: 1 / -1; }
.empty-state h3 { font-style: italic; margin-bottom: 12px; }

/* ── Ezy Analytics ── */
