/* sannyling.store — kawaii / oekaki bilingual storefront theme.
   Class vocabulary inherited from jadepos.store (.panel .badge .form .tabs
   .stats .cols .langsel …) so the ported backstage pages drop in.

   Customizable: the appearance page injects
     :root { --p: primary; --a: accent; --pagebg: page tint }
   and a body class bg-sakura|bg-dots|bg-waves|bg-clouds|bg-plain|bg-image.
   Everything below derives from those three colors. */

:root {
    --p: #d96695;            /* primary (sakura pink) */
    --a: #6fb3a4;            /* accent (jade mint) */
    --pagebg: #fdf3f6;

    --p-deep: color-mix(in srgb, var(--p) 78%, #3a1d2c);
    --p-soft: color-mix(in srgb, var(--p) 14%, #ffffff);
    --p-mist: color-mix(in srgb, var(--p) 7%, #ffffff);
    --a-deep: color-mix(in srgb, var(--a) 70%, #1d3a33);
    --a-soft: color-mix(in srgb, var(--a) 16%, #ffffff);

    --ink: #4a3540;
    --text: #52404a;
    --dim: #97828c;
    --leaf: #3f9e6b;
    --rose: #d25a68;
    --gold: #d9a441;
    --line: color-mix(in srgb, var(--p) 22%, #f0e4ea);
    --panel: #fffdfe;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 4px 14px color-mix(in srgb, var(--p) 12%, transparent);
    --sans: "Segoe UI", "Noto Sans SC", "Microsoft YaHei", -apple-system,
        BlinkMacSystemFont, Roboto, "Noto Sans JP", "Noto Sans KR", sans-serif;
    --mono: ui-monospace, "Cascadia Code", Consolas, "Courier New", monospace;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--pagebg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.6;
}

/* ── customizable page background patterns (oekaki doodle feel) ── */
body.bg-sakura {
    background-image:
        radial-gradient(color-mix(in srgb, var(--p) 16%, transparent) 5.5px, transparent 6px),
        radial-gradient(color-mix(in srgb, var(--p) 10%, transparent) 4px, transparent 4.5px),
        radial-gradient(color-mix(in srgb, var(--a) 9%, transparent) 3px, transparent 3.5px);
    background-size: 190px 170px, 230px 210px, 150px 190px;
    background-position: 10px 20px, 90px 100px, 40px 60px;
}
body.bg-dots {
    background-image: radial-gradient(color-mix(in srgb, var(--p) 14%, transparent) 4px, transparent 4.5px);
    background-size: 34px 34px;
}
body.bg-waves {
    background-image: repeating-radial-gradient(circle at 0 110%,
        transparent 0 38px,
        color-mix(in srgb, var(--a) 10%, transparent) 38px 40px);
}
body.bg-clouds {
    background-image:
        radial-gradient(closest-side, color-mix(in srgb, #ffffff 70%, transparent), transparent),
        radial-gradient(closest-side, color-mix(in srgb, var(--p) 8%, transparent), transparent);
    background-size: 420px 260px, 520px 320px;
    background-position: 0 0, 220px 140px;
}
body.bg-plain { background-image: none; }
body.bg-image { background-color: var(--pagebg); }

a { color: var(--p-deep); }
a:hover { color: var(--p); }

/* ── top strip + header ── */
.official-strip {
    background: var(--p-deep);
    color: #fff5f9;
    font-size: 0.8rem;
    text-align: center;
    padding: 0.32rem 1rem;
    letter-spacing: 0.05em;
}
.kawaii-strip { background: linear-gradient(90deg, var(--p-deep), color-mix(in srgb, var(--p-deep) 70%, var(--a-deep))); }

header {
    background: color-mix(in srgb, #ffffff 88%, transparent);
    backdrop-filter: blur(6px);
    border-bottom: 3px dashed var(--p);
    box-shadow: var(--shadow);
}
.header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.brand {
    color: var(--ink);
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}
.brand span.brandname { color: var(--p-deep); }
.brand span:not(.brandname):not(.storelogo) {
    font-weight: 400;
    color: var(--dim);
    font-size: 0.92rem;
}
.storelogo {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--p);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.storelogo.emoji { font-size: 26px; }

nav { display: flex; gap: 0.15rem; flex-wrap: wrap; }
nav a {
    color: var(--text);
    text-decoration: none;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    font-size: 0.93rem;
}
nav a:hover { background: var(--p-soft); color: var(--p-deep); }
nav a.active { background: var(--p); color: #fff; font-weight: 700; }

.shoptools { margin-left: auto; display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.shoptools > a { text-decoration: none; font-size: 0.93rem; }
.cartlink {
    position: relative;
    font-size: 1.25rem;
    text-decoration: none;
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
    border: 2px dashed var(--p);
    background: #fff;
}
.cartlink:hover { background: var(--p-soft); }
.cartcount {
    position: absolute;
    top: -8px; right: -8px;
    background: var(--rose);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.05rem 0.38rem;
}

/* ── language switcher ── */
.langsel { display: flex; gap: 0.15rem; flex-wrap: wrap; }
header:not(.shopheader) .langsel { margin-left: auto; }
.lang-opt {
    font-size: 0.78rem;
    color: var(--dim);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
}
.lang-opt:hover { background: var(--p-soft); color: var(--p-deep); }
.lang-opt.on { background: var(--p-deep); color: #fff; font-weight: 700; }

/* ── layout ── */
main { flex: 1; max-width: 1140px; margin: 0 auto; padding: 1.8rem 1.25rem; width: 100%; }
main h1, main h2, main h3 { color: var(--ink); line-height: 1.3; }
main h1 { font-size: 1.75rem; margin: 0 0 0.4rem; }
main h2 { font-size: 1.28rem; margin: 1.7rem 0 0.7rem; }
.muted, .dim { color: var(--dim); }
.empty { color: var(--dim); padding: 1.2rem 0; }

footer {
    border-top: 3px dashed var(--p);
    background: color-mix(in srgb, #ffffff 82%, transparent);
    color: var(--dim);
    font-size: 0.86rem;
    text-align: center;
    padding: 1.1rem;
    margin-top: 2rem;
}
footer a { color: var(--p-deep); }
.shopfooter .foot-pay { margin-bottom: 0.5rem; }
.shopfooter .foot-note { margin-top: 0.5rem; font-size: 0.8rem; }

/* ── panels & cards ── */
.panel {
    background: var(--panel);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}
.card {
    background: var(--panel);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-bottom: 0.8rem;
}
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 1rem; }
@media (max-width: 700px) { .cols { grid-template-columns: 1fr; } }

/* ── hero + stats ── */
.hero { text-align: center; padding: 2.2rem 0 1.4rem; }
.hero h1 { font-size: 2.1rem; }
.hero p { max-width: 44rem; margin: 0.6rem auto; color: var(--dim); font-size: 1.05rem; }
.kawaii-hero .hero-emoji { font-size: 2.6rem; letter-spacing: 0.4rem; margin-bottom: 0.4rem; }

.wavy {
    height: 14px;
    margin: 0.4rem 0 1rem;
    background: radial-gradient(circle at 10px -6px, transparent 12px, var(--p-soft) 13px);
    background-size: 28px 20px;
    opacity: 0.9;
}

a.primary, button.primary, .form button, form button {
    display: inline-block;
    font: inherit;
    background: var(--p);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.6rem 1.35rem;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 3px 0 var(--p-deep);
}
a.primary:hover, button.primary:hover, .form button:hover, form button:hover {
    background: var(--p-deep);
    color: #fff;
    transform: translateY(1px);
    box-shadow: 0 2px 0 var(--p-deep);
}
a.primary.big, button.big { font-size: 1.05rem; padding: 0.75rem 1.8rem; }
button.danger, .form button.danger { background: var(--rose); box-shadow: 0 3px 0 color-mix(in srgb, var(--rose) 70%, #000); }
button.danger:hover, .form button.danger:hover { background: color-mix(in srgb, var(--rose) 85%, #000); }
button.ghost, a.ghost {
    display: inline-block;
    font: inherit;
    font-weight: 700;
    background: #fff;
    color: var(--p-deep);
    border: 2px dashed var(--p);
    border-radius: 999px;
    padding: 0.5rem 1.15rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
}
button.ghost:hover, a.ghost:hover { background: var(--p-soft); color: var(--p-deep); transform: none; }

.stats { display: flex; gap: 2.2rem; justify-content: center; flex-wrap: wrap; margin: 1.4rem 0; }
.stat { text-align: center; }
.stat b { display: block; font-size: 1.9rem; color: var(--p); }
.stat span { color: var(--dim); font-size: 0.85rem; }
.kawaii-stats .stat {
    background: #fff;
    border: 2px dashed var(--line);
    border-radius: var(--radius);
    padding: 0.9rem 1.4rem;
}

/* ── forms ── */
.auth-box { max-width: 480px; margin: 1rem auto; }
.form { display: flex; flex-direction: column; gap: 0.9rem; margin: 1rem 0; }
.form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.88rem;
    color: var(--dim);
}
.form input, .form textarea, .form select, .searchbar input, .qtyform input {
    font: inherit;
    padding: 0.55rem 0.8rem;
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text);
}
.form input:focus, .form textarea:focus, .form select:focus, .searchbar input:focus {
    outline: 2px solid var(--a);
    border-color: var(--a);
}
.form .row { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.form .row label { flex: 1; min-width: 130px; }
.error {
    background: #fdeef0;
    border: 2px dashed var(--rose);
    color: #a13d49;
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.9rem;
    font-size: 0.92rem;
}
.notice {
    background: var(--a-soft);
    border: 2px dashed var(--a);
    color: var(--a-deep);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.9rem;
    font-size: 0.92rem;
}

/* ── badges ── */
.badge {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
}
.badge.valid, .badge.approved, .badge.active, .badge.paid, .badge.captured, .badge.verified
    { background: #eaf6ee; color: var(--leaf); border: 1.5px solid var(--leaf); }
.badge.invalid, .badge.denied, .badge.revoked, .badge.declined, .badge.refunded, .badge.disabled
    { background: #fdeef0; color: var(--rose); border: 1.5px solid var(--rose); }
.badge.pending, .badge.queued, .badge.spent
    { background: #fdf6e3; color: #a3801c; border: 1.5px solid #c9a227; }
.badge.brand { background: var(--p-soft); color: var(--p-deep); border: 1.5px solid var(--p); }
.badge.cart, .badge.draft { background: var(--a-soft); color: var(--a-deep); border: 1.5px solid var(--a); }

/* ── tables ── */
table { width: 100%; border-collapse: collapse; }
table th, table td {
    text-align: left;
    padding: 0.5rem 0.6rem;
    border-bottom: 1.5px dashed var(--line);
    font-size: 0.92rem;
}
table th {
    color: var(--dim);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }

/* ── tabs + pager ── */
.tabs { display: flex; gap: 0.3rem; flex-wrap: wrap; margin: 1rem 0; }
.tab {
    text-decoration: none;
    color: var(--dim);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font-size: 0.9rem;
    background: color-mix(in srgb, #ffffff 60%, transparent);
}
.tab:hover { background: var(--p-soft); color: var(--p-deep); }
.tab.active { background: #fff; border-color: var(--p); color: var(--p-deep); font-weight: 700; }

.pager { display: flex; align-items: center; gap: 1rem; justify-content: center; margin: 1.4rem 0; }
.page-btn {
    text-decoration: none;
    border: 2px dashed var(--line);
    background: #fff;
    color: var(--p-deep);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
}
.page-btn:hover { background: var(--p-soft); }
.page-info { color: var(--dim); font-size: 0.88rem; }

/* ── 2FA / secrets / keys ── */
.qrbox { text-align: center; margin: 1.2rem 0; }
.secret, code.key {
    font-family: var(--mono);
    background: var(--ink);
    color: #ffd9ea;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
    display: inline-block;
    word-break: break-all;
    font-size: 0.9rem;
}
.codes { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 0.5rem; margin: 1rem 0; }
.codes code {
    font-family: var(--mono);
    background: var(--p-mist);
    border: 2px dashed var(--p);
    color: var(--p-deep);
    padding: 0.4rem;
    text-align: center;
    border-radius: var(--radius-sm);
}

/* card-brand wordmarks */
.cardmark {
    display: inline-block;
    font-weight: 800;
    font-style: italic;
    font-size: 0.78rem;
    padding: 0.12rem 0.5rem;
    border-radius: 6px;
    letter-spacing: 0.03em;
    margin-right: 0.3rem;
}
.cardmark.visa { background: #1a1f71; color: #fff; }
.cardmark.mastercard { background: #eb001b; color: #fff; }
.cardmark.discover { background: #ff6000; color: #fff; }
.cardmark.amex { background: #006fcf; color: #fff; }
.cardmark.paypal { background: #003087; color: #fff; }
.cardmark.cashapp { background: #00d632; color: #fff; }

/* ── storefront: product cards ── */
.pgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}
.pcard {
    background: #fff;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 0.9rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    box-shadow: var(--shadow);
    transition: transform 0.12s ease, border-color 0.12s ease;
}
.pcard:hover { transform: translateY(-3px) rotate(-0.6deg); border-color: var(--p); }
.pcard b { color: var(--ink); font-size: 0.98rem; }
.pcard .price { color: var(--p-deep); font-weight: 800; }
.pcard-img, .pdetail-img {
    border-radius: var(--radius-sm);
    background: var(--p-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pcard-img { height: 150px; }
.pcard-img.emoji { font-size: 4rem; }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; }
.soldout { align-self: center; }

.pdetail { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 0.6rem; }
@media (max-width: 760px) { .pdetail { grid-template-columns: 1fr; } }
.pdetail-img { min-height: 280px; border: 2px solid var(--line); }
.pdetail-img.emoji { font-size: 7rem; }
.pdetail-img img { width: 100%; height: 100%; object-fit: cover; }
.bigprice { color: var(--p-deep); font-weight: 800; font-size: 1.6rem; margin: 0.3rem 0; }
.crumbs { color: var(--dim); font-size: 0.88rem; }
.crumb { text-decoration: none; }

.searchbar { display: flex; gap: 0.5rem; margin: 0.8rem 0; max-width: 480px; }
.searchbar input { flex: 1; border-radius: 999px; }

/* category tiles */
.cattiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.9rem;
}
.cattile {
    background: #fff;
    border: 2px dashed var(--a);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.cattile:hover { background: var(--a-soft); transform: rotate(0.8deg); }
.cattile .catemoji { font-size: 2rem; }
.cattile b { color: var(--ink); }

/* landing blocks */
.homeblock { margin: 1.6rem 0; }
.promo-banner {
    background: linear-gradient(90deg, var(--p-soft), var(--a-soft));
    border: 2px dashed var(--p);
    border-radius: var(--radius);
    padding: 0.8rem 1.2rem;
    margin: 1rem 0;
    text-align: center;
}
.aboutpanel { text-align: center; }
.about-emoji { font-size: 2.6rem; }
.giftpromo {
    display: flex;
    gap: 1.4rem;
    align-items: center;
    background: linear-gradient(120deg, #fff, var(--p-mist));
    border: 2px solid var(--p);
    border-radius: var(--radius);
    padding: 1.4rem 1.6rem;
    box-shadow: var(--shadow);
}
.giftpromo .gift-emoji { font-size: 3.4rem; }
.newspanel { max-width: 640px; margin: 0 auto; text-align: center; }
.subform .row { justify-content: center; }

/* checkout */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.4rem; align-items: start; }
@media (max-width: 820px) { .checkout-grid { grid-template-columns: 1fr; } }
.giftline { color: var(--a-deep); }
.giftform { margin: 0.8rem 0 0; }
.qtyform { display: flex; gap: 0.35rem; align-items: center; }
.qtyform input { width: 70px; padding: 0.35rem 0.5rem; }

/* gift cards */
.giftamounts { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.giftamount {
    flex-direction: row !important;
    align-items: center;
    gap: 0.35rem !important;
    background: #fff;
    border: 2px dashed var(--line);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--p-deep) !important;
}
.giftamount:hover { border-color: var(--p); }
.giftcardface { text-align: center; }
.giftcardface .gift-emoji { font-size: 2.6rem; }

/* appearance page */
.themeopts { display: flex; flex-direction: column; gap: 0.4rem; }
.themeopt {
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem !important;
    cursor: pointer;
    color: var(--text) !important;
    font-size: 0.95rem !important;
}
.swatch {
    display: inline-block;
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.15);
}

/* ── POS ── */
.pos-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.4rem; }
@media (max-width: 820px) { .pos-grid { grid-template-columns: 1fr; } }
.pos-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.7rem; }
.pos-item {
    background: #fff;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 0.8rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    display: block;
    box-shadow: none;
}
.pos-item:hover { border-color: var(--p); background: var(--p-mist); transform: none; }
.pos-item b { display: block; color: var(--ink); }
.pos-item .price { color: var(--p-deep); font-weight: 700; }
.pos-emoji { font-size: 1.6rem; display: block; }
.cart-line { display: flex; justify-content: space-between; gap: 0.6rem; padding: 0.35rem 0; border-bottom: 1.5px dashed var(--line); font-size: 0.93rem; }
.cart-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.15rem; padding-top: 0.6rem; color: var(--ink); }

/* ── receipt ── */
.receipt {
    max-width: 420px;
    margin: 1.5rem auto;
    background: #fff;
    border: 2px dashed var(--p);
    border-radius: var(--radius);
    padding: 1.5rem;
    font-family: var(--mono);
    font-size: 0.88rem;
}
.receipt h1 { font-size: 1.1rem; text-align: center; font-family: var(--mono); }
.receipt .rline { display: flex; justify-content: space-between; }
.receipt hr { border: none; border-top: 1.5px dashed var(--line); margin: 0.7rem 0; }
@media print {
    body { background: #fff !important; background-image: none !important; }
    .no-print { display: none !important; }
    .receipt { border: none; margin: 0 auto; }
}

/* ── shipping label ── */
.shiplabel {
    max-width: 420px;
    margin: 1.5rem auto;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 6px;
    padding: 1.1rem 1.2rem;
    color: #000;
}
.label-head {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 0.5rem;
}
.label-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; color: #444; }
.label-from { font-size: 0.85rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
.label-to { padding: 0.8rem 0; }
.label-addr { font-size: 1.25rem; font-weight: 700; line-height: 1.45; margin-top: 0.3rem; }
.label-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    border-top: 2px solid var(--ink);
    padding-top: 0.7rem;
}
.label-foot img { margin: 0 !important; padding: 0 !important; }
.label-meta { font-family: var(--mono); font-size: 0.8rem; text-align: right; color: #222; }
@media print { .shiplabel { border-width: 3px; margin: 0 auto; } }

/* ── API docs ── */
.method {
    display: inline-block;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    margin-right: 0.5rem;
    letter-spacing: 0.04em;
    vertical-align: middle;
}
.method.get { background: #eaf6ee; color: var(--leaf); border: 1.5px solid var(--leaf); }
.method.post { background: #e8f0fe; color: #274a9f; border: 1.5px solid #274a9f; }
.api-path { font-family: var(--mono); font-weight: 700; font-size: 1.02rem; }
pre.codeblock {
    background: var(--ink);
    color: #ffe3ef;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    font-size: 0.85rem;
    font-family: var(--mono);
    line-height: 1.5;
}
.endpoint { scroll-margin-top: 1rem; }

/* ── misc ── */
.actions { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; margin: 0.8rem 0; }
.kv { display: grid; grid-template-columns: auto 1fr; gap: 0.3rem 1.2rem; font-size: 0.93rem; }
.kv dt { color: var(--dim); }
.kv dd { margin: 0; }
.shoptitle { margin-top: 0.4rem; }
