/* ==========================================================================
   分分鐘 Minute Store — 全站共用樣式
   Static handoff build — plain HTML + CSS, no framework, no build step.
   ========================================================================== */

:root {
  --black: #0c0c0f;
  --charcoal: #17171c;
  --charcoal-2: #202027;
  --line: #2b2b33;
  --pink: #ff2f76;
  --pink-dark: #d81558;
  --pink-soft: #ffe3ec;
  --cream: #f7f4ef;
  --white: #ffffff;
  --ink: #16161a;
  --gray: #8a8a94;
  --gray-light: #c7c6cf;

  --font-display: "Noto Sans TC", "Space Grotesk", sans-serif;
  --font-body: "Noto Sans TC", sans-serif;
  --font-num: "Space Grotesk", "Noto Sans TC", sans-serif;

  --container: 1160px;
  --radius: 18px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: var(--pink); }
a:hover { color: var(--pink-dark); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--black);
  color: var(--gray-light);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar strong { color: var(--white); font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e9e5db;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.01em;
}
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 15px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: var(--ink);
  opacity: 0.65;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { opacity: 1; color: var(--ink); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.main-nav a.nav-cta { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--pink-dark); color: var(--white); }
.btn-outline-dark { border-color: var(--line); color: var(--white); }
.btn-outline-dark:hover { border-color: var(--pink); color: var(--white); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--black); color: var(--white); }

/* ---------- Section basics ---------- */
.section { padding: 140px 0; }
.section-tight { padding: 88px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-charcoal { background: var(--charcoal); color: var(--white); }
.section-pink { background: var(--pink); color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.section-dark .eyebrow, .section-charcoal .eyebrow { color: #ff8fb4; }
.section-dark .eyebrow::before, .section-charcoal .eyebrow::before { background: #ff8fb4; }

.h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.3;
}
.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray);
}
.section-dark .lead, .section-charcoal .lead { color: var(--gray-light); }

.section-head { max-width: 760px; margin: 0 0 80px; }
.section-head .h2 { white-space: nowrap; }
@media (max-width: 720px) { .section-head .h2 { white-space: normal; } }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 420px at 85% 8%, rgba(255, 47, 118, 0.35), transparent 70%),
    radial-gradient(700px 500px at 8% 90%, rgba(255, 47, 118, 0.16), transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.hero-copy .badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
}
.badge b { color: var(--pink); font-family: var(--font-num); }
.hero-copy p.lead { margin: 22px 0 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  aspect-ratio: 4/5;
  border-radius: 28px;
  padding-bottom: 40px;
}

/* ---------- Image placeholder ---------- */
.ph {
  border-radius: var(--radius);
  border: 1.5px dashed rgba(255, 255, 255, 0.25);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 14px),
    var(--charcoal-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gray-light);
  font-size: 13px;
  line-height: 1.6;
  padding: 24px;
  min-height: 160px;
}
.ph span { max-width: 220px; }
.ph.on-light {
  border-color: rgba(0,0,0,0.15);
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.03) 0 2px, transparent 2px 14px),
    #efece5;
  color: var(--gray);
}
.ph-tag {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--pink);
  line-height: 1;
}
.stat .label {
  margin-top: 10px;
  font-size: 14px;
  color: var(--gray-light);
  letter-spacing: 0.02em;
}

/* ---------- Product split rows ---------- */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.product-row.reverse .product-visual { order: 2; }
.product-row .tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
}
.product-copy p.lead { margin: 18px 0 28px; }

/* ---------- Feature grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }

.feature-card {
  background: var(--white);
  border: 1px solid #e9e5db;
  border-radius: var(--radius);
  padding: 44px 36px;
}
.feature-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--gray); font-size: 15px; line-height: 1.7; }

.section-dark .feature-card, .section-charcoal .feature-card {
  background: var(--charcoal-2);
  border-color: var(--line);
}
.section-dark .feature-card p, .section-charcoal .feature-card p { color: var(--gray-light); }
.section-dark .feature-card .icon, .section-charcoal .feature-card .icon { background: var(--pink); }

/* ---------- Comparison table ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare .col {
  border-radius: var(--radius);
  padding: 32px;
}
.compare .col.bad { background: #f1efe9; border: 1px solid #e2ded2; }
.compare .col.good { background: var(--ink); color: var(--white); }
.compare .col h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 18px;
}
.compare .col.good h4 { color: #ff8fb4; }
.compare ul li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 15px;
}
.compare .col.good ul li { border-top-color: rgba(255,255,255,0.12); }
.compare ul li:first-child { border-top: none; }

/* ---------- Spec table ---------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e9e5db;
}
.spec-table tr:nth-child(even) { background: #faf8f3; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: 16px 24px;
  font-size: 15px;
  border-bottom: 1px solid #eee9dd;
}
.spec-table th {
  width: 220px;
  color: var(--gray);
  font-weight: 600;
}
.spec-table td { font-weight: 600; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

/* ---------- Video gallery ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card {
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.video-card .play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.video-card .play-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.video-card iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Accordion / FAQ ---------- */
.faq { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--pink);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  padding-bottom: 24px;
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.8;
  max-width: 640px;
}
.section:not(.section-dark):not(.section-charcoal) .faq-item p { color: var(--gray); }
.section:not(.section-dark):not(.section-charcoal) .faq-item { border-color: #e5e1d5; }

/* ---------- Reasons grid (加盟優勢) ---------- */
.reason-card {
  border: 1px solid #e9e5db;
  border-radius: var(--radius);
  padding: 40px 32px;
  background: var(--white);
}
.reason-card .num {
  font-family: var(--font-num);
  font-weight: 700;
  color: #e3ddcd;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 12px;
}
.reason-card h3 { font-size: 18px; margin-bottom: 10px; }
.reason-card p { color: var(--gray); font-size: 14.5px; line-height: 1.75; }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: 28px;
  padding: 64px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { max-width: 520px; }
.cta-banner .btn-dark { background: var(--black); }
.cta-banner .btn-dark:hover { background: #000; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 13px;
  color: var(--gray-light);
  padding: 20px 0;
}
.breadcrumb a { color: var(--gray-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span.sep { margin: 0 8px; opacity: 0.5; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--gray-light);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 280px; color: var(--gray); }
.footer-col h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col li { margin-bottom: 12px; font-size: 14.5px; }
.footer-col a { color: var(--gray-light); }
.footer-col a:hover { color: var(--white); }
.footer-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
}
.footer-map iframe { width: 100%; height: 100%; border: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/10; }
  .product-row, .product-row.reverse { grid-template-columns: 1fr; }
  .product-row.reverse .product-visual { order: 0; }
  .grid-3, .grid-4, .compare, .video-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .site-header .container { position: relative; }
  .nav-toggle { display: flex; }
  .site-header > .container > .btn-pink { display: none; }

  /* Nav becomes a dropdown panel */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #e9e5db;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.14);
    padding: 6px 20px 18px;
  }
  .site-header.nav-open .main-nav { display: flex; }
  .main-nav a {
    opacity: 1;
    font-size: 17px;
    padding: 15px 4px;
    border-bottom: 1px solid #efece5;
  }
  .main-nav a.active { color: var(--pink); }
  .main-nav a.active::after { display: none; }
  .main-nav a.nav-cta {
    display: block;
    margin-top: 16px;
    padding: 14px 26px;
    border-bottom: 0;
    color: #fff;
    text-align: center;
  }

  .hero { padding: 72px 0 64px; }
  .topbar .container { justify-content: center; text-align: center; }
  .section { padding: 64px 0; }
  .grid-3, .grid-4, .compare, .video-grid, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 28px; flex-direction: column; text-align: center; justify-content: center; }
  .cta-banner h2 { max-width: none; }
  .container { padding: 0 20px; }
  .stats { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   Brand logo images (real assets from minute-store.com)
   ========================================================================== */
.brand-logo { height: 48px; width: auto; display: block; }
@media (max-width: 600px) { .brand-logo { height: 40px; } }

.footer-brand .brand { margin-bottom: 16px; }
.footer-mascot { height: 86px; width: auto; display: block; margin-bottom: 18px; }

/* ==========================================================================
   Real content images (replace dashed placeholders)
   ========================================================================== */
.media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal-2);
}
.media img { display: block; width: 100%; height: auto; }

/* Hero image keeps its natural ratio inside a rounded frame */
.hero-visual.media {
  aspect-ratio: auto;
  padding-bottom: 0;
  border-radius: 28px;
}
.hero-visual.media img { border-radius: 28px; }

/* Product split photos: constrained portrait crop for consistency */
.product-visual.media {
  aspect-ratio: 4 / 5;
  min-height: 0;
}
.product-visual.media img { height: 100%; object-fit: cover; object-position: center top; }

@media (max-width: 980px) {
  .hero-visual.media { aspect-ratio: auto; }
}

/* ==========================================================================
   TikTok 影片嵌入
   ========================================================================== */
.tiktok-wrap { display: flex; justify-content: center; margin-top: 52px; }
.tiktok-wrap iframe {
  width: 100%;
  max-width: 340px;
  height: 760px;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
}

/* ==========================================================================
   Q&A 側邊圖片版位
   ========================================================================== */
.qa-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: stretch;
}
.qa-media { min-height: 320px; }
.qa-media img { height: 100%; object-fit: cover; object-position: center; }
@media (max-width: 900px) {
  .qa-layout { grid-template-columns: 1fr; gap: 36px; }
  .qa-media { min-height: 240px; }
}

/* ==========================================================================
   影片 + 三重點 雙欄版面（左影片 / 右垂直重點）
   ========================================================================== */
.video-feature {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: center;
}
.video-feature .tiktok-wrap { margin-top: 0; }
.video-points { display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 900px) {
  .video-feature { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   分頁標籤 Tabs（材料展示）
   ========================================================================== */
.tab-btns { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
  padding: 12px 26px;
  border-radius: 999px;
  border: 1.5px solid #e2ddd3;
  background: #fff;
  color: var(--ink);
  opacity: 0.7;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.tab-btn:hover { opacity: 1; border-color: var(--pink); }
.tab-btn.active { background: var(--pink); border-color: var(--pink); color: #fff; opacity: 1; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tabfade 0.3s ease; }
@keyframes tabfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.func-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
.func-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--ink); }
.func-list .n {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-num); font-weight: 700; font-size: 13px;
}
@media (max-width: 560px) { .func-list { grid-template-columns: 1fr; } }

/* ==========================================================================
   耗材規格清單（貼膜機 嚴選耗材）
   ========================================================================== */
.spec-list {
  counter-reset: spec;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 22px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid #ececec;
}
.spec-list li {
  counter-increment: spec;
  position: relative;
  padding-left: 30px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #444;
}
.spec-list li::before {
  content: counter(spec);
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
