:root {
  --bg: #ffffff;
  --bg-soft: #f6f5f3;
  --bg-warm: #faf8f5;
  --paper: #ffffff;
  --ink: #171717;
  --muted: #5f5f5b;
  --line: #eceae6;
  --line-2: #ddd9d3;
  --accent: #fb2840;
  --accent-2: #d91b33;
  --accent-soft: #fff1f3;
  --shadow: 0 1px 2px rgba(23, 23, 23, 0.04), 0 12px 32px rgba(23, 23, 23, 0.05);
  --radius: 16px;
  --max: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.wrap { width: min(var(--max), calc(100% - 24px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
}
.brand-mark {
  width: 34px;
  height: 44px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}
.brand-mark img {
  width: 34px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.brand-copy {
  display: grid;
  line-height: 1.05;
}
.brand-copy strong {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fb2840;
  letter-spacing: -0.03em;
}
.brand-copy strong span { color: #fb2840; font-weight: 700; }
.search-wrap {
  position: relative;
  max-width: 520px;
  width: 100%;
  justify-self: center;
}
.search-wrap input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line-2);
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 0 16px 0 42px;
  outline: none;
}
.search-wrap input:focus {
  background: #fff;
  border-color: #cfcbc4;
  box-shadow: 0 0 0 4px rgba(255, 77, 26, 0.08);
}
.search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--muted);
}
.kbd {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #8a8a84;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 6px;
  background: #fff;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 42px;
  padding: 0 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.lang-link.is-on {
  background: var(--ink);
  color: #fff;
}
.lang-link:hover { color: var(--ink); }
.lang-link.is-on:hover { color: #fff; }
.footer-lang { margin: 10px 0 !important; }
.footer-lang .lang-switch { height: 36px; }
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
}
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-2); }
.btn-ghost { background: #fff; border-color: var(--line-2); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-line { background: transparent; border-color: var(--line-2); height: 36px; font-size: 13px; }
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.catbar {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.catbar-row {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 8px 0 10px;
  scrollbar-width: none;
}
.catbar-row::-webkit-scrollbar { display: none; }
.catbar a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: #3d3d3a;
}
.catbar a:hover, .catbar a.is-on { background: var(--bg-soft); color: var(--ink); }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 23, 23, 0.28);
  display: none;
  z-index: 60;
}
.overlay.show { display: block; }
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 86vw);
  background: #fff;
  z-index: 70;
  padding: 24px 18px;
  display: none;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow);
}
.mobile-nav.show { display: flex; }
.mobile-nav a { padding: 10px 8px; font-weight: 600; border-radius: 10px; }
.mobile-nav a:hover { background: var(--bg-soft); }
.search-input-mobile {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 0 12px;
  margin-bottom: 8px;
  background: var(--bg-soft);
}

.search-hits {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: none;
  max-height: 360px;
  overflow: auto;
  z-index: 40;
  padding: 6px 0;
}
.search-hits.show { display: block; }
.search-hits a,
.search-hits .suggest-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink);
}
.search-hits a:hover,
.search-hits .suggest-row:hover { background: var(--bg-soft); }
.suggest-kind {
  flex: 0 0 64px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a8a84;
}
.suggest-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.suggest-all .suggest-text { font-weight: 600; }
.search-hits img { display: none; }

/* Hero */
.hero {
  padding: 48px 0 20px;
  text-align: left;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 800;
}
.hero p.lede {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}
.hero p.lede strong { color: var(--ink); }
.hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8a8a84;
  font-size: 13px;
}

.promo {
  background: linear-gradient(145deg, #ff6678 0%, #fb2840 48%, #e01832 100%);
  border-radius: 28px;
  padding: 26px 24px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: center;
  min-height: 250px;
  box-shadow: 0 18px 40px rgba(251, 40, 64, 0.22);
}
.promo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.95;
  margin-bottom: 10px;
}
.promo h3 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.btn-white {
  background: #fff;
  color: var(--accent);
  height: 42px;
}
.btn-white:hover { background: #fff4f5; }
.coupon-stack { position: relative; padding-top: 18px; }
.coupon {
  background: #fff;
  color: var(--accent);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(140, 10, 28, 0.12);
}
.coupon.mini {
  width: 86%;
  margin: 0 0 -12px auto;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.coupon.main {
  position: relative;
  z-index: 2;
}
.coupon.main b {
  display: block;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.coupon.main p {
  margin: 4px 0 10px;
  color: #6b6b6b;
  font-size: 12.5px;
  font-weight: 500;
}
.coupon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  color: #9a9a9a;
  font-size: 11px;
}
.coupon-row .btn {
  height: 30px;
  padding: 0 12px;
  font-size: 12px;
}

.item-promo {
  margin: 0 0 10px;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  gap: 16px;
  align-items: center;
  grid-template-columns: 1fr minmax(180px, 220px);
  box-shadow: 0 10px 24px rgba(251, 40, 64, 0.16);
}
.item-promo h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.2;
}
.item-promo .promo-kicker {
  margin-bottom: 4px;
  font-size: 11px;
}
.item-promo .promo-copy { max-width: none; }
.item-promo .btn-white { height: 34px; padding: 0 14px; font-size: 12px; }
.item-promo .coupon-stack { padding-top: 10px; width: 100%; }
.item-promo .coupon { border-radius: 12px; padding: 8px 10px; }
.item-promo .coupon.mini { font-size: 11px; padding: 5px 8px; margin-bottom: -8px; width: 82%; }
.item-promo .coupon.main b { font-size: 15px; }
.item-promo .coupon.main p { font-size: 10.5px; margin: 2px 0 6px; }
.item-promo .coupon-row { font-size: 10px; }
.item-promo .coupon-row .btn { height: 26px; font-size: 10px; padding: 0 10px; }

.section { padding: 56px 0; }
.section.soft { background: var(--bg-soft); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}
.section-head p { margin: 6px 0 0; color: var(--muted); }
.center { text-align: center; justify-content: center; }
.center > div { width: 100%; }

.cat-section { background: #fff; }
.cat-section .wrap { width: min(1440px, calc(100% - 20px)); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 8px 6px;
  align-items: start;
}
.cat-icon {
  width: auto;
  min-width: 0;
  text-align: center;
  color: var(--ink);
}
.cat-icon i {
  display: flex;
  width: 72px;
  height: 72px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #d8d8d4;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.cat-icon .cat-line {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.cat-icon span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #111;
}
.cat-icon:hover i {
  border-color: #bdbdb8;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 14px;
  margin: 0 -2px 28px;
  scrollbar-width: thin;
}
.product-rail .product-card {
  flex: 0 0 calc((100% - 14px * 5) / 5.5);
  min-width: 0;
  scroll-snap-align: start;
  min-height: auto;
}
.product-row-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.product-card .thumb {
  aspect-ratio: 1;
  background: var(--bg-soft);
  overflow: hidden;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.product-card:hover .thumb img {
  transform: scale(1.06);
}
.product-card .body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card h3 {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .price { font-weight: 800; font-size: 18px; letter-spacing: -0.03em; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 22px;
}
.step i {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
}
.step h3 { margin: 12px 0 8px; letter-spacing: -0.03em; }
.step p { margin: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.split h2 { margin: 0 0 12px; font-size: 2rem; letter-spacing: -0.04em; }
.split p { color: var(--muted); }
.photo-panel {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  min-height: 280px;
}
.photo-panel img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.guide-list { display: grid; gap: 14px; }
.guide-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.guide-list article:last-child { border-bottom: 0; }
.guide-list b {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.03em;
}
.guide-list h3 { margin: 0 0 6px; font-size: 17px; }
.guide-list p { margin: 0; color: var(--muted); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.why-grid.trust {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.why-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.why-grid.trust article {
  padding: 22px 22px 20px;
}
.why-grid h3 { margin: 0 0 8px; font-size: 16px; }
.why-grid.trust h3 { font-size: 17px; letter-spacing: -0.02em; }
.why-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.about-kakobuy {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: start;
}
.about-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  letter-spacing: -0.04em;
}
.about-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  max-width: 52ch;
}
.about-copy p strong { color: var(--ink); font-weight: 700; }
.about-copy p em {
  font-style: normal;
  color: var(--ink);
  font-weight: 700;
}
.about-copy a:not(.btn) { color: var(--ink); font-weight: 400; text-decoration: underline; text-underline-offset: 2px; }
.about-copy a.btn { margin-top: 8px; color: #fff; text-decoration: none; font-weight: 700; }

.kako-mock {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  align-self: start;
  min-width: 0;
  max-height: 420px;
  display: flex;
  flex-direction: column;
}
.kako-mock-chrome {
  height: 38px;
  background: linear-gradient(180deg, #f7f6f4, #efeeeb);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
}
.kako-mock-chrome i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8d5d0;
  display: block;
}
.kako-mock-chrome i:nth-child(1) { background: #ff5f57; }
.kako-mock-chrome i:nth-child(2) { background: #febc2e; }
.kako-mock-chrome i:nth-child(3) { background: #28c840; }
.kako-mock-chrome span {
  margin-left: 8px;
  flex: 1;
  height: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.kako-marquee {
  overflow: hidden;
  flex: 1;
  min-height: 0;
  height: auto;
  padding: 0;
  background: #f5f4f2;
  mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent);
}
.kako-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  width: 100%;
  animation: kako-marquee 36s linear infinite;
}
.kako-marquee-track img {
  height: auto;
  width: 100%;
  border-radius: 0;
  display: block;
  flex: 0 0 auto;
  box-shadow: none;
}
.kako-mock-body { display: none; }
@keyframes kako-marquee {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .kako-marquee-track { animation: none; }
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.flow-grid article {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px 16px;
}
.flow-ico {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  align-items: center;
  justify-content: center;
}
.flow-ico svg { width: 22px; height: 22px; }
.flow-grid h3 {
  margin: 12px 0 6px;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.flow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.trust-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}

.faq-list { display: grid; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 4px 16px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p { margin: 0 0 14px; color: var(--muted); }

.catalog-intro { padding: 36px 0 8px; }
.catalog-intro h1 { margin: 0; font-size: 2.1rem; letter-spacing: -0.04em; }
.catalog-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 0 18px;
  flex-wrap: wrap;
}
.catalog-top select {
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  padding: 0 10px;
  background: #fff;
}
.pager {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 0 8px;
}
.pager a, .pager span {
  min-width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}
.pager .is-on { background: var(--ink); color: #fff; border-color: var(--ink); }

.crumbs { display: flex; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: 13px; padding-top: 22px; }
.item-layout {
  display: grid;
  grid-template-columns: minmax(0, 400px) 1fr;
  gap: 28px;
  padding: 22px 0 48px;
  align-items: start;
}
.item-stage {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-soft);
  max-width: 400px;
  width: 100%;
}
.item-stage img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.item-gallery {
  max-width: 400px;
  width: 100%;
  display: grid;
  gap: 8px;
}
.item-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.item-thumbs button {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
  flex: 0 0 auto;
}
.item-thumbs button.is-on {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.item-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.item-thumbs:empty { display: none; }
.item-copy h1 { margin: 0 0 6px; font-size: 1.65rem; letter-spacing: -0.04em; line-height: 1.15; }
.item-copy .price { font-size: 24px; font-weight: 800; letter-spacing: -0.04em; }
.meta { color: var(--muted); margin: 8px 0 18px; }
.item-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 10px; }
.item-copy .note {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.brand-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-cloud a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  background: #fff;
}
.brand-cloud a:hover { border-color: var(--ink); }

.home-brands .section-head { margin-bottom: 28px; }
.home-brands .section-head h2 { max-width: 28ch; margin-left: auto; margin-right: auto; }
.home-brands .section-head p { max-width: 62ch; margin-left: auto; margin-right: auto; }
.brand-vault {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}
.brand-vault a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
  line-height: 1.2;
}
.brand-vault a:hover { border-color: var(--ink); background: var(--bg-soft); }
@media (max-width: 1100px) {
  .brand-vault { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 800px) {
  .brand-vault { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .brand-vault { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .brand-vault a { min-height: 44px; font-size: 11px; }
}


.site-footer {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 28px;
}
.footer-col h3 { margin: 0 0 10px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: #8a8a84; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 14px; margin: 0 0 8px; }
.footer-col a:hover { color: var(--ink); }
.footer-contact { margin-top: 10px !important; }
.footer-contact a { display: inline; color: var(--ink); font-weight: 600; }
.legal {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #8a8a84;
  font-size: 12.5px;
}
.legal p { margin: 0 0 8px; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.contact-card {
  margin-top: 28px;
  max-width: 520px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.contact-card p { margin: 0 0 18px; color: var(--muted); line-height: 1.55; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card strong { color: var(--ink); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.contact-card a { color: var(--accent); font-weight: 700; }
.contact-card .note { margin-top: 8px; font-size: 14px; }
.discord-float {
  position: fixed;
  right: 18px;
  bottom: 96px;
  z-index: 40;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5865f2;
  color: #fff;
  box-shadow: 0 10px 28px rgba(88, 101, 242, 0.35);
}
.discord-float svg { width: 26px; height: 26px; }
.discord-float:hover { filter: brightness(1.06); }

@media (max-width: 980px) {
  .header-row { grid-template-columns: auto 1fr auto; }
  .search-wrap { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid, .promo, .steps, .why-grid, .split, .item-layout, .footer-grid,
  .about-kakobuy {
    grid-template-columns: 1fr;
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-rail .product-card { flex-basis: calc((100% - 14px * 2) / 3.2); }
  .product-row-5 { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .hero { padding-top: 40px; }
  .steps, .why-grid, .split, .item-layout, .footer-grid, .flow-grid {
    grid-template-columns: 1fr;
  }
  .cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cat-icon i { width: 56px; height: 56px; }
  .cat-icon .cat-line { width: 36px; height: 36px; }
  .product-rail .product-card { flex-basis: calc((100% - 14px) / 2.25); }
  .product-row-5 { grid-template-columns: repeat(2, 1fr); }
  .search-wrap .kbd { display: none; }
}


/* Plain FAQ for crawlers */
.faq-static { gap: 16px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 16px 18px;
}
.faq-item h2,
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.faq-item p { margin: 0; color: var(--muted); }

.howto-plain {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  max-width: 820px;
  display: grid;
  gap: 18px;
}
.howto-plain li {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 18px 20px;
}
.howto-plain h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.howto-plain p { margin: 0; color: var(--muted); }
