:root {
  --bg: #fbf8f8;
  --bg-2: #f5f0f1;
  --paper: #ffffff;
  --ink: #1a1214;
  --muted: #6d6668;
  --line: #ece6e7;
  --forest: #fb2840;
  --forest-2: #d91b33;
  --lime: #fb2840;
  --lime-ink: #ffffff;
  --pink: #fb2840;
  --warn: #c45c12;
  --shadow: 0 18px 50px rgba(26, 18, 20, 0.06);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Figtree, ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 248, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.brand-mark {
  width: 34px;
  height: 44px;
  background: transparent;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}
.brand-mark img {
  width: 34px;
  height: 44px;
  object-fit: contain;
  display: block;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
}
.brand-copy {
  display: grid;
  line-height: 1.05;
  transform: translateY(5px);
}
.brand-copy strong {
  font-family: Montserrat, Nunito, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: -0.03em;
}
.brand-copy strong span { color: var(--pink); font-weight: 700; }
.brand-copy small {
  margin-top: 3px;
  font-family: Nunito, Figtree, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #1a1214;
  white-space: nowrap;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 4px;
  margin-left: auto;
}
.nav > a {
  display: flex;
  align-items: center;
  align-self: center;
}
.nav > .drop {
  display: flex;
  align-items: center;
  align-self: center;
  position: relative;
}
.nav a, .nav button.linkish {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  background: none;
  border: 0;
  position: relative;
}
.nav a:hover, .nav button.linkish:hover { background: var(--bg-2); }
.nav > a.is-on,
.nav > .drop.is-on > .linkish {
  color: var(--pink);
  background: transparent;
}
.nav > a.is-on::after,
.nav > .drop.is-on > .linkish::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--pink);
  border-radius: 1px;
}
.nav .drop-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  min-width: 220px;
  padding: 4px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.nav .drop-panel::after {
  content: "";
  position: absolute;
  inset: 4px 0 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: -1;
}
.nav .drop:hover .drop-panel,
.nav .drop:focus-within .drop-panel { display: grid; }
.nav .drop-panel a {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  padding: 8px 12px;
}

.header-tools { display: flex; align-items: center; gap: 8px; }
.icon-btn, .menu-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.icon-btn svg {
  width: 24px;
  height: 24px;
}
.discord-float {
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #5865f2;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.35);
}
.discord-float svg { width: 26px; height: 26px; }
.discord-float:hover { color: #fff; filter: brightness(1.08); }
.menu-btn { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
}
.btn-solid { background: var(--pink); color: #fff; }
.btn-forest { background: var(--forest); color: #fff; }
.btn-ghost { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn-lime { background: var(--lime); color: var(--lime-ink); }

.hero {
  padding: 56px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: end;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--lime-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
h1, h2, h3 { font-family: Montserrat, Nunito, sans-serif; margin: 0; line-height: 1.08; }
h1 { font-size: clamp(42px, 7vw, 76px); letter-spacing: -0.045em; margin-top: 16px; font-weight: 800; }
h1 em { font-style: italic; color: var(--pink); font-weight: 800; }
.hero-sub {
  margin: 12px 0 0;
  font-family: Montserrat, sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.lede { font-size: 18px; color: var(--muted); max-width: 560px; margin: 18px 0 26px; }
.note { color: var(--muted); margin: 0 0 8px; font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-card {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  min-height: 280px;
  display: grid;
  align-content: space-between;
  box-shadow: var(--shadow);
}
.hero-card p { color: var(--muted); margin: 8px 0 0; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}
.stat b { display: block; font-family: Montserrat, sans-serif; font-size: 28px; color: var(--pink); }
.stat span { color: var(--muted); font-size: 13px; }

.section { padding: 28px 0 8px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}
.section-head p { margin: 8px 0 0; color: var(--muted); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px 16px;
}
.cat-card {
  display: grid;
  justify-items: center;
  text-align: center;
}
.cat-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(26, 18, 20, 0.08);
  overflow: hidden;
  display: block;
  position: relative;
}
.cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-thumb em {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #9a9a9a;
  text-align: center;
}
.cat-name {
  display: block;
  margin-top: 12px;
  color: #6b6b6b;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.cat-card--all .cat-name {
  font-weight: 800;
  color: var(--ink);
}

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}
.chip:hover { border-color: var(--ink); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 36px 22px;
}
.product-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  text-align: center;
}
.product-card .thumb {
  aspect-ratio: 1;
  background: #fff;
  position: relative;
  border-radius: 0;
}
.product-card img { width: 100%; height: 100%; object-fit: cover; }
.product-card h3 {
  font-family: Figtree, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #5c5c5c;
  margin: 14px 0 6px;
  line-height: 1.35;
}
.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: #f5b301;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
}
.star-half {
  position: relative;
  display: inline-block;
  color: #e4ddd8;
}
.star-half::before {
  content: "★";
  position: absolute;
  left: 0;
  width: 52%;
  overflow: hidden;
  color: #f5b301;
}
.item-rating .stars { display: inline-flex; margin-right: 6px; }
.product-card b {
  display: block;
  margin-top: 8px;
  font-family: Figtree, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.feature-grid, .faq-grid, .post-grid, .tool-grid, .trust-grid, .story-grid, .steps {
  display: grid;
  gap: 14px;
}
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.trust-grid { grid-template-columns: 1fr 1fr; }
.trust-copy { max-width: 760px; color: var(--muted); margin: 0 0 16px; font-size: 17px; }
.updated { letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px; font-weight: 700; color: #9a9395; }
.hl { color: var(--pink); font-weight: 800; }
.trust-panel {
  background: var(--paper);
  border-radius: 28px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow);
}
.trust-lead { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 0 0 18px; }
.trust-banner {
  background: #fff1f3;
  border-radius: 18px;
  padding: 20px 22px;
  margin-bottom: 28px;
}
.trust-banner h3 { font-size: 22px; margin-bottom: 8px; }
.trust-banner p { color: var(--muted); margin: 0; line-height: 1.7; }
.why-title { font-size: 24px; margin: 0 0 14px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.why-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px;
}
.why-grid h4 { font-size: 16px; margin: 0 0 8px; }
.why-grid p { color: var(--muted); margin: 0; font-size: 14px; }
.story-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
.section-head.center { justify-content: center; text-align: center; }
.section-head.center > div { max-width: 640px; }
.story-card {
  background: #f6f4f4;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  color: inherit;
  text-decoration: none;
}
a.story-card { cursor: pointer; }
.story-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.story-body { padding: 20px 18px 22px; display: grid; align-content: start; gap: 8px; }
.story-body h3 { font-size: 18px; }
.story-body p { color: var(--muted); margin: 0 0 10px; }
.story-body .btn { justify-self: center; margin-top: 8px; min-height: 42px; padding: 0 22px; }
.steps { grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 12px 0 8px; }
.steps h3 { font-size: 18px; margin: 8px 0; }
.steps p { color: var(--muted); margin: 0; }
.step-ico { display: block; width: 72px; height: 72px; }
.step-ico svg { width: 72px; height: 72px; }
.tool-grid { grid-template-columns: 1.3fr 0.7fr; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; }

.table-wrap {
  background: var(--paper);
  border-radius: 24px;
  padding: 8px 8px 4px;
  box-shadow: var(--shadow);
  overflow: auto;
}
.status-table { width: 100%; border-collapse: collapse; background: transparent; }
.status-table th, .status-table td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.status-table thead th {
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 800;
}
.status-table thead th:first-child { border-radius: 14px 0 0 14px; }
.status-table thead th:last-child { border-radius: 0 14px 14px 0; }
.status-table tbody td:first-child { color: var(--pink); font-weight: 800; }
.status-table tbody tr:last-child td { border-bottom: 0; }
.pill {
  display: inline-block;
  background: #ffe4e8;
  color: var(--pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
}
.faq summary { font-weight: 700; cursor: pointer; }
.faq p { color: var(--muted); margin: 8px 0 0; }

.post-grid { grid-template-columns: repeat(3, 1fr); }
.post-card small { color: var(--muted); }
.post-card h3 { margin: 8px 0; font-size: 22px; }
.post-card > a { display: block; }
.post-by {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
}
.post-by:hover { text-decoration: underline; }
.guide-by { margin: 8px 0 18px; font-weight: 700; }
.guide-by a { color: var(--pink); }
.author-page { padding: 40px 0 64px; }
.author-page h1 { font-size: clamp(36px, 5vw, 56px); margin: 0 0 10px; }
.author-nav-label {
  margin: 28px 0 14px;
  font-weight: 800;
  font-size: 18px;
}
.author-back { margin-top: 28px; }

.site-footer {
  margin-top: 48px;
  padding: 40px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px 24px;
}
.footer-brand {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--pink);
  font-weight: 800;
  font-size: 18px;
}
.footer-col h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.footer-col p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col a {
  display: block;
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--muted);
}
.footer-col a:hover { color: var(--ink); }
.footer-col a.footer-brand {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 18px;
}
.footer-col a.footer-brand:hover { color: var(--pink); }
.legal-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.legal-box p { margin: 0 0 12px; }
.legal-box p:last-child { margin: 0; }
.legal-box a { color: var(--pink); font-weight: 700; }

.catalog { padding: 28px 0 64px; }
.catalog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.catalog-top p { margin: 0; color: #8a8a8a; font-size: 14px; }
.catalog-top select {
  min-width: 220px;
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 4px;
  padding: 10px 12px;
  color: #555;
}
.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 36px 0 8px;
}
.pager a, .pager span {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ececec;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.pager .is-on {
  background: var(--accent, #FB2840);
  border-color: var(--accent, #FB2840);
  color: #fff;
}
select, .search-input {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 10px 12px;
}

.item-page { padding: 22px 0 48px; }
.item-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 13px;
  color: #8a8a8a;
}
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs a { color: #8a8a8a; }
.crumbs a:hover { color: var(--pink); }
.crumbs span:last-child {
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.item-switch { display: flex; gap: 14px; white-space: nowrap; font-weight: 600; }
.item-switch a { color: #6d6668; letter-spacing: 0.04em; }
.item-switch a:hover { color: var(--pink); }
.item-layout { display: grid; grid-template-columns: 1.05fr 0.9fr; gap: 48px; padding: 0; align-items: start; }
.gallery {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.gallery .main {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1;
  border: 1px solid #f0ecec;
  cursor: zoom-in;
}
.gallery .main.is-zoom { cursor: zoom-out; }
.gallery .main img, .thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery .main.is-zoom img {
  transform: scale(2.4);
  transform-origin: center;
  will-change: transform;
}
.thumbs { display: flex; flex-direction: column; gap: 8px; }
.thumbs button {
  border: 1px solid #ececec;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
  width: 72px;
  background: #fff;
}
.thumbs button.is-on { border-color: var(--pink); }
.thumbs button.is-crop { overflow: hidden; }
.thumbs button.is-crop img {
  transform: scale(1.85);
  object-position: var(--pos, center);
}
.main-stage { position: relative; }
.gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1px solid #e8e8e8;
  background: #fff;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: #555;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
}
.gal-arrow:hover { border-color: var(--pink); color: var(--pink); }
.gal-prev { left: 10px; }
.gal-next { right: 10px; }
.gal-arrow.is-hidden { display: none; }
.gal-zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid #e8e8e8;
  background: #fff;
  border-radius: 8px;
  color: #555;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
}
.gal-zoom:hover { border-color: var(--pink); color: var(--pink); }
.zoom-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(12, 12, 14, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}
.zoom-layer.show { display: flex; }
.zoom-layer img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  transform-origin: center;
  transition: transform 0.15s ease;
}
.zoom-layer.is-deep {
  cursor: zoom-out;
  overflow: auto;
}
.zoom-layer.is-deep img {
  max-width: none;
  max-height: none;
  width: min(1600px, 160vw);
  transform: scale(1.35);
}
.zoom-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  font-size: 26px;
  line-height: 1;
  z-index: 2;
}
.item-info h1 {
  font-family: Figtree, sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  line-height: 1.15;
}
.item-info .price {
  font-family: Figtree, sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
}
.item-rating { color: #6d6668; font-size: 14px; margin: 0 0 18px; }
.item-rating .stars { color: #e4b000; margin-right: 6px; }
.btn-buy {
  width: min(100%, 280px);
  background: var(--pink);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.btn-text {
  min-height: 42px;
  padding: 0 4px;
  background: transparent;
  color: #6d6668;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-text:hover { color: var(--pink); }
.buy-layer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(26, 18, 20, 0.48);
}
.buy-layer[hidden] { display: none !important; }
.buy-layer.show { display: flex !important; }
.buy-sheet {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 18px 18px 12px 12px;
  padding: 20px 18px 16px;
  box-shadow: 0 24px 60px rgba(26, 18, 20, 0.2);
}
.buy-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.buy-sheet-head h2 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
}
.buy-sheet-head p {
  margin: 0;
  color: #6d6668;
  font-size: 14px;
  line-height: 1.45;
}
.buy-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: var(--pink);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
}
.buy-grid {
  display: grid;
  gap: 8px;
}
.buy-pick {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.buy-pick:hover {
  border-color: var(--pink);
  background: #fff7f8;
}
.buy-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f6f4f4;
  overflow: hidden;
}
.buy-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.buy-pick-copy b { display: block; font-size: 15px; }
.buy-pick-copy small { color: #8a8486; font-size: 12px; }
.buy-pick-go { color: #c9c3c4; font-size: 22px; }
.buy-sheet-foot {
  margin: 14px 0 0;
  color: #8a8486;
  font-size: 12px;
  line-height: 1.5;
}
@media (min-width: 720px) {
  .buy-layer { align-items: center; }
  .buy-sheet { border-radius: 16px; padding: 22px 22px 18px; }
}
.item-sheet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f6f4f4;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 22px;
}
.item-sheet-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
}
.item-sheet strong { display: block; margin-bottom: 4px; }
.item-sheet p { margin: 0 0 10px; color: #5c5658; font-size: 14px; }
.sheet-chip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.sheet-chip:hover { border-color: var(--pink); color: var(--pink); }
.item-alts p {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #3a3a3a;
}
.item-alt-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.btn-alt {
  min-height: 42px;
  padding: 0 16px;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.reviews h2 { font-size: 28px; margin: 0 0 18px; }
.review-list { display: grid; gap: 12px; }
.review-empty { color: var(--muted); margin: 0; }
.review-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #efe7e8;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.review-card strong { display: block; }
.review-card time { color: var(--muted); font-size: 13px; }
.review-card p {
  grid-column: 2 / -1;
  margin: 0;
  color: #3a3a3a;
}
.review-actions { display: flex; justify-content: center; margin: 22px 0 8px; }
.review-comment-btn {
  background: #1a1214;
  color: #fff;
  min-height: 44px;
  padding: 0 22px;
}
.review-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  max-width: 820px;
}
.review-form label { display: grid; gap: 6px; }
.review-form span { font-size: 14px; color: var(--muted); }
.review-form em { color: var(--pink); font-style: normal; }
.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 12px 14px;
}
.review-form textarea { resize: vertical; min-height: 140px; }
.review-form .btn { justify-self: start; }
.trust-note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
}
.trust-note-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.trust-note h3 { margin: 0; font-size: 20px; }
.trust-note-badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--muted);
  background: #fbf8f8;
}
.trust-note > p { color: #3a3a3a; margin: 0 0 14px; line-height: 1.7; }
.trust-note-box {
  background: #f7f4f4;
  border-radius: 12px;
  padding: 14px 16px;
}
.trust-note-box p { margin: 0 0 8px; color: #4a4446; font-size: 14px; line-height: 1.65; }
.trust-note-box p:last-child { margin: 0; }
.trust-note-date { text-align: center; color: var(--muted); font-size: 13px; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,22,28,.45);
  display: none;
  z-index: 50;
}
.overlay.show { display: block; }
.drawer, .search-modal {
  position: fixed;
  z-index: 60;
  background: var(--paper);
  border: 1px solid var(--line);
}
.search-modal {
  display: none;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, calc(100% - 24px));
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.search-modal.show { display: block; }
.search-modal input { width: 100%; margin-bottom: 4px; }
.search-hits { max-height: min(420px, 60vh); overflow: auto; }
.search-hits p { color: var(--muted); padding: 8px 12px; }
.search-suggest {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.search-suggest svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #9a9395;
}
.search-suggest:hover,
.search-suggest.is-on { background: #f7f4f4; }
.search-suggest mark {
  background: #ffe0e4;
  color: inherit;
  padding: 0 1px;
  border-radius: 2px;
}
.drawer {
  display: none;
  top: 0;
  right: 0;
  width: min(380px, 100%);
  height: 100%;
  padding: 18px;
}
.drawer.show { display: block; }
.mobile-nav {
  display: none;
  position: fixed;
  z-index: 60;
  inset: 0 auto 0 0;
  width: min(320px, 88vw);
  background: var(--paper);
  padding: 18px;
  border-right: 1px solid var(--line);
}
.mobile-nav.show { display: block; }
.mobile-nav a { display: block; padding: 10px 0; font-weight: 700; }
.mobile-nav a.is-on {
  color: var(--pink);
  box-shadow: inset 0 -2px 0 var(--pink);
}

.toast {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  display: none;
  z-index: 70;
  font-weight: 700;
}
.toast.show { display: block; }

@media (max-width: 980px) {
  .nav { display: none; }
  .menu-btn { display: grid; }
  .hero-grid, .feature-grid, .tool-grid, .post-grid, .item-layout, .trust-grid, .story-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .thumbs { flex-direction: row; overflow-x: auto; }
  .thumbs button { width: 64px; flex: 0 0 64px; }
  .item-bar { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .post-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  h1 { font-size: 40px; }
}
