/* ── shopgrwmtrends.com ───────────────────────────────────────
   Soft, warm GRWM/beauty aesthetic — cream, blush, mauve.        */

:root {
  --bg:       #fff7f4;
  --bg-soft:  #fdeee9;
  --card:     #ffffff;
  --line:     #f2ddd6;
  --text:     #3a2a33;
  --muted:    #9c8189;
  --blush:    #ff7aa2;
  --peach:    #ffb27a;
  --mauve:    #c084a6;
  --plum:     #7a3f5f;
  --gold:     #b98a3e;
  --grad:     linear-gradient(120deg, #ff8fb1, #ff9d8a 55%, #c58ec0);
  --radius:   20px;
  --shadow:   0 18px 40px -22px rgba(150, 60, 100, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 85% -8%, #ffe3ec, transparent 60%),
    radial-gradient(800px 460px at -8% 6%, #ffeede, transparent 55%),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── hero ─────────────────────────────────────────────────── */
.hero { max-width: 900px; margin: 0 auto; padding: 60px 22px 20px; text-align: center; }
.hero-cat { padding-top: 46px; }

.brand {
  display: inline-flex; align-items: baseline; gap: 1px;
  text-decoration: none; margin-bottom: 26px;
  font-weight: 800; font-size: clamp(20px, 3.6vw, 26px); letter-spacing: -0.02em;
}
.brand .mark { color: var(--plum); }
.brand .mark b {
  font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand .dot { color: var(--muted); font-weight: 600; }

.tagline {
  font-size: clamp(27px, 5vw, 44px); line-height: 1.12; letter-spacing: -0.02em;
  margin: 0 0 16px; font-weight: 800; color: var(--plum);
}
.sub { color: var(--muted); font-size: clamp(15px, 2.4vw, 18px); max-width: 620px; margin: 0 auto 20px; line-height: 1.55; }

.ticker { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; font-size: 13px; color: var(--muted); }
.ticker .pill { background: #fff; border: 1px solid var(--line); padding: 6px 13px; border-radius: 999px; box-shadow: var(--shadow); }
.ticker .pill b { color: var(--blush); }

/* ── nav ──────────────────────────────────────────────────── */
.filters {
  position: sticky; top: 0; z-index: 5;
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  padding: 12px 16px; margin: 6px auto; max-width: 1100px;
  backdrop-filter: blur(8px);
}
.chip {
  text-decoration: none; display: inline-block;
  border: 1px solid var(--line); background: #fff; color: var(--text);
  padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 600;
  transition: transform .12s ease, border-color .12s ease;
}
.chip:hover { transform: translateY(-1px); border-color: var(--blush); }
.chip.active { background: var(--grad); border-color: transparent; color: #fff; font-weight: 800; }

/* ── section titles + tiles ───────────────────────────────── */
.section-title {
  max-width: 1100px; margin: 26px auto 6px; padding: 0 20px;
  font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--mauve); font-weight: 800;
}
.cat-tiles {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px;
  max-width: 1100px; margin: 8px auto; padding: 0 18px;
}
.tile {
  display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
  text-decoration: none; color: var(--text);
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px;
  box-shadow: var(--shadow); transition: transform .14s ease, border-color .14s ease;
}
.tile:hover { transform: translateY(-3px); border-color: var(--blush); }
.tile-emoji { font-size: 28px; }
.tile-label { font-weight: 800; font-size: 15px; color: var(--plum); }
.tile-count { font-size: 12px; color: var(--muted); }

/* ── grid + cards ─────────────────────────────────────────── */
.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px;
  max-width: 1100px; margin: 12px auto 40px; padding: 0 18px;
}
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px 18px; box-shadow: var(--shadow);
  transition: transform .16s ease, box-shadow .16s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(150,60,100,.4); }
.card .emoji { font-size: 44px; line-height: 1; margin-bottom: 10px; }
.card .cat { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--mauve); font-weight: 800; margin-bottom: 6px; }
.card h3 { font-size: 16px; line-height: 1.25; margin: 0 0 2px; color: var(--plum); letter-spacing: -.01em; }
.card .brandname { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.card .blurb { color: #6f5a63; font-size: 13.5px; line-height: 1.5; flex: 1 0 auto; margin: 0 0 12px; }
.card .srcs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.card .src { font-size: 10.5px; font-weight: 700; color: var(--mauve); background: var(--bg-soft); border: 1px solid var(--line); padding: 2px 7px; border-radius: 999px; }

.buy {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--grad); color: #fff; text-decoration: none; font-weight: 800; font-size: 13.5px;
  padding: 10px 14px; border-radius: 12px; transition: transform .12s ease, filter .12s ease;
}
.buy:hover { transform: translateY(-1px) scale(1.02); filter: brightness(1.05); }

.flag {
  position: absolute; top: 12px; right: 12px; font-size: 11px; font-weight: 800;
  color: var(--blush); background: #fff0f4; border: 1px solid #ffd4e1; padding: 3px 9px; border-radius: 999px;
}
.empty { text-align: center; color: var(--muted); max-width: 520px; margin: 30px auto; font-size: 15px; }

/* ── breadcrumb + footer ──────────────────────────────────── */
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--mauve); text-decoration: none; }
.breadcrumb span { opacity: .5; margin: 0 4px; }

.foot { max-width: 760px; margin: 0 auto; padding: 26px 22px 60px; text-align: center; }
.method { color: #6f5a63; font-size: 13px; line-height: 1.6; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow); }
.method b { color: var(--plum); }
.disclosure { color: var(--muted); font-size: 12.5px; line-height: 1.6; margin-top: 18px; }
.fine { color: #b7a3aa; font-size: 12px; margin-top: 12px; }

@media (max-width: 480px) {
  .grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .card { padding: 18px 14px; }
}
