:root {
  --ink: #1b1b1e;
  --paper: #fffdf6;
  --cream: #fff4d6;
  --yellow: #ffd23f;
  --red: #ee4266;
  --blue: #3bceac;
  --sky: #7ad3f7;
  --muted: #5f5f66;
  --radius: 16px;
  --shadow: 6px 6px 0 var(--ink);
  --title: 'Bangers', Impact, 'Arial Black', sans-serif;
  --body: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); font-weight: 700; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }

.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding-inline: 20px; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.lead { font-size: 1.15rem; }
.light { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  font-family: var(--body);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: .75em 1.3em;
  box-shadow: 4px 4px 0 var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn:disabled { opacity: .6; cursor: wait; transform: none; }
.btn-big { font-size: 1.12rem; padding: .9em 1.6em; }
.btn-small { font-size: .9rem; padding: .45em .9em; box-shadow: 3px 3px 0 var(--ink); }
.btn-ghost { background: #fff; color: var(--ink); }
.btn-block { width: 100%; }
.link-arrow { color: var(--ink); text-decoration: none; border-bottom: 3px solid var(--yellow); }

.card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 32px);
}

/* ---------- Header / footer ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 66px; }
.logo {
  font-family: var(--title);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-burst {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--red);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-size: 1rem;
}
.nav { display: flex; align-items: center; gap: 20px; }
.nav a:not(.btn) { color: var(--ink); text-decoration: none; font-weight: 700; }
@media (max-width: 720px) {
  .nav a:not(.btn):not(.nav-account) { display: none; }
  .logo { font-size: 1.45rem; }
}

.site-footer { background: var(--ink); color: #eee; margin-top: 0; padding-block: 40px 24px; }
.site-footer .muted { color: #b9b9c0; }
.logo-footer { color: #fff; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.footer-links a { color: #fff; font-weight: 600; text-decoration: none; }
.footer-bottom { border-top: 1px solid #333; margin-top: 24px; padding-top: 16px; font-size: .85rem; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle, rgba(27, 27, 30, .09) 2px, transparent 2.5px) 0 0 / 22px 22px,
    var(--cream);
  border-bottom: 3px solid var(--ink);
  padding-block: clamp(36px, 7vw, 80px);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .8rem;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .25em .9em;
  margin-bottom: 14px;
}
.hero h1 { font-family: var(--title); font-weight: 400; letter-spacing: 1px; font-size: clamp(2.5rem, 6vw, 4.6rem); line-height: 1; }
.highlight { background: var(--yellow); padding: 0 .15em; border: 3px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); display: inline-block; transform: rotate(-1.5deg); }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin: 26px 0 18px; }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.ticks li::before { content: '✓'; display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 8px; background: var(--blue); color: var(--ink); border: 2px solid var(--ink); border-radius: 50%; font-size: .75rem; font-weight: 900; }
.hero-art { position: relative; }
.hero-svg { width: 100%; max-width: 480px; margin: 0 auto; display: block; transform: rotate(2deg); }
.sample-stack { position: relative; max-width: 460px; margin: 0 auto; aspect-ratio: 1654 / 2339; }
.sample-stack img { position: absolute; width: 86%; border: 3px solid var(--ink); box-shadow: var(--shadow); border-radius: 6px; }
.sample-back { right: 0; top: 6%; transform: rotate(5deg); }
.sample-front { left: 0; top: 0; transform: rotate(-3deg); }
.pow {
  position: absolute;
  top: -10px;
  right: 0;
  font-family: var(--title);
  font-size: 2.2rem;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  padding: 8px 18px;
  transform: rotate(12deg);
  box-shadow: 4px 4px 0 var(--ink);
  clip-path: polygon(0 12%, 12% 0, 30% 10%, 50% 0, 70% 10%, 88% 0, 100% 14%, 94% 50%, 100% 86%, 86% 100%, 66% 90%, 50% 100%, 32% 90%, 12% 100%, 0 86%, 6% 50%);
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; margin: 0 auto; width: 100%; }
}

.occasions-strip { background: var(--red); border-bottom: 3px solid var(--ink); overflow: hidden; }
.strip-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; padding-block: 12px; }
.strip-inner span { font-family: var(--title); font-size: 1.35rem; letter-spacing: 1px; color: #fff; }
.strip-inner span::after { content: ' ★'; color: var(--yellow); }

/* ---------- Sections ---------- */
.section { padding-block: clamp(48px, 8vw, 90px); }
.section-yellow { background: var(--yellow); border-block: 3px solid var(--ink); }
.section-dark { background: var(--ink); color: #fff; }
.section-title { font-family: var(--title); font-weight: 400; letter-spacing: 1px; font-size: clamp(2rem, 4.5vw, 3.2rem); text-align: center; margin-bottom: 36px; }
.section-title.left { text-align: left; margin-bottom: 14px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-num { font-family: var(--title); font-size: 2.6rem; line-height: 1; width: 64px; height: 64px; display: grid; place-items: center; background: var(--yellow); border: 3px solid var(--ink); border-radius: 50%; margin-bottom: 14px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

.inside-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.inside-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.inside-list li { background: #fff; border: 3px solid var(--ink); border-radius: 12px; padding: 10px 16px; box-shadow: 3px 3px 0 var(--ink); }
@media (max-width: 820px) { .inside-grid { grid-template-columns: 1fr; } }

.styles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.style-card { padding: 16px; }
.style-card p { font-size: .95rem; color: var(--muted); margin: 0; }
.style-img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top; border: 3px solid var(--ink); border-radius: 10px; margin-bottom: 12px; }
.style-swatch {
  aspect-ratio: 3 / 4;
  border: 3px solid var(--ink);
  border-radius: 10px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, var(--c1) 0 22%, transparent 23%),
    radial-gradient(circle, rgba(0, 0, 0, .12) 2px, transparent 2.5px) 0 0 / 14px 14px,
    linear-gradient(135deg, var(--c2), var(--c3));
}
.style-swatch span { font-family: var(--title); font-size: 1.6rem; color: #fff; text-shadow: 2px 2px 0 var(--ink); background: rgba(0, 0, 0, .15); padding: 2px 12px; border-radius: 8px; }
.style-swatch.small { aspect-ratio: 1; width: 100%; margin-bottom: 8px; }
@media (max-width: 960px) { .styles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .styles-grid { grid-template-columns: 1fr; } }

.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.price-card { color: var(--ink); box-shadow: 8px 8px 0 var(--yellow); }
.price { font-family: var(--title); font-size: 3.6rem; line-height: 1; margin-bottom: 16px; }
.price-card .ticks { margin-bottom: 22px; }
@media (max-width: 820px) { .price-grid { grid-template-columns: 1fr; } }

.faq { border: 3px solid var(--ink); border-radius: 12px; background: #fff; margin-bottom: 12px; box-shadow: 3px 3px 0 var(--ink); }
.faq summary { cursor: pointer; font-weight: 800; padding: 14px 18px; list-style: none; position: relative; padding-right: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 18px; top: 8px; font-size: 1.5rem; }
.faq[open] summary::after { content: '–'; }
.faq p { padding: 0 18px 12px; margin: 0; }

.final-cta { background: var(--red); border-top: 3px solid var(--ink); padding-block: 60px; text-align: center; color: #fff; }
.final-cta h2 { font-family: var(--title); font-weight: 400; letter-spacing: 1px; font-size: clamp(2rem, 5vw, 3.2rem); }
.final-cta .btn { background: var(--yellow); color: var(--ink); }

/* ---------- Create flow ---------- */
.create { padding-block: 30px 70px; background: var(--cream); min-height: 70vh; }
.progress { list-style: none; display: flex; gap: 6px; padding: 0; margin: 0 0 22px; counter-reset: step; flex-wrap: wrap; }
.progress li { flex: 1 1 0; min-width: 70px; text-align: center; font-weight: 800; font-size: .82rem; padding: 8px 4px; border: 3px solid var(--ink); border-radius: 10px; background: #fff; color: var(--muted); }
.progress li.active { background: var(--yellow); color: var(--ink); }
.progress li.done { background: var(--blue); color: var(--ink); }
.step-panel h1 { font-size: clamp(1.6rem, 4vw, 2.3rem); font-family: var(--title); font-weight: 400; letter-spacing: 1px; }
.field { margin-bottom: 18px; display: grid; gap: 6px; }
.field label, .upload-box h3 { font-weight: 800; }
.opt { font-weight: 600; color: var(--muted); font-size: .88rem; }
input:not([type=radio]):not([type=checkbox]):not([type=file]), select, textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: .6em .8em;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid var(--yellow); outline-offset: 1px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .row-2 { grid-template-columns: 1fr; } }
#moments { display: grid; gap: 10px; margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span { display: inline-block; border: 3px solid var(--ink); border-radius: 999px; padding: .35em .9em; background: #fff; font-weight: 700; cursor: pointer; }
.chip input:checked + span { background: var(--yellow); box-shadow: 3px 3px 0 var(--ink); }
.chip input:focus-visible + span { outline: 3px solid var(--red); }
.step-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; margin: 10px 0; }
.check input { width: 22px; height: 22px; margin-top: 3px; accent-color: var(--red); flex: none; }

.upload-box { border: 3px dashed var(--ink); border-radius: 14px; padding: 16px; background: var(--paper); }
.dropzone { display: grid; place-items: center; min-height: 110px; border: 3px solid var(--ink); border-radius: 12px; background: #fff; cursor: pointer; font-weight: 800; text-align: center; margin-bottom: 12px; }
.dropzone:hover { background: var(--yellow); }
.dropzone input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.dropzone.full { opacity: .45; pointer-events: none; }
.thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.thumb { position: relative; width: 84px; height: 84px; }
.thumb img { width: 100%; height: 100%; object-fit: cover; border: 3px solid var(--ink); border-radius: 10px; }
.thumb-remove { position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--ink); background: var(--red); color: #fff; font-weight: 900; cursor: pointer; line-height: 1; }

.style-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.style-option input { position: absolute; opacity: 0; }
.style-option-inner { display: grid; gap: 4px; border: 3px solid var(--ink); border-radius: 14px; padding: 12px; background: #fff; cursor: pointer; height: 100%; }
.style-option-inner small { color: var(--muted); line-height: 1.35; }
.style-option input:checked + .style-option-inner { background: var(--yellow); box-shadow: 4px 4px 0 var(--ink); }
.style-option input:focus-visible + .style-option-inner { outline: 3px solid var(--red); }
.style-option .style-swatch.small { aspect-ratio: 16 / 7; }
@media (max-width: 560px) { .style-options { grid-template-columns: 1fr; } }

.summary { border: 3px solid var(--ink); border-radius: 12px; background: var(--cream); padding: 10px 16px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; border-bottom: 2px dashed rgba(0, 0, 0, .15); }
.summary-row:last-child { border-bottom: 0; font-size: 1.1rem; }

.notice { border: 3px solid var(--ink); border-radius: 12px; padding: 10px 14px; font-weight: 700; margin: 12px 0; }
.notice-error { background: #ffd6de; }
.notice-warn { background: var(--yellow); }

/* ---------- Pay / order ---------- */
.center-card { text-align: center; }
.spinner { width: 54px; height: 54px; margin: 18px auto; border: 6px solid var(--cream); border-top-color: var(--red); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.order-code { font-family: var(--title); font-size: 3rem; letter-spacing: 3px; background: var(--yellow); border: 3px solid var(--ink); border-radius: 12px; display: inline-block; padding: 4px 24px; margin-bottom: 10px; }
.pay-steps { text-align: left; max-width: 520px; margin: 20px auto; }
.pay-waiting { margin-top: 22px; padding: 16px; border: 3px dashed var(--ink); border-radius: 14px; background: var(--cream); }
.pay-waiting .spinner { margin: 6px auto 10px; }
.big-emoji { font-size: 3.5rem; }

.order-head { margin-bottom: 20px; }
.tracker { list-style: none; display: flex; justify-content: space-between; padding: 0; margin: 0 0 26px; gap: 8px; }
.tracker li { flex: 1; text-align: center; font-weight: 800; color: var(--muted); position: relative; }
.tracker span { display: grid; place-items: center; width: 44px; height: 44px; margin: 0 auto 6px; border-radius: 50%; border: 3px solid var(--ink); background: #fff; font-family: var(--title); font-size: 1.4rem; }
.tracker li.done { color: var(--ink); }
.tracker li.done span { background: var(--blue); }
.tracker li.active { color: var(--ink); }
.tracker li.active span { background: var(--yellow); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(1.1); } }

.viewer { padding: 14px; margin-bottom: 26px; }
.viewer-stage { position: relative; display: grid; place-items: center; background: var(--cream); border-radius: 10px; padding: 12px; }
.viewer-page { max-height: 78vh; width: auto; border: 3px solid var(--ink); box-shadow: var(--shadow); background: #fff; }
.viewer-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--ink); background: var(--yellow); font-size: 2rem; line-height: 1; cursor: pointer; box-shadow: 3px 3px 0 var(--ink); }
.viewer-nav.prev { left: 10px; }
.viewer-nav.next { right: 10px; }
.viewer-bar { display: flex; align-items: center; gap: 14px; margin-top: 12px; }
.viewer-bar > span { font-weight: 800; white-space: nowrap; }
.viewer-thumbs { display: flex; gap: 8px; overflow-x: auto; padding: 4px; }
.viewer-thumb { flex: none; width: 54px; padding: 0; border: 3px solid transparent; border-radius: 6px; background: none; cursor: pointer; }
.viewer-thumb.active { border-color: var(--red); }
.viewer-thumb img { width: 100%; aspect-ratio: 1654 / 2339; object-fit: cover; border-radius: 3px; }
.delivery-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 18px; }
.copy-row { display: flex; gap: 8px; margin-bottom: 10px; }
.copy-row input { min-width: 0; font-size: .85rem; }
@media (max-width: 720px) { .delivery-actions { grid-template-columns: 1fr; } }

/* ---------- Gift ---------- */
.page-gift { background: var(--cream); }
.gift-reveal { min-height: 70vh; display: grid; place-items: center; align-content: center; text-align: center; padding: 20px; gap: 6px; }
.gift-reveal h1 { font-family: var(--title); font-weight: 400; letter-spacing: 1px; }
.gift-box { position: relative; width: 150px; height: 140px; margin-bottom: 26px; animation: wiggle 1.8s ease-in-out infinite; }
.gift-body { position: absolute; bottom: 0; left: 10px; right: 10px; height: 96px; background: var(--red); border: 4px solid var(--ink); border-radius: 6px; }
.gift-body::after, .gift-lid::after { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 22px; transform: translateX(-50%); background: var(--yellow); border-inline: 4px solid var(--ink); }
.gift-lid { position: absolute; top: 14px; left: 0; right: 0; height: 36px; background: var(--red); border: 4px solid var(--ink); border-radius: 6px; z-index: 1; transition: transform .6s ease; }
.gift-reveal.opening .gift-lid { transform: translateY(-70px) rotate(-25deg); }
.gift-reveal.opening .gift-box { animation: none; }
@keyframes wiggle { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(-4deg); } 75% { transform: rotate(4deg); } }
.hearts { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 50; }
.heart { position: absolute; bottom: -40px; color: var(--red); animation: floatUp 3.8s ease-in forwards; }
@keyframes floatUp { to { transform: translateY(-110vh) rotate(40deg); opacity: 0; } }

/* ---------- Login & account user ---------- */
.avatar { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--ink); object-fit: cover; vertical-align: middle; }
.avatar-lg { width: 64px; height: 64px; border-width: 3px; }
.nav-account { display: inline-flex; align-items: center; gap: 6px; }
.login-box { text-align: center; max-width: 560px; margin: 0 auto; }
.login-box h1 { font-family: var(--title); font-weight: 400; letter-spacing: 1px; }
.google-btn { display: inline-flex; align-items: center; gap: 12px; background: #fff; color: #1f1f1f; border: 3px solid var(--ink); border-radius: 12px; padding: 14px 26px; font-weight: 800; font-size: 1.1rem; text-decoration: none; box-shadow: 4px 4px 0 var(--ink); margin: 10px 0 18px; }
.google-btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.google-btn.disabled { opacity: .55; }
.test-login { margin-top: 22px; padding-top: 18px; border-top: 2px dashed rgba(0, 0, 0, .2); display: grid; gap: 8px; text-align: left; }
.account-user { display: flex; align-items: center; gap: 16px; }
.account-title { font-family: var(--title); font-weight: 400; letter-spacing: 1px; margin: 10px 0 16px; }
.account-strip { display: flex; align-items: center; gap: 10px; background: var(--cream); border: 2px dashed var(--ink); border-radius: 10px; padding: 8px 12px; margin-bottom: 16px; font-size: .95rem; }
.preinfo { border: 2px solid var(--ink); border-radius: 10px; padding: 8px 14px; margin: 8px 0 12px; background: #fff; font-size: .9rem; }
.preinfo summary { cursor: pointer; font-weight: 800; }
.preinfo ul { margin: 8px 0 0; padding-left: 1.1em; }
a.style-card { color: inherit; font-weight: inherit; text-decoration: none; display: block; transition: transform .12s ease; }
a.style-card:hover { transform: translate(-2px, -2px); }
.style-pick { display: inline-block; margin-top: 10px; font-weight: 800; color: var(--red); }
.footer-mail { color: #fff; }

/* ---------- Account ---------- */
.account-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.account-head h1 { font-family: var(--title); font-weight: 400; letter-spacing: 1px; margin-bottom: 4px; }
.notice-ok { background: #d7f7ea; }
.comic-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; margin-bottom: 30px; }
.comic-item { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 16px; align-items: start; }
.comic-cover img, .comic-cover-placeholder { width: 120px; aspect-ratio: 1654 / 2339; object-fit: cover; border: 3px solid var(--ink); border-radius: 6px; background: var(--cream); }
.comic-cover-placeholder { display: grid; place-items: center; font-size: 2.2rem; }
.comic-info h2, .comic-info h3 { font-size: 1.2rem; margin-bottom: 2px; }
.info-list { list-style: none; padding: 12px 16px !important; background: var(--cream); border: 2px solid var(--ink); border-radius: 10px; }
.info-list li { margin: 2px 0; }
.comic-info p { margin-bottom: 8px; }
.comic-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.status-pill { display: inline-block; font-weight: 800; font-size: .8rem; padding: 2px 10px; border: 2px solid var(--ink); border-radius: 999px; background: var(--yellow); }
.status-pill.st-delivered { background: var(--blue); }
.status-pill.st-awaiting_payment { background: #fff; }
.login-card { max-width: 620px; margin: 0 auto; }
.login-form { display: flex; gap: 10px; flex-wrap: wrap; }
.login-form input { flex: 1 1 240px; width: auto; }
@media (max-width: 420px) { .comic-item { grid-template-columns: 90px 1fr; } .comic-cover img, .comic-cover-placeholder { width: 90px; } }

/* ---------- Legal ---------- */
.legal h2 { font-size: 1.25rem; margin-top: 1.4em; }
.legal ul { padding-left: 1.2em; }
.contact-box { background: var(--cream); border: 3px solid var(--ink); border-radius: 12px; padding: 14px 18px; margin: 14px 0; }
.contact-box p { margin: 4px 0; }

/* ---------- Consent ---------- */
.consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.consent p { margin: 0; font-size: .92rem; flex: 1 1 260px; }
.consent-actions { display: flex; gap: 8px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
