:root {
  --ink: #292329;
  --ink-soft: #534b52;
  --muted: #7f767d;
  --muted-light: #a399a1;
  --line: #ebe6e9;
  --line-strong: #ddd5da;
  --page: #ffffff;
  --surface: #faf8f9;
  --surface-2: #f6f3f5;
  --pink: #e84f79;
  --pink-dark: #c93e66;
  --pink-soft: #fff0f4;
  --pink-soft-2: #fff7f9;
  --green: #3c8d72;
  --shadow-sm: 0 8px 24px rgba(55, 36, 46, 0.06);
  --shadow-md: 0 18px 48px rgba(55, 36, 46, 0.10);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(232, 79, 121, .32);
  outline-offset: 3px;
}
svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.cp-site-main { min-height: 55vh; }

/* Preview notice */
.cp-demo-notice {
  background: #fff8fa;
  border-bottom: 1px solid #f3dfe5;
  color: #6b5f66;
  font-size: 11px;
}
.cp-demo-notice-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cp-demo-notice p { margin: 0; }
.cp-demo-notice a { color: var(--pink-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.cp-demo-label {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
}
.cp-plugin-warning { padding: 12px 16px; text-align: center; background: #292329; color: #fff; font-size: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-main {
  min-height: 70px;
  display: grid;
  grid-template-columns: 220px minmax(280px, 1fr) auto;
  align-items: center;
  gap: 24px;
}
.site-logo { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.site-logo-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  flex: 0 0 34px;
  border-radius: 11px;
  color: #fff;
  background: var(--pink);
}
.site-logo-mark svg { width: 20px; height: 20px; stroke-width: 2; }
.site-logo-copy { display: block; min-width: 0; }
.site-logo-copy b { display: block; font-size: 15px; line-height: 1; letter-spacing: .055em; white-space: nowrap; }
.site-logo-copy small { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; font-weight: 700; white-space: nowrap; }
.site-search {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 6px 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #f8f6f7;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.site-search:focus-within { background: #fff; border-color: #e8a5b8; box-shadow: 0 0 0 4px #fff1f5; }
.site-search svg { width: 18px; height: 18px; color: #91878e; flex: 0 0 auto; }
.site-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 13px; }
.site-search button {
  height: 32px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.header-tools { display: flex; align-items: center; gap: 18px; }
.header-tools > a { color: #5e555c; font-size: 12px; font-weight: 700; white-space: nowrap; }
.header-tools > a:hover { color: var(--pink-dark); }
.header-tool-button, .header-menu-button {
  border: 0;
  background: transparent;
  color: var(--ink);
}
.header-tool-button { display: inline-flex; align-items: center; gap: 6px; padding: 7px 2px; font-size: 12px; font-weight: 700; }
.header-tool-button svg { width: 19px; height: 19px; }
.header-menu-button { display: none; width: 38px; height: 38px; place-items: center; border-radius: 50%; }
.header-menu-button:hover { background: var(--pink-soft); }
.header-menu-button svg { width: 22px; height: 22px; }
.header-mobile-search { display: none; }
.header-nav { border-top: 1px solid #f1edef; }
.header-nav-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 27px;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-nav-inner::-webkit-scrollbar { display: none; }
.header-nav-inner a { color: #655d63; font-size: 11px; font-weight: 700; white-space: nowrap; }
.header-nav-inner a:hover { color: var(--pink-dark); }
.header-nav-featured { display: inline-flex; align-items: center; gap: 5px; color: var(--pink-dark) !important; }
.header-nav-featured svg { width: 15px; height: 15px; }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: #fff; }
.mobile-menu-inner { padding-block: 10px 18px; display: grid; }
.mobile-menu a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; }

/* Home hero */
.home-hero {
  background: linear-gradient(180deg, #fff 0%, #fff9fb 100%);
  border-bottom: 1px solid var(--line);
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 58px;
  align-items: center;
  padding: 56px 0 38px;
}
.hero-label, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--pink-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.hero-label svg { width: 15px; height: 15px; }
.home-hero-copy h1 {
  margin: 15px 0 17px;
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1.2;
  letter-spacing: -.045em;
}
.home-hero-copy h1 em { font-style: normal; color: var(--pink); }
.home-hero-copy > p { max-width: 600px; margin: 0; color: #6c6369; font-size: 14px; line-height: 1.9; }
.hero-search {
  max-width: 650px;
  height: 58px;
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 6px 7px 6px 17px;
  border: 1px solid #e5dce1;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.hero-search:focus-within { border-color: #e7a4b7; box-shadow: 0 0 0 4px #fff0f4, var(--shadow-sm); }
.hero-search svg { width: 20px; height: 20px; color: #8c8389; flex: 0 0 auto; }
.hero-search input { min-width: 0; width: 100%; border: 0; outline: 0; background: transparent; font-size: 14px; }
.hero-search button { height: 44px; padding: 0 22px; border: 0; border-radius: 10px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 900; white-space: nowrap; }
.hero-search button:hover { background: var(--pink-dark); }
.hero-trends { margin-top: 14px; display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.hero-trends > span { color: var(--muted-light); font-size: 10px; font-weight: 800; }
.hero-trends button {
  padding: 6px 9px;
  border: 1px solid #e9e1e5;
  border-radius: 999px;
  background: #fff;
  color: #665e64;
  font-size: 10px;
  font-weight: 700;
}
.hero-trends button:hover { color: var(--pink-dark); border-color: #edb2c2; background: var(--pink-soft-2); }

.featured-trend-card {
  padding: 20px;
  border: 1px solid #e8e1e5;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.featured-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; color: #615860; font-size: 10px; font-weight: 800; }
.featured-card-head > div { display: flex; align-items: center; gap: 7px; }
.featured-card-head time { color: var(--muted-light); font-weight: 600; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 5px #ffe7ee; }
.featured-product { display: grid; grid-template-columns: 145px minmax(0, 1fr); align-items: center; gap: 18px; }
.featured-product-image {
  width: 145px; height: 154px;
  display: grid; place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: var(--product-soft, #f7f5f6);
}
.featured-product-image img { width: 82%; height: 82%; object-fit: contain; }
.featured-product-copy { min-width: 0; }
.featured-rank { display: inline-block; margin-bottom: 12px; padding: 5px 8px; border-radius: 6px; background: var(--ink); color: #fff; font-size: 9px; font-weight: 800; }
.featured-product-copy small { display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .05em; }
.featured-product-copy h2 { margin: 5px 0 7px; font-size: 18px; line-height: 1.45; letter-spacing: -.02em; }
.featured-product-copy h2 a:hover { color: var(--pink-dark); }
.featured-product-copy p { margin: 0; color: var(--muted); font-size: 11px; }
.featured-metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 17px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.featured-metrics > div { padding: 11px 12px; background: #fff; }
.featured-metrics > div + div { border-left: 1px solid var(--line); }
.featured-metrics span { display: block; color: var(--muted); font-size: 9px; }
.featured-metrics strong { display: block; margin-top: 3px; font-size: 18px; }
.featured-metrics > div:first-child strong { color: var(--pink-dark); }
.featured-reason { margin-top: 14px; padding: 13px 14px; border-radius: 12px; background: var(--pink-soft-2); }
.featured-reason span { color: var(--pink-dark); font-size: 9px; font-weight: 900; }
.featured-reason p { margin: 6px 0 0; color: #61575d; font-size: 11px; line-height: 1.65; }
.featured-link { margin-top: 15px; display: flex; align-items: center; justify-content: center; gap: 7px; height: 42px; border-radius: 10px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 800; }
.featured-link:hover { background: var(--pink-dark); }
.featured-link svg { width: 16px; height: 16px; }
.hero-trust-row { min-height: 76px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #f1e8ec; }
.hero-trust-row > div { display: flex; align-items: center; gap: 12px; padding: 16px 0; }
.hero-trust-row > div + div { padding-left: 28px; border-left: 1px solid #f1e8ec; }
.hero-trust-row svg { width: 22px; height: 22px; color: var(--pink-dark); flex: 0 0 auto; }
.hero-trust-row span { display: block; }
.hero-trust-row b { display: block; font-size: 11px; }
.hero-trust-row small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; }

/* Sections */
.section { padding: 62px 0; }
.category-section { padding: 34px 0 38px; background: #fff; border-bottom: 1px solid var(--line); }
.ranking-section { background: var(--surface); }
.social-section { background: #fff; }
.insight-section { background: var(--surface); border-block: 1px solid var(--line); }
.data-guide-section { background: #fff; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 25px; }
.section-heading.compact { margin-bottom: 18px; }
.section-heading.centered { justify-content: center; text-align: center; }
.section-heading h2 { margin: 7px 0 0; font-size: 27px; line-height: 1.35; letter-spacing: -.035em; }
.section-heading p { max-width: 670px; margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: #5f565d; font-size: 11px; font-weight: 800; white-space: nowrap; }
.text-link:hover { color: var(--pink-dark); }
.text-link svg { width: 15px; height: 15px; }
.segmented-tabs { display: inline-flex; align-items: center; gap: 3px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: #fff; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.segmented-tabs::-webkit-scrollbar { display: none; }
.segmented-tabs button { flex: 0 0 auto; height: 34px; padding: 0 14px; border: 0; border-radius: 999px; background: transparent; color: #71686e; font-size: 10px; font-weight: 800; white-space: nowrap; }
.segmented-tabs button.active { background: var(--ink); color: #fff; }
.section-bottom-row { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.section-bottom-row.align-right { justify-content: flex-end; }
.data-note { display: flex; align-items: center; gap: 7px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.data-note svg { width: 16px; height: 16px; flex: 0 0 auto; }
.outline-link { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 18px; border: 1px solid var(--line-strong); border-radius: 10px; background: #fff; color: #554c52; font-size: 11px; font-weight: 800; white-space: nowrap; }
.outline-link:hover { border-color: #e7a6b8; color: var(--pink-dark); }

/* Categories */
.category-list { display: flex; gap: 10px; overflow-x: auto; padding: 2px 2px 7px; scrollbar-width: thin; scrollbar-color: #ddd4d9 transparent; }
.category-link {
  flex: 0 0 132px;
  min-height: 86px;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  text-align: left;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.category-link:hover, .category-link.active { border-color: #e9a8ba; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.category-link span { color: var(--pink-dark); font-size: 8px; font-weight: 900; letter-spacing: .11em; }
.category-link b { margin-top: 7px; font-size: 12px; }
.category-link small { margin-top: 4px; color: var(--muted-light); font-size: 9px; }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: transform .2s, box-shadow .2s, border-color .2s; }
.product-card:hover { transform: translateY(-4px); border-color: #e2d6dc; box-shadow: var(--shadow-md); }
.product-image-wrap { position: relative; height: 224px; display: grid; place-items: center; overflow: hidden; background: var(--product-soft, #f7f5f6); border-bottom: 1px solid #f0ebee; }
.product-image-link { width: 100%; height: 100%; display: grid; place-items: center; padding: 21px; }
.product-image-link img { width: 88%; height: 88%; object-fit: contain; transition: transform .25s; }
.product-card:hover .product-image-link img { transform: scale(1.025); }
.product-image-placeholder { color: var(--muted); font-size: 11px; }
.product-rank { position: absolute; z-index: 2; left: 11px; top: 11px; min-width: 35px; height: 30px; padding: 0 7px; display: inline-flex; align-items: baseline; justify-content: center; gap: 1px; border: 1px solid rgba(255,255,255,.9); border-radius: 8px; background: rgba(255,255,255,.94); color: var(--ink); box-shadow: 0 5px 15px rgba(45,30,38,.08); font-size: 13px; font-weight: 900; }
.product-rank small { font-size: 8px; }
.product-rank.top-rank { background: var(--ink); color: #fff; border-color: var(--ink); }
.product-trend-badge { position: absolute; z-index: 2; right: 50px; top: 12px; padding: 6px 8px; border-radius: 7px; background: rgba(255,255,255,.94); color: var(--pink-dark); font-size: 9px; font-weight: 900; box-shadow: 0 5px 15px rgba(45,30,38,.06); }
.favorite-button { position: absolute; z-index: 3; right: 11px; top: 10px; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.95); border-radius: 50%; background: rgba(255,255,255,.94); color: #655d63; }
.favorite-button svg { width: 17px; height: 17px; }
.favorite-button.active { color: var(--pink); }
.favorite-button.active svg { fill: var(--pink); }
.product-card-body { padding: 15px 15px 16px; }
.product-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-card-meta > span { overflow: hidden; color: #756c72; font-size: 9px; font-weight: 900; letter-spacing: .055em; text-transform: uppercase; text-overflow: ellipsis; white-space: nowrap; }
.product-card-meta small { color: var(--muted-light); font-size: 8px; white-space: nowrap; }
.product-card h3 { min-height: 42px; margin: 6px 0 4px; font-size: 14px; line-height: 1.5; letter-spacing: -.015em; }
.product-card h3 a:hover { color: var(--pink-dark); }
.product-price { color: var(--muted); font-size: 10px; }
.product-stat-row { display: grid; grid-template-columns: 1fr 1fr; margin-top: 13px; padding-top: 12px; border-top: 1px solid var(--line); }
.product-stat-row > div + div { padding-left: 12px; border-left: 1px solid var(--line); }
.product-stat-row span { display: block; color: var(--muted-light); font-size: 8px; font-weight: 700; }
.product-stat-row strong { display: block; margin-top: 3px; font-size: 17px; }
.product-stat-row strong small { margin-left: 2px; color: var(--muted); font-size: 8px; font-weight: 700; }
.product-stat-row .trend-value { color: var(--pink-dark); }
.organic-row { display: flex; align-items: center; justify-content: space-between; margin-top: 11px; color: var(--muted); font-size: 8px; }
.organic-row b { color: #4f755f; font-size: 9px; }
.organic-track { height: 4px; margin-top: 5px; overflow: hidden; border-radius: 999px; background: #eee9eb; }
.organic-track i { display: block; height: 100%; border-radius: 999px; background: #6ba58d; }
.source-mix { margin-top: 10px; display: flex; align-items: center; flex-wrap: wrap; gap: 7px 10px; color: #7d747a; font-size: 7px; }
.source-mix span { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.source-dot { width: 6px; height: 6px; display: inline-block; border-radius: 50%; }
.source-dot.x { background: #202024; }
.source-dot.instagram { background: #dd4c82; }
.source-dot.tiktok { background: #34aab6; }
.product-reason { min-height: 34px; margin: 11px 0 0; color: #6b6268; font-size: 9px; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-tags { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 5px; }
.product-tags span { padding: 5px 7px; border-radius: 999px; background: #f7f4f6; color: #6f666c; font-size: 8px; font-weight: 700; }
.cp-no-results { display: none; grid-column: 1 / -1; padding: 44px 20px; text-align: center; color: var(--muted); }
.cp-no-results.show { display: block; }
.cp-empty { grid-column: 1 / -1; padding: 42px 20px; border: 1px dashed var(--line-strong); border-radius: var(--radius); color: var(--muted); text-align: center; font-size: 12px; }

/* Social voice cards */
.social-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: start; }
.social-voice-card { min-width: 0; padding: 17px; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: transform .2s, box-shadow .2s, border-color .2s; }
.social-voice-card:hover { transform: translateY(-3px); border-color: #e2d6dc; box-shadow: var(--shadow-sm); }
.voice-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.voice-source { min-width: 0; display: flex; align-items: center; gap: 9px; }
.platform-badge { width: 31px; height: 31px; display: inline-grid; place-items: center; flex: 0 0 31px; border-radius: 9px; color: #fff; font-size: 9px; font-weight: 900; }
.platform-badge.x { background: #202024; }
.platform-badge.instagram { background: linear-gradient(135deg, #f5a34f, #d54382 55%, #7454c7); }
.platform-badge.tiktok { background: #202024; box-shadow: inset 3px 0 #32c3cc, inset -3px 0 #f05a7b; }
.voice-source b { display: block; overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.voice-source small { display: block; margin-top: 3px; overflow: hidden; color: var(--muted); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.voice-status { flex: 0 0 auto; padding: 5px 7px; border-radius: 999px; background: #edf7f2; color: #3b765d; font-size: 8px; font-weight: 800; white-space: nowrap; }
.voice-status.pr { background: #fff1e8; color: #a45a25; }
.voice-status.demo { background: #f2eff5; color: #746780; }
.voice-product { margin-top: 14px; min-height: 64px; display: grid; grid-template-columns: 52px minmax(0, 1fr) 14px; align-items: center; gap: 10px; padding: 8px; border-radius: 11px; background: #f8f6f7; }
.voice-product:hover { background: #f5f0f3; }
.voice-product-image { width: 52px; height: 52px; display: grid; place-items: center; overflow: hidden; border-radius: 8px; background: #fff; }
.voice-product-image img { width: 86%; height: 86%; object-fit: contain; }
.voice-product span:nth-child(2) { min-width: 0; }
.voice-product small { display: block; color: var(--muted); font-size: 8px; }
.voice-product b { display: block; margin-top: 3px; overflow: hidden; font-size: 10px; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.voice-product > svg { width: 14px; height: 14px; color: #a299a0; }
.voice-summary-label { margin-top: 15px; color: var(--pink-dark); font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.voice-summary { min-height: 64px; margin: 6px 0 0; color: #5e555b; font-size: 11px; line-height: 1.72; }
.voice-tags { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 5px; }
.voice-tags span { padding: 5px 7px; border-radius: 999px; background: var(--pink-soft-2); color: #9f3d59; font-size: 8px; font-weight: 700; }
.voice-card-foot { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted-light); font-size: 8px; }
.voice-card-foot a { display: inline-flex; align-items: center; gap: 4px; color: var(--pink-dark); font-size: 9px; font-weight: 800; white-space: nowrap; }
.voice-card-foot a svg { width: 13px; height: 13px; }
.voice-preview-label { color: #867b84; font-weight: 700; }

/* Insights */
.insight-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; }
.insight-panel { padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.panel-heading h2 { margin: 6px 0 17px; font-size: 21px; letter-spacing: -.025em; }
.keyword-ranking { list-style: none; margin: 0; padding: 0; }
.keyword-ranking li { min-height: 58px; display: grid; grid-template-columns: 28px minmax(0, 1fr) auto; align-items: center; gap: 10px; border-top: 1px solid var(--line); }
.keyword-ranking li:first-child { border-top: 0; }
.keyword-ranking > li > span { color: var(--muted-light); font-size: 13px; font-weight: 900; text-align: center; }
.keyword-ranking b { display: block; font-size: 11px; }
.keyword-ranking small { display: block; margin-top: 3px; color: var(--muted); font-size: 8px; }
.keyword-ranking em { color: var(--pink-dark); font-size: 10px; font-style: normal; font-weight: 900; }
.compact-ranking { display: grid; }
.compact-ranking > a { min-height: 68px; display: grid; grid-template-columns: 28px 50px minmax(0, 1fr) auto 14px; align-items: center; gap: 10px; border-top: 1px solid var(--line); }
.compact-ranking > a:first-child { border-top: 0; }
.compact-ranking > a:hover .compact-rank-copy b { color: var(--pink-dark); }
.compact-rank-num { color: var(--muted-light); font-size: 13px; font-weight: 900; text-align: center; }
.compact-rank-image { width: 50px; height: 50px; display: grid; place-items: center; overflow: hidden; border-radius: 9px; background: #f8f6f7; }
.compact-rank-image img { width: 86%; height: 86%; object-fit: contain; }
.compact-rank-copy { min-width: 0; }
.compact-rank-copy small { display: block; color: var(--muted); font-size: 8px; }
.compact-rank-copy b { display: block; margin-top: 3px; overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.compact-rank-score { color: var(--pink-dark); font-size: 10px; font-weight: 900; white-space: nowrap; }
.compact-ranking svg { width: 14px; height: 14px; color: #a79da4; }

/* Data guide */
.guide-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.guide-cards article { display: flex; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.guide-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 42px; border-radius: 12px; background: var(--pink-soft); color: var(--pink-dark); }
.guide-icon svg { width: 21px; height: 21px; }
.guide-cards b { display: block; font-size: 12px; }
.guide-cards p { margin: 7px 0 0; color: var(--muted); font-size: 10px; line-height: 1.75; }

/* Product detail */
.cp-breadcrumbs { padding-top: 18px; display: flex; align-items: center; gap: 7px; overflow: hidden; color: var(--muted); font-size: 9px; white-space: nowrap; }
.cp-breadcrumbs a:hover { color: var(--pink-dark); }
.cp-breadcrumbs > span:last-child { overflow: hidden; text-overflow: ellipsis; }
.product-detail { padding: 28px 0 72px; background: #fff; }
.product-detail-grid { display: grid; grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr); gap: 48px; align-items: start; }
.product-detail-media { position: sticky; top: 132px; }
.product-detail-image { min-height: 470px; display: grid; place-items: center; padding: 40px; border: 1px solid var(--line); border-radius: 22px; background: var(--product-soft, #f7f5f6); }
.product-detail-image img { max-height: 390px; object-fit: contain; }
.image-note { margin: 10px 4px 0; color: var(--muted-light); font-size: 8px; line-height: 1.6; }
.product-detail-meta { display: flex; align-items: center; gap: 9px; }
.product-detail-meta span { padding: 5px 8px; border-radius: 999px; background: var(--pink-soft); color: var(--pink-dark); font-size: 9px; font-weight: 800; }
.product-detail-meta small { color: var(--muted); font-size: 9px; }
.product-detail-brand { margin-top: 18px; color: #71676e; font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.product-detail-main h1 { margin: 8px 0 9px; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.25; letter-spacing: -.04em; }
.product-detail-price { color: var(--muted); font-size: 12px; }
.product-detail-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.product-detail-tags span { padding: 6px 9px; border-radius: 999px; background: #f7f4f6; color: #655c62; font-size: 9px; font-weight: 700; }
.detail-metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 23px; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.detail-metrics > div { min-width: 0; padding: 15px 14px; }
.detail-metrics > div + div { border-left: 1px solid var(--line); }
.detail-metrics span { display: block; color: var(--muted); font-size: 9px; }
.detail-metrics strong { display: block; margin-top: 4px; font-size: 24px; }
.detail-metrics strong em { margin-left: 2px; font-size: 10px; font-style: normal; }
.detail-metrics small { display: block; margin-top: 4px; color: var(--muted-light); font-size: 7px; }
.detail-source-block { margin-top: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 13px; }
.detail-source-head { display: flex; align-items: center; justify-content: space-between; }
.detail-source-head b { font-size: 10px; }
.detail-source-head span { color: var(--muted-light); font-size: 8px; }
.detail-source-bar { height: 7px; margin-top: 10px; display: flex; overflow: hidden; border-radius: 999px; background: #eee9eb; }
.detail-source-bar i { height: 100%; }
.detail-source-bar .x { background: #202024; }
.detail-source-bar .instagram { background: #dd4c82; }
.detail-source-bar .tiktok { background: #34aab6; }
.detail-source-legend { margin-top: 9px; display: flex; flex-wrap: wrap; gap: 10px 16px; color: var(--muted); font-size: 8px; }
.detail-source-legend span { display: inline-flex; align-items: center; gap: 5px; }
.trend-reason-box { margin-top: 16px; padding: 16px; border-radius: 13px; background: var(--pink-soft-2); }
.trend-reason-box > span { display: flex; align-items: center; gap: 6px; color: var(--pink-dark); font-size: 9px; font-weight: 900; }
.trend-reason-box svg { width: 15px; height: 15px; }
.trend-reason-box p { margin: 7px 0 0; color: #5e555b; font-size: 11px; line-height: 1.8; }
.product-summary { margin-top: 17px; color: #635a60; font-size: 11px; line-height: 1.9; }
.product-summary p { margin: 0; }
.detail-actions { margin-top: 21px; display: flex; flex-wrap: wrap; gap: 9px; }
.primary-button, .secondary-button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 18px; border-radius: 11px; font-size: 11px; font-weight: 900; }
.primary-button { border: 1px solid var(--ink); background: var(--ink); color: #fff; }
.primary-button:hover { background: var(--pink-dark); border-color: var(--pink-dark); }
.secondary-button { border: 1px solid var(--line-strong); background: #fff; color: #554c52; }
.secondary-button:hover { border-color: #e7a6b8; color: var(--pink-dark); }
.primary-button svg, .secondary-button svg { width: 15px; height: 15px; }
.secondary-button.active svg { fill: var(--pink); color: var(--pink); }
.detail-content-grid { margin-top: 45px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 17px; }
.detail-panel { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.detail-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.detail-panel-head h2 { margin: 5px 0 0; font-size: 20px; }
.update-label { display: inline-flex; align-items: center; gap: 5px; color: var(--muted); font-size: 8px; }
.update-label svg { width: 14px; height: 14px; }
.cp-chart { height: 210px; margin-top: 16px; }
.cp-chart svg { width: 100%; height: 100%; }
.cp-chart-labels { display: flex; justify-content: space-between; margin-top: 4px; color: var(--muted-light); font-size: 7px; }
.topic-list { margin-top: 18px; display: grid; gap: 15px; }
.topic-row { display: grid; grid-template-columns: 120px minmax(0, 1fr) 30px; align-items: center; gap: 10px; font-size: 9px; }
.topic-track { height: 7px; overflow: hidden; border-radius: 999px; background: #eee9eb; }
.topic-track i { display: block; height: 100%; border-radius: 999px; }
.topic-row b { text-align: right; font-size: 9px; }
.detail-voices-section { margin-top: 54px; }
.cp-notice { margin-top: 22px; padding: 14px 16px; border: 1px solid #efd9e1; border-radius: 12px; background: #fff8fa; color: #6b5e66; font-size: 10px; line-height: 1.7; }
.related-products { margin-top: 60px; }

/* Archives and generic WordPress pages */
.archive-hero { padding: 42px 0 32px; border-bottom: 1px solid var(--line); background: var(--pink-soft-2); }
.archive-hero h1 { margin: 8px 0 8px; font-size: 34px; letter-spacing: -.035em; }
.archive-hero p { margin: 0; color: var(--muted); font-size: 12px; }
.archive-section { background: var(--surface); }
.archive-filterbar { margin-bottom: 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.archive-filterbar.voices { justify-content: flex-end; }
.archive-search { width: min(460px, 100%); height: 44px; display: flex; align-items: center; gap: 9px; padding: 0 6px 0 14px; border: 1px solid var(--line-strong); border-radius: 12px; background: #fff; }
.archive-search svg { width: 18px; height: 18px; color: #8f858c; }
.archive-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; font-size: 12px; }
.archive-search button { height: 32px; padding: 0 14px; border: 0; border-radius: 8px; background: var(--ink); color: #fff; font-size: 10px; font-weight: 800; }
.cp-pagination { margin-top: 32px; display: flex; justify-content: center; }
.cp-pagination .page-numbers { min-width: 38px; height: 38px; display: inline-grid; place-items: center; margin: 3px; border: 1px solid var(--line); border-radius: 9px; background: #fff; font-size: 11px; font-weight: 800; }
.cp-pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.cp-generic { padding: 46px 0 76px; }
.cp-entry-header { max-width: 820px; margin: 0 auto 30px; }
.cp-entry-header h1 { font-size: 36px; letter-spacing: -.035em; }
.cp-entry-wrap { max-width: 820px; margin: 0 auto; }
.cp-entry-content { color: #514950; font-size: 14px; line-height: 2; }
.cp-entry-content h2 { margin-top: 2em; color: var(--ink); }
.cp-entry-content img { border-radius: 16px; }
.cp-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cp-article-card { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.cp-article-card img { width: 100%; height: 190px; object-fit: cover; }
.cp-article-body { padding: 16px; }
.cp-article-body h2, .cp-article-body h3 { margin: 0 0 8px; font-size: 16px; line-height: 1.55; }
.cp-article-body p { color: var(--muted); font-size: 10px; line-height: 1.7; }
.cp-article-meta { margin-bottom: 7px; color: var(--muted-light); font-size: 8px; }

/* Footer */
.footer-search-block { padding: 32px 0; border-top: 1px solid var(--line); background: var(--pink-soft-2); }
.footer-search-inner { display: grid; grid-template-columns: minmax(0, .8fr) minmax(380px, 1.2fr); align-items: center; gap: 42px; }
.footer-search-inner > div > span { color: var(--pink-dark); font-size: 9px; font-weight: 900; letter-spacing: .07em; }
.footer-search-inner h2 { margin: 5px 0 0; font-size: 21px; }
.footer-search { height: 50px; display: flex; align-items: center; gap: 9px; padding: 0 6px 0 15px; border: 1px solid #e4d9de; border-radius: 12px; background: #fff; }
.footer-search svg { width: 18px; height: 18px; color: #8f858c; }
.footer-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; font-size: 12px; }
.footer-search button { height: 38px; padding: 0 17px; border: 0; border-radius: 9px; background: var(--ink); color: #fff; font-size: 10px; font-weight: 900; }
.site-footer { padding: 47px 0 22px; background: #282328; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, .7fr); gap: 42px; }
.footer-logo .site-logo-mark { background: var(--pink); }
.footer-logo .site-logo-copy small { color: #bcb3b9; }
.footer-brand p { max-width: 330px; margin: 17px 0 0; color: #c0b7bd; font-size: 10px; line-height: 1.8; }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column > b { margin-bottom: 4px; font-size: 10px; }
.footer-column a { color: #bbb2b8; font-size: 10px; }
.footer-column a:hover { color: #fff; }
.cp-footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-note { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; color: #9f969c; font-size: 8px; }
.footer-note p { max-width: 760px; margin: 0; line-height: 1.7; }
.footer-note span { white-space: nowrap; }

.toast { position: fixed; z-index: 200; left: 50%; bottom: 28px; max-width: calc(100% - 32px); padding: 10px 16px; border-radius: 999px; background: rgba(41,35,41,.95); color: #fff; font-size: 11px; font-weight: 700; opacity: 0; pointer-events: none; transform: translate(-50%, 12px); transition: .2s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1080px) {
  .header-main { grid-template-columns: 190px minmax(250px, 1fr) auto; gap: 18px; }
  .header-tools > a { display: none; }
  .header-menu-button { display: grid; }
  .home-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(370px, .9fr); gap: 34px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-cards { grid-template-columns: 1fr; }
  .guide-cards article { align-items: flex-start; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .cp-demo-notice-inner { min-height: 44px; justify-content: flex-start; gap: 7px; overflow: hidden; }
  .cp-demo-notice p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .cp-demo-notice a { display: none; }
  .header-main { min-height: 56px; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .site-logo-mark { width: 31px; height: 31px; flex-basis: 31px; border-radius: 10px; }
  .site-logo-mark svg { width: 18px; height: 18px; }
  .site-logo-copy b { font-size: 13px; }
  .site-logo-copy small { display: none; }
  .header-main > .site-search { display: none; }
  .header-tools { gap: 6px; }
  .header-tool-button span { display: none; }
  .header-tool-button { width: 38px; height: 38px; justify-content: center; padding: 0; border-radius: 50%; }
  .header-tool-button:hover { background: var(--pink-soft); }
  .header-menu-button { display: grid; }
  .header-mobile-search { display: block; padding-bottom: 9px; }
  .header-mobile-search .site-search { height: 39px; padding-right: 12px; }
  .header-mobile-search .site-search button { display: none; }
  .header-nav-inner { min-height: 38px; gap: 20px; }
  .header-nav-inner a { font-size: 10px; }
  .mobile-menu.open { display: block; max-height: calc(100vh - 130px); overflow-y: auto; }

  .home-hero-grid { grid-template-columns: 1fr; gap: 27px; padding: 36px 0 27px; }
  .home-hero-copy h1 { margin-top: 12px; font-size: 36px; line-height: 1.22; }
  .home-hero-copy > p { font-size: 12px; line-height: 1.8; }
  .hero-search { height: 52px; margin-top: 21px; padding-left: 14px; }
  .hero-search input { font-size: 12px; }
  .hero-search button { height: 40px; padding: 0 15px; font-size: 10px; }
  .hero-trends { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; }
  .hero-trends::-webkit-scrollbar { display: none; }
  .hero-trends button { flex: 0 0 auto; }
  .featured-trend-card { padding: 15px; border-radius: 17px; box-shadow: var(--shadow-sm); }
  .featured-product { grid-template-columns: 112px minmax(0, 1fr); gap: 13px; }
  .featured-product-image { width: 112px; height: 123px; border-radius: 13px; }
  .featured-rank { margin-bottom: 8px; }
  .featured-product-copy h2 { font-size: 15px; }
  .featured-metrics > div { padding: 9px 7px; }
  .featured-metrics span { font-size: 7px; }
  .featured-metrics strong { font-size: 15px; }
  .featured-reason p { font-size: 10px; }
  .hero-trust-row { grid-template-columns: 1fr; padding: 10px 0; }
  .hero-trust-row > div { padding: 9px 0; }
  .hero-trust-row > div + div { padding-left: 0; border-left: 0; border-top: 1px solid #f1e8ec; }

  .category-section { padding: 27px 0 29px; }
  .section { padding: 45px 0; }
  .section-heading { display: grid; gap: 16px; margin-bottom: 19px; }
  .section-heading h2 { font-size: 23px; }
  .section-heading p { font-size: 11px; }
  .section-heading .segmented-tabs { max-width: 100%; justify-self: start; }
  .section-heading.compact { display: flex; align-items: end; }
  .section-heading.compact .text-link { font-size: 10px; }
  .category-list { margin-right: 0; padding-right: 10px; }
  .category-link { flex-basis: 116px; min-height: 80px; padding: 12px; }

  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-image-wrap { height: 174px; }
  .product-image-link { padding: 14px; }
  .product-rank { left: 8px; top: 8px; min-width: 31px; height: 27px; font-size: 11px; }
  .product-trend-badge { right: 42px; top: 9px; padding: 5px 6px; font-size: 8px; }
  .favorite-button { right: 8px; top: 7px; width: 30px; height: 30px; }
  .product-card-body { padding: 12px; }
  .product-card h3 { min-height: 40px; font-size: 12.5px; line-height: 1.55; }
  .product-card-meta > span { font-size: 8px; }
  .product-card-meta small { display: none; }
  .product-stat-row { margin-top: 10px; padding-top: 10px; }
  .product-stat-row > div + div { padding-left: 8px; }
  .product-stat-row strong { font-size: 14px; }
  .source-mix { gap: 5px 7px; font-size: 6px; }
  .product-reason { display: none; }
  .product-tags { margin-top: 9px; }
  .product-tags span { padding: 4px 6px; font-size: 7px; }
  .section-bottom-row { align-items: flex-start; flex-direction: column; }
  .section-bottom-row.align-right { align-items: flex-end; }
  .data-note { font-size: 9px; }

  .social-grid { grid-template-columns: 1fr; gap: 11px; }
  .social-voice-card { padding: 15px; }
  .voice-summary { min-height: 0; }
  .insight-grid { grid-template-columns: 1fr; gap: 12px; }
  .insight-panel { padding: 18px; }
  .guide-cards { gap: 10px; }
  .guide-cards article { padding: 16px; }

  .product-detail { padding-top: 20px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 23px; }
  .product-detail-media { position: static; }
  .product-detail-image { min-height: 330px; padding: 27px; border-radius: 17px; }
  .product-detail-image img { max-height: 280px; }
  .product-detail-main h1 { font-size: 29px; }
  .detail-metrics > div { padding: 12px 9px; }
  .detail-metrics span { font-size: 7px; }
  .detail-metrics strong { font-size: 19px; }
  .detail-metrics small { display: none; }
  .detail-source-legend { gap: 7px 10px; }
  .detail-actions { display: grid; grid-template-columns: 1fr; }
  .detail-content-grid { grid-template-columns: 1fr; margin-top: 30px; }
  .detail-panel { padding: 17px; }
  .cp-chart { height: 180px; }
  .topic-row { grid-template-columns: 98px minmax(0, 1fr) 25px; }
  .detail-voices-section { margin-top: 40px; }
  .related-products { margin-top: 44px; }

  .archive-hero { padding: 31px 0 24px; }
  .archive-hero h1 { font-size: 29px; }
  .archive-filterbar { display: grid; justify-content: stretch; }
  .archive-filterbar.voices { justify-content: stretch; }
  .archive-search { width: 100%; }
  .archive-filterbar .segmented-tabs { justify-self: start; max-width: 100%; }
  .cp-article-grid { grid-template-columns: 1fr; }

  .footer-search-inner { grid-template-columns: 1fr; gap: 16px; }
  .footer-search-inner h2 { font-size: 18px; }
  .footer-search { height: 46px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 29px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-note { align-items: flex-start; flex-direction: column; gap: 13px; }
}

@media (max-width: 420px) {
  .container { width: min(calc(100% - 22px), var(--max)); }
  .home-hero-copy h1 { font-size: 33px; }
  .featured-metrics strong { font-size: 14px; }
  .product-image-wrap { height: 157px; }
  .product-card-body { padding: 10px; }
  .product-stat-row strong { font-size: 13px; }
  .source-mix span:nth-child(3) { display: none; }
  .detail-metrics strong { font-size: 17px; }
  .detail-source-legend { font-size: 7px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* COSME PULSE 2.1: imported catalog and affiliate states */
.product-data-pending { margin-top: 13px; padding: 11px 12px; border: 1px dashed var(--line-strong); border-radius: 10px; background: #faf8f9; color: var(--muted); font-size: 9px; font-weight: 800; text-align: center; }
.detail-data-pending { margin-top: 22px; padding: 17px 18px; border: 1px dashed #e3d8dc; border-radius: 14px; background: #fbf8f9; }
.detail-data-pending b { display: block; font-size: 13px; }
.detail-data-pending span { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; line-height: 1.7; }
.amazon-button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 18px; border: 1px solid #e8a900; border-radius: 11px; background: #ffd814; color: #241f16; font-size: 11px; font-weight: 900; box-shadow: 0 6px 16px rgba(190,135,0,.12); }
.amazon-button:hover { background: #f7ca00; border-color: #d9a400; color: #16120c; }
.amazon-button svg { width: 15px; height: 15px; }
.purchase-note { margin: 9px 0 0; color: var(--muted-light); font-size: 8px; line-height: 1.6; }
@media(max-width:760px){.amazon-button{width:100%}.detail-data-pending{padding:14px}.purchase-note{font-size:7px}}

/* MIGNO TOKYO brand system 3.0 */
.site-logo {
  min-width: 0;
  line-height: 0;
}
.site-logo-image {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}
.site-logo-image-header { width: 190px; }
.site-logo-image-footer { width: 200px; }
.footer-operator {
  max-width: 360px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-operator > span {
  display: block;
  margin-bottom: 7px;
  color: #a9a0a6;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}
.footer-operator > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
}
.footer-operator > a svg { width: 13px; height: 13px; }
.footer-operator > small {
  display: block;
  margin-top: 7px;
  color: #aaa1a7;
  font-size: 9px;
  line-height: 1.75;
}
.footer-disclosures {
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  color: #aaa1a7;
  font-size: 8px;
  line-height: 1.75;
}
.footer-disclosures p { margin: 0; }
.footer-disclosures p + p { margin-top: 6px; }
.footer-note { align-items: center; }
.footer-note a { color: #d8d0d5; text-decoration: underline; text-underline-offset: 2px; }
.footer-note a:hover { color: #fff; }

@media (max-width: 1080px) {
  .site-logo-image-header { width: 168px; }
}
@media (max-width: 760px) {
  .site-logo-image-header { width: 148px; }
  .site-logo-image-footer { width: 180px; }
  .footer-disclosures { margin-top: 26px; padding: 15px; }
  .footer-note { align-items: flex-start; flex-direction: column; gap: 5px; }
}
.amazon-action-wrap { display: inline-grid; gap: 5px; align-items: start; }
.affiliate-label { width: fit-content; padding: 3px 6px; border-radius: 5px; background: #f1eef0; color: #625961; font-size: 8px; font-weight: 900; line-height: 1; }
@media(max-width:760px){.amazon-action-wrap{width:100%}.affiliate-label{margin-left:2px}}
