/* ============================================================
   MoeVerse — Anime Merch Landing
   Design tokens (mirrors the Ardot mockup)
   ============================================================ */
:root {
  --bg: #FFF5F2;
  --card: #FFFFFF;
  --accent: #FF6B9D;
  --accent-soft: #FFE4F0;
  --ink: #1A1A2E;
  --muted: #6B6B8A;
  --border: #EBEEF5;
  --dark: #1A1A2E;
  --dark-muted: #B8B8C8;
  --dark-faint: #8A8A9E;

  --pink: #FFE4F0;
  --blue: #E0EBFF;
  --yellow: #FFF7DC;
  --green: #E8F0E5;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --shadow-pink: 0 12px 28px rgba(46, 26, 33, 0.10);
  --shadow-soft: 0 8px 24px rgba(46, 26, 33, 0.08);
  --maxw: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", "Noto Sans SC", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,107,157,.35); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid #D9DCE8; }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand .logo {
  width: 36px; height: 36px; border-radius: 11px;
  background: var(--accent);
  display: grid; place-items: center;
}
.brand .name { display: flex; flex-direction: column; line-height: 1.04; }
.name-main { font-size: 20px; font-weight: 800; letter-spacing: .4px; }
.name-sub { font-size: 10px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); margin-top: 1px; }
.foot-brand .name { display: flex; flex-direction: column; line-height: 1.04; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--muted); transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang {
  display: flex; align-items: center; gap: 6px;
  background: var(--bg);
  border-radius: var(--radius-pill);
  padding: 6px 8px;
}
.lang span { font-size: 12px; font-weight: 500; color: var(--muted); padding: 0 2px; }
.lang span.active { color: var(--accent); font-weight: 700; }
.cart { width: 22px; height: 22px; color: var(--ink); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 72px 0; }
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-left { flex: 1 1 560px; max-width: 600px; }
.kicker {
  font-size: 12px; font-weight: 500; letter-spacing: 1.2px;
  color: var(--accent); margin-bottom: 18px;
}
.hero h1 {
  font-size: 52px; font-weight: 700; line-height: 1.12;
  letter-spacing: -1px; margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.trust-line { font-size: 13px; color: var(--muted); }

.hero-collage { position: relative; width: 560px; height: 460px; flex: 0 0 560px; }
.collage-card {
  position: absolute; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-pink); background: var(--pink);
}
.collage-card img { width: 100%; height: 100%; object-fit: cover; }
.collage-big { left: 0; top: 50px; width: 300px; height: 380px; }
.collage-top { right: 0; top: 0; width: 224px; height: 210px; background: var(--blue); }
.collage-bot { right: 0; top: 230px; width: 224px; height: 210px; background: var(--yellow); }
.badge-new {
  position: absolute; left: 232px; top: 18px;
  background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 600;
  height: 34px; display: inline-flex; align-items: center; padding: 0 14px;
  border-radius: var(--radius-pill); box-shadow: 0 6px 14px rgba(0,0,0,.18);
  z-index: 2;
}

/* ============================================================
   Trust bar
   ============================================================ */
.trust-bar {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.trust-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px;
}
.trust-inner span { font-size: 14px; font-weight: 500; color: var(--muted); }

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding: 96px 0; }
.section-head { margin-bottom: 36px; }
.section-head h2 { font-size: 40px; font-weight: 700; letter-spacing: -.5px; }
.section-head p { font-size: 17px; color: var(--muted); margin-top: 10px; }
.section-head.row {
  display: flex; align-items: center; justify-content: space-between;
}
.section-head.row .see-all { font-size: 15px; font-weight: 500; color: var(--accent); }

/* ============================================================
   Category grid
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card {
  height: 240px; border-radius: var(--radius-lg);
  padding: 24px; display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
  transition: transform .2s ease;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card .ico {
  position: absolute; top: 22px; right: 22px;
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.65); display: grid; place-items: center;
}
.cat-card h3 { font-size: 22px; font-weight: 700; }
.cat-card p { font-size: 13px; color: var(--muted); margin-top: 4px; }
.cat-gacha  { background: linear-gradient(135deg, #FFE4F0, #FFF5F2); }
.cat-acrylic{ background: linear-gradient(135deg, #FFE9EA, #FFF5F2); }
.cat-charm  { background: linear-gradient(135deg, #FFF1DC, #FFF5F2); }
.cat-station{ background: linear-gradient(135deg, #E8F0E5, #FFF5F2); }

/* ============================================================
   Featured (Bento)
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: 620px 1fr; gap: 16px; }
.feat-left {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-pink); display: flex; flex-direction: column;
}
.feat-left .ph { height: 392px; background: var(--pink); overflow: hidden; }
.feat-left .ph img { width: 100%; height: 100%; object-fit: cover; }
.feat-left .info { padding: 22px 28px; }
.feat-left .info h3 { font-size: 20px; font-weight: 600; }
.feat-left .info p { font-size: 14px; color: var(--muted); margin-top: 6px; }

.feat-right { display: flex; flex-direction: column; gap: 16px; }
.feat-small {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-pink); display: flex; flex-direction: column; flex: 1;
}
.feat-small .ph { height: 140px; overflow: hidden; }
.feat-small .ph img { width: 100%; height: 100%; object-fit: cover; }
.feat-small .info { padding: 18px 22px; }
.feat-small .info h3 { font-size: 17px; font-weight: 600; }
.feat-small .info p { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ============================================================
   Why MoeVerse (2x2)
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease;
}
.why-card:hover { transform: translateY(-4px); }
.why-card .ico {
  width: 36px; height: 36px; color: var(--accent);
}
.why-card h3 { font-size: 18px; font-weight: 600; }
.why-card p { font-size: 14px; color: var(--muted); }

/* ============================================================
   New Arrivals
   ============================================================ */
.arr-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.arr-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-pink); transition: transform .2s ease;
}
.arr-card:hover { transform: translateY(-4px); }
.arr-card .ph { height: 200px; overflow: hidden; }
.arr-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.arr-card .info { padding: 18px 20px; }
.arr-card .info h3 { font-size: 17px; font-weight: 600; }
.arr-card .info p { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* placeholder (no photo yet) */
.ph.placeholder {
  display: grid; place-items: center;
  background: var(--pink);
}
.ph.placeholder svg { width: 64px; height: 64px; color: var(--accent); opacity: .8; }

/* ============================================================
   Inquiry CTA
   ============================================================ */
.inquiry {
  background: #fff;
  padding: 96px 40px;
  text-align: center;
}
.inquiry h2 { font-size: 44px; font-weight: 700; letter-spacing: -.5px; }
.inquiry p { font-size: 17px; color: var(--muted); max-width: 560px; margin: 16px auto 28px; }
.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.inquiry-form .field { display: flex; flex-direction: column; gap: 8px; }
.inquiry-form .field-full { grid-column: 1 / -1; }
.inquiry-form label { font-size: 14px; font-weight: 600; color: var(--ink); }
.inquiry-form input,
.inquiry-form textarea {
  width: 100%; min-height: 52px;
  border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px; font-size: 15px; font-family: inherit; color: var(--ink);
  background: #fff; resize: vertical;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus { outline: none; border-color: var(--accent); }
.chip-group, .radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; }
.chip span {
  display: inline-flex; align-items: center; height: 44px; padding: 0 18px;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500; color: var(--muted); background: #fff;
  transition: all .15s ease;
}
.chip input:checked + span {
  background: var(--accent-soft); border-color: var(--accent); color: var(--accent); font-weight: 600;
}
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(255,107,157,.25); }
.btn-block { width: 100%; grid-column: 1 / -1; }
.inquiry .note { font-size: 13px; color: var(--muted); margin-top: 16px; }
.inquiry-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.inquiry-msg { min-height: 20px; margin-top: 16px; font-size: 14px; font-weight: 500; }
.inquiry-msg.ok   { color: #1f9d55; }
.inquiry-msg.err  { color: #d6455a; }
.inquiry-msg.warn { color: #c77b12; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--dark); color: #fff; padding: 64px 0 40px; }
.foot-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-brand { max-width: 280px; }
.foot-brand .logo {
  width: 32px; height: 32px; border-radius: 10px; background: var(--accent);
  display: grid; place-items: center; margin-bottom: 0;
}
.foot-brand .frow { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.foot-brand .name { font-size: 18px; font-weight: 700; }
.foot-brand p { font-size: 13px; color: var(--dark-muted); line-height: 1.6; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.foot-col a { display: block; font-size: 13px; color: var(--dark-muted); margin-bottom: 10px; transition: color .15s ease; }
.foot-col a:hover { color: #fff; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 44px; padding-top: 24px; flex-wrap: wrap; gap: 12px;
}
.foot-bottom .copy { font-size: 13px; color: var(--dark-faint); }
.foot-social { display: flex; gap: 16px; }
.foot-social a { color: var(--dark-muted); transition: color .15s ease; }
.foot-social a:hover { color: #fff; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-collage { width: 100%; max-width: 560px; height: 420px; flex: none; }
  .collage-big { width: 260px; height: 340px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-right { flex-direction: row; }
  .feat-small { flex: 1; }
}
@media (max-width: 720px) {
  .wrap, .hero-inner, .trust-inner, .foot-inner { padding-left: 20px; padding-right: 20px; }
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .lang { display: none; }
  .hero { padding: 48px 0; }
  .hero h1 { font-size: 38px; }
  .section { padding: 64px 0; }
  .section-head h2 { font-size: 30px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .arr-row { grid-template-columns: 1fr; }
  .feat-right { flex-direction: column; }
  .inquiry { padding: 64px 20px; }
  .inquiry h2 { font-size: 32px; }
  .inquiry-form { grid-template-columns: 1fr; }
  .inquiry-form input { width: 100%; }
}
@media (max-width: 460px) {
  .cat-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
}
