/* Wood & Monk — editorial lifestyle 2025–2026
   Cream / blush / wood · Fraunces + DM Sans · warm & playful */

:root {
  --cream: #faf7f2;
  --cream-dark: #f0e8df;
  --blush: #f3d5cb;
  --blush-deep: #e5bdb0;
  --blush-soft: #faf0eb;
  --wood: #3d2618;
  --wood-mid: #5c3a28;
  --wood-soft: #8b6348;
  --accent: #c45c4a;
  --accent-hover: #a84838;
  --accent-soft: #f0d4ce;
  --text: #2a1f17;
  --text-muted: #5c4a3c;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(61, 38, 24, 0.06);
  --shadow: 0 8px 28px rgba(61, 38, 24, 0.08);
  --shadow-lg: 0 16px 48px rgba(61, 38, 24, 0.12);
  --shadow-lift: 0 20px 40px rgba(61, 38, 24, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
  --measure: 40rem;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--accent-hover); }
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

code {
  font-size: 0.9em;
  background: var(--blush-soft);
  padding: 0.15em 0.4em;
  border-radius: 6px;
  color: var(--wood-mid);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--wood);
  color: var(--cream);
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ── Header: frosted glass ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(229, 189, 176, 0.45);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--wood);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.logo:hover {
  color: var(--accent);
  transform: translateY(-1px);
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.logo:hover .logo-mark {
  transform: rotate(-6deg) scale(1.04);
  box-shadow: var(--shadow);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--font-display);
}
.logo-text span {
  display: block;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--wood-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1.5px solid var(--blush-deep);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.nav-toggle:hover {
  background: var(--blush-soft);
  border-color: var(--wood-soft);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--wood);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blush);
  padding: 0.75rem 1.5rem 1.25rem;
  box-shadow: var(--shadow);
}
.site-nav.is-open { display: block; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: block;
  padding: 0.8rem 0.85rem;
  color: var(--wood);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: background 0.2s var(--ease), color 0.2s;
}
.site-nav a:hover {
  background: var(--blush-soft);
  color: var(--wood);
}
.site-nav a[aria-current="page"] {
  background: var(--blush);
  color: var(--wood);
  font-weight: 600;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
    box-shadow: none;
  }
  .site-nav ul {
    display: flex;
    gap: 0.15rem;
    align-items: center;
  }
  .site-nav a {
    padding: 0.5rem 0.9rem;
    font-size: 0.92rem;
  }
}

/* ── Main layout ── */
main {
  flex: 1;
  width: 100%;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.section {
  padding: 3.5rem 0;
}
.section + .section {
  border-top: 1px solid rgba(229, 189, 176, 0.5);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--wood);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 600;
}
h1 {
  font-size: clamp(2.15rem, 5.5vw, 3.35rem);
  margin: 0 0 1.15rem;
  font-weight: 650;
}
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.05rem);
  margin: 0 0 0.85rem;
}
h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  margin: 0 0 0.45rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: var(--measure);
  margin: 0 0 1.75rem;
  line-height: 1.7;
}

.muted { color: var(--text-muted); }
.small { font-size: 0.9rem; }

/* ── Hero: editorial asymmetric ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.5rem 4.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(243, 213, 203, 0.9) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(240, 212, 206, 0.7) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 90%, rgba(229, 189, 176, 0.45) 0%, transparent 55%),
    linear-gradient(165deg, var(--blush-soft) 0%, var(--cream) 45%, var(--cream-dark) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.55;
}
.hero::before {
  width: 280px;
  height: 280px;
  background: var(--blush);
  top: -60px;
  right: 8%;
}
.hero::after {
  width: 200px;
  height: 200px;
  background: var(--accent-soft);
  bottom: 5%;
  left: -40px;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    text-align: left;
  }
  .hero .btn-row { justify-content: flex-start; }
  .hero .lead { margin-left: 0; margin-right: 0; text-align: left; }
  .hero h1 { max-width: 14ch; }
}

.hero-copy { position: relative; }

.hero h1 {
  max-width: 16ch;
}

@media (max-width: 799px) {
  .hero { text-align: center; padding-top: 2.75rem; }
  .hero h1 { margin-left: auto; margin-right: auto; }
  .hero .lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero-visual { order: -1; }
}

.hero-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border-radius: 50%;
  background:
    linear-gradient(145deg, var(--blush) 0%, var(--blush-deep) 100%);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(229, 189, 176, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood-soft);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
  position: relative;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1.5px dashed rgba(139, 99, 72, 0.25);
  pointer-events: none;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  position: relative;
  z-index: 1;
}
.hero-photo:has(img)::before { display: none; }
.hero-photo:has(img) {
  padding: 0;
  color: transparent;
  font-size: 0;
}

@media (min-width: 800px) {
  .hero-photo {
    width: min(280px, 100%);
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: var(--radius-xl);
  }
  .hero-photo::before {
    border-radius: calc(var(--radius-xl) - 8px);
  }
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wood-mid);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(229, 189, 176, 0.6);
  box-shadow: var(--shadow-sm);
}

/* Page hero (interior pages) */
.page-hero {
  padding-bottom: 0.5rem;
  border: none !important;
}
.page-hero h1 { max-width: 20ch; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.65rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.2s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(196, 92, 74, 0.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(196, 92, 74, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--wood);
  border-color: var(--wood);
}
.btn-secondary:hover {
  background: var(--wood);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: var(--white);
  color: var(--wood);
  border-color: var(--blush-deep);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  background: var(--blush-soft);
  color: var(--wood);
  border-color: var(--blush-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.btn-row.left { justify-content: flex-start; }

.btn-lg {
  padding: 1.05rem 1.9rem;
  font-size: 1.05rem;
}

/* ── Cards ── */
.card-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
@media (min-width: 560px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(229, 189, 176, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--blush-deep);
}

.card-img {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(145deg, var(--cream-dark) 0%, var(--blush-soft) 50%, var(--blush) 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: var(--wood-soft);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  padding: 1.35rem 1.25rem 1.5rem;
  overflow: hidden;
  position: relative;
  letter-spacing: 0.02em;
  gap: 0.15rem;
}
.card-img::before {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px dashed rgba(139, 99, 72, 0.28);
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: inset 0 0 0 6px rgba(250, 247, 242, 0.35);
}
.card:hover .card-img {
  background:
    linear-gradient(145deg, var(--blush-soft) 0%, var(--blush) 60%, var(--blush-deep) 100%);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Hide decorative frame / text layout when real image is present */
.card-img:has(img) {
  padding: 0;
  color: transparent;
  font-size: 0;
}
.card-img:has(img)::before { display: none; }
.card:hover .card-img:has(img) {
  background: transparent;
}

.card-cat {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.card p {
  margin: 0;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.card .btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
}

/* Category sections */
.cat-section {
  margin-top: 3.25rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.cat-section:first-of-type { margin-top: 2rem; }
.cat-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 0.35rem;
}
.cat-header h2 { margin: 0; }
.cat-tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--wood-soft);
  background: var(--blush-soft);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--blush);
}

/* Placeholder callouts */
.placeholder {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--blush-soft) 100%);
  border: 1.5px dashed var(--accent);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  font-size: 0.9rem;
  color: var(--wood);
  margin: 1.15rem 0;
}
.placeholder strong { color: var(--accent-hover); }

/* TikTok embeds */
.embed-grid {
  display: grid;
  gap: 1.35rem;
  margin: 1.75rem 0;
}
@media (min-width: 640px) {
  .embed-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .embed-grid { grid-template-columns: repeat(3, 1fr); }
}
.embed-slot {
  aspect-ratio: 9 / 16;
  max-height: 480px;
  background:
    linear-gradient(160deg, var(--cream-dark) 0%, var(--blush-soft) 100%);
  border: 1.5px dashed var(--wood-soft);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  color: var(--wood-soft);
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}
.embed-slot:hover {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--blush-soft) 0%, var(--blush) 100%);
}

/* Sticky mobile CTA — refined, not chunky */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-top: 1px solid rgba(229, 189, 176, 0.5);
  box-shadow: 0 -8px 28px rgba(61, 38, 24, 0.08);
  justify-content: center;
  gap: 0.65rem;
}
.sticky-cta .btn {
  flex: 1;
  max-width: 180px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .sticky-cta.is-visible { display: flex; }
  body.has-sticky-cta { padding-bottom: 4.75rem; }
}

/* ── Footer: multi-column ── */
.site-footer {
  background: var(--wood);
  color: var(--cream);
  padding: 3.5rem 1.5rem 2rem;
  margin-top: auto;
}
.site-footer a {
  color: var(--blush);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--white); }

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem 2.5rem;
}
@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.footer-brand-mark img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.footer-col-title {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blush-deep);
  margin: 0 0 0.85rem;
}
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-nav a {
  font-weight: 500;
  font-size: 0.95rem;
}
.footer-nav a:hover { text-decoration: underline; text-underline-offset: 3px; }

.footer-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  opacity: 0.7;
  border-top: 1px solid rgba(245, 221, 212, 0.2);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  line-height: 1.55;
}

/* About / collaborate prose */
.prose { max-width: var(--measure); }
.prose p { margin: 0 0 1.2rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.2rem; }
.prose li { margin-bottom: 0.45rem; }

.highlight-box {
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.35rem 1.6rem;
  margin: 1.75rem 0;
  box-shadow: var(--shadow);
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* Follow / Shop CTA strips */
.follow-cta-strip {
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(243, 213, 203, 0.7) 0%, transparent 60%),
    linear-gradient(135deg, var(--blush-soft) 0%, var(--cream) 70%);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--blush);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.follow-cta-strip.section + .section,
.section + .follow-cta-strip.section {
  border-top: none;
}

.shop-cta-strip {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  border: 1px solid rgba(229, 189, 176, 0.55);
  box-shadow: var(--shadow);
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}
.shop-cta-strip .lead { max-width: 42rem; }
.shop-products-heading {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
}

.shop-product-grid { margin-top: 1.15rem; }
.shop-product-card { position: relative; }

/* Badges — refined, not clipart */
.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
}

.badge-tiktok {
  background: var(--wood);
  color: var(--cream);
}

.badge-affiliate {
  background: var(--blush-soft);
  color: var(--wood-mid);
  border: 1px solid var(--blush);
}

.badge-replace {
  background: rgba(196, 92, 74, 0.1);
  color: var(--accent-hover);
  border: 1px dashed var(--accent);
}

/* Favourites TikTok Shop banner */
.tiktok-shop-banner {
  margin: 2rem 0 0.75rem;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(243, 213, 203, 0.6) 0%, transparent 55%),
    linear-gradient(120deg, var(--blush-soft) 0%, var(--cream) 50%, var(--white) 100%);
  border: 1px solid var(--blush);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.65rem;
  box-shadow: var(--shadow-sm);
}

.tiktok-shop-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
}

.tiktok-shop-banner-title {
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}

.tiktok-shop-banner .btn { flex-shrink: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .card:hover,
  .btn:hover,
  .logo:hover { transform: none; }
}
