/* profile.css — public profile page + theme skins (from approved mockup) */

:root {
    /* skin: classic (default) */
    --p-bg: #FFF9F4;
    --p-card: rgba(255, 255, 255, 0.85);
    --p-ink: #2E2520;
    --p-sub: #8C7B70;
    --p-accent: #ff6b35;
    --p-accent-ink: #FFFFFF;
    --p-cover: linear-gradient(135deg, #ff8c61, #ff6b35);
    --p-hair: rgba(255, 107, 53, 0.15);
    --p-shadow: 0 10px 30px rgba(120, 63, 10, 0.08);
}
body[data-skin="night"] {
    --p-bg: #0d0b11;
    --p-card: rgba(22, 19, 29, 0.75);
    --p-ink: #f3eeff;
    --p-sub: #988dae;
    --p-accent: #C9A961;
    --p-accent-ink: #0d0b11;
    --p-cover: linear-gradient(135deg, #251c30, #403056);
    --p-hair: rgba(201, 169, 97, 0.22);
    --p-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}
body[data-skin="sweet"] {
    --p-bg: #fff0f3;
    --p-card: rgba(255, 255, 255, 0.88);
    --p-ink: #4a2e35;
    --p-sub: #a6838c;
    --p-accent: #E75480;
    --p-accent-ink: #FFFFFF;
    --p-cover: linear-gradient(135deg, #f8a5c2, #fbc7d4);
    --p-hair: rgba(231, 84, 128, 0.18);
    --p-shadow: 0 10px 30px rgba(231, 84, 128, 0.1);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    background: var(--p-bg);
    color: var(--p-ink);
    font-family: 'Sarabun', 'Leelawadee UI', 'Noto Sans Thai', sans-serif;
    line-height: 1.55;
    font-size: 15.5px;
    background-attachment: fixed;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Background mesh gradients based on skin */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}
body:not([data-skin])::before, body[data-skin="classic"]::before {
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 107, 53, 0.04) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(255, 237, 213, 0.15) 0px, transparent 50%);
}
body[data-skin="night"]::before {
    background-image: 
        radial-gradient(at 0% 0%, rgba(201, 169, 97, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(74, 59, 99, 0.2) 0px, transparent 50%);
}
body[data-skin="sweet"]::before {
    background-image: 
        radial-gradient(at 0% 0%, rgba(248, 165, 194, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(251, 199, 212, 0.15) 0px, transparent 50%);
}

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

.wrap {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 40px;
}

/* ---- header / identity ---- */
.cover { 
    height: 80px; 
    background: var(--p-cover);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.head { text-align: center; padding: 0 20px 6px; margin-top: -55px; }
.avatar {
    width: 100px; height: 100px; border-radius: 50%;
    margin: 0 auto 12px;
    background: var(--p-accent); color: var(--p-accent-ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 38px; font-weight: 800;
    border: 5px solid var(--p-bg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.avatar:hover {
    transform: scale(1.05) rotate(5deg);
}
.avatar.has-logo { background: #fff; overflow: hidden; }
.avatar.has-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.name { font-size: 23px; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 6px; }
.verify {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--p-accent); color: var(--p-accent-ink);
    font-size: 11px; font-weight: 900;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.p-founder {
    display: inline-block; margin-top: 8px;
    font-size: 12px; font-weight: 800; letter-spacing: 0.3px;
    color: #7A4E00; background: linear-gradient(135deg, #FFE9A8, #F6C453);
    border: 1px solid rgba(180, 130, 0, 0.35);
    border-radius: 999px; padding: 3px 12px;
    box-shadow: 0 2px 8px rgba(180, 130, 0, 0.18);
}
.bio { color: var(--p-sub); font-size: 14.5px; margin-top: 6px; font-weight: 500; }

/* ---- shop status + today's market ---- */
.p-status {
    display: inline-flex; gap: 6px; align-items: center;
    margin-top: 12px;
    background: var(--p-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--p-hair);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 12.5px; font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.p-status i { width: 8px; height: 8px; border-radius: 50%; }
.p-status.open i { background: #0E9F6E; box-shadow: 0 0 0 3px rgba(14, 159, 110, 0.18); }
.p-status.open b { color: #0E9F6E; }
.p-status.closed i { background: #DC2626; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18); }
.p-status.closed b { color: #DC2626; }

.p-today {
    margin: 16px 20px 0;
    padding: 12px 16px;
    border-radius: 18px;
    background: var(--p-card);
    backdrop-filter: blur(12px);
    border: 1px dashed var(--p-hair);
    font-size: 14px; font-weight: 600;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}
.p-today b {
    display: block;
    font-size: 11.5px; color: var(--p-sub); font-weight: 700;
    margin-bottom: 2px;
}
.p-today a { color: var(--p-accent); font-weight: 800; text-decoration: none; }
.p-today a:hover { text-decoration: underline; }
.p-video {
    margin: 16px 20px 0;
    border-radius: 18px; overflow: hidden;
    aspect-ratio: 16 / 9; background: #000;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.p-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.p-video.tt { aspect-ratio: 9 / 16; max-width: 300px; margin-left: auto; margin-right: auto; }

/* announcement bar */
.p-announce {
    display: block; text-align: center; text-decoration: none;
    background: var(--p-accent); color: var(--p-accent-ink);
    font-weight: 800; font-size: 14px;
    padding: 10px 16px; line-height: 1.4;
}
a.p-announce:hover { filter: brightness(1.05); }

/* order / contact form */
.p-order {
    margin: 18px 20px 0;
    background: var(--p-card); backdrop-filter: blur(12px);
    border: 1px solid var(--p-hair); border-radius: 18px;
    padding: 16px; text-align: left;
}
.p-order > b { display: block; font-size: 15px; margin-bottom: 10px; }
.p-order input, .p-order textarea {
    width: 100%; box-sizing: border-box; margin-bottom: 8px;
    padding: 11px 13px; font-family: inherit; font-size: 15px;
    border: 1.5px solid var(--p-hair); border-radius: 12px;
    background: rgba(255,255,255,0.6); color: var(--p-ink);
}
.p-order input:focus, .p-order textarea:focus { outline: none; border-color: var(--p-accent); }
.p-order .lead-hp { position: absolute; left: -9999px; width: 1px; height: 1px; }
.p-order button {
    width: 100%; border: none; border-radius: 12px; padding: 12px;
    background: var(--p-accent); color: var(--p-accent-ink);
    font-family: inherit; font-weight: 800; font-size: 15px; cursor: pointer;
}
.p-order button:disabled { opacity: 0.6; }
.lead-done { text-align: center; font-weight: 700; color: var(--p-accent); margin: 6px 0 0; }
.lead-slip-in { display: flex; flex-direction: column; gap: 5px; font-size: 13px; color: var(--p-sub); }
.lead-slip-in small { color: var(--p-sub); opacity: 0.8; }
.lead-slip-in input[type=file] { font-size: 12.5px; color: var(--p-sub); }

/* ---- shop menu ---- */
.p-menu { margin: 18px 20px 0; }   /* side inset to match .p-order — cards must not hug the screen edge */
.p-menu-head { display: block; font-size: 15px; margin-bottom: 10px; }
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* free / lapsed shops: menu as a plain text board (name … price per line) */
.pm-text-list { list-style: none; margin: 10px 0 0; padding: 0; }
.pm-text-list li {
    display: flex; align-items: baseline; gap: 12px;
    padding: 10px 2px; border-bottom: 1px dashed var(--p-hair); font-size: 15px;
}
.pm-text-list li:last-child { border-bottom: 0; }
.pmt-name { flex: 1; min-width: 0; }
.pmt-price { font-weight: 800; color: var(--p-accent); white-space: nowrap; font-variant-numeric: tabular-nums; }
.pm-item {
    display: flex; flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--p-card); border: 1px solid var(--p-hair); border-radius: 16px;
    padding: 10px; cursor: pointer; font-family: inherit; color: var(--p-ink);
    text-align: left; transition: transform 0.12s, border-color 0.12s;
}
.pm-item:hover { transform: translateY(-2px); border-color: var(--p-accent); }
.pm-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; }
.pm-img.ph { display: flex; align-items: center; justify-content: center; font-size: 34px; background: var(--p-hair); }
.pm-name { font-weight: 700; font-size: 13.5px; line-height: 1.3; }
.pm-price { font-weight: 800; color: var(--p-accent); font-size: 14px; }
/* out of stock: shown but not orderable */
.pm-item.soldout { position: relative; cursor: default; opacity: 0.62; }
.pm-item.soldout:hover { transform: none; border-color: var(--p-hair); }
.pm-item.soldout .pm-img { filter: grayscale(1); }
.pm-soldout {
    position: absolute; top: 8px; left: 8px; z-index: 1;
    background: rgba(31, 41, 55, 0.82); color: #fff; font-size: 11px; font-weight: 800;
    padding: 3px 9px; border-radius: 999px;
}
.pm-text-list li.soldout { opacity: 0.6; }
.pm-text-list li.soldout .pmt-name small { color: #DC2626; font-weight: 700; }

/* bottom sheet + backdrop */
.pm-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 60;
}
.pm-sheet {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 61;
    max-width: 480px; margin: 0 auto; max-height: 78vh; overflow-y: auto;
    background: var(--p-bg); color: var(--p-ink);
    border-radius: 20px 20px 0 0; padding: 18px 18px 22px;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
}
.pm-backdrop[hidden], .pm-sheet[hidden], .pm-cartbar[hidden] { display: none; }
.pms-photo { margin-bottom: 12px; }
.pms-photo img {
    display: block; width: 100%; max-height: 240px; object-fit: cover;
    border-radius: 14px; background: var(--p-hair);
}
.pms-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.pms-head b { font-size: 16px; }
.pms-head span { font-weight: 800; color: var(--p-accent); }
.pms-group { margin-top: 10px; }
.pms-gname { font-size: 13px; font-weight: 700; color: var(--p-sub); margin-bottom: 6px; }
.pms-choices { display: flex; flex-wrap: wrap; gap: 8px; }
.pms-choice {
    display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
    border: 1px solid var(--p-hair); border-radius: 10px; padding: 7px 12px; font-size: 13.5px;
}
.pms-choice:has(input:checked) { border-color: var(--p-accent); background: var(--p-card); font-weight: 700; }
.pms-choice input { accent-color: var(--p-accent); }
.pms-qty { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 16px 0 4px; }
.pms-qty button {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--p-hair);
    background: var(--p-card); color: var(--p-ink); font-size: 20px; font-weight: 800; cursor: pointer;
}
.pms-qty b { font-size: 18px; min-width: 28px; text-align: center; }
.pms-add {
    display: block; width: 100%; margin-top: 12px; border: none; border-radius: 14px;
    background: var(--p-accent); color: var(--p-accent-ink);
    font-family: inherit; font-weight: 800; font-size: 15px; padding: 13px; cursor: pointer;
}
.pms-line { display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid var(--p-hair); padding: 11px 0; }
.pms-thumb {
    flex: none; width: 52px; height: 52px; border-radius: 11px; object-fit: cover;
    background: var(--p-hair); display: flex; align-items: center; justify-content: center;
    font-size: 22px; overflow: hidden;
}
.pms-thumb.ph { color: var(--p-sub); }
.pms-line-mid { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.pms-line-top { display: flex; align-items: flex-start; gap: 8px; }
.pms-line-name { flex: 1; min-width: 0; font-size: 14px; font-weight: 600; line-height: 1.35; }
.pms-line-price { color: var(--p-sub); font-size: 12.5px; }
.pms-line-edit {
    flex: none; border: 1px solid var(--p-hair); background: transparent; color: var(--p-accent);
    font-family: inherit; font-size: 11.5px; font-weight: 700; cursor: pointer;
    padding: 3px 8px; border-radius: 8px; white-space: nowrap;
}
.pms-line-edit:hover { border-color: var(--p-accent); }
.pms-line-note {
    width: 100%; margin-top: 2px; border: 1px solid var(--p-hair); border-radius: 9px;
    padding: 6px 9px; font-family: inherit; font-size: 12.5px; background: transparent; color: inherit;
}
.pms-line-note:focus { outline: none; border-color: var(--p-accent); }
.pms-line-note::placeholder { color: var(--p-sub); opacity: 0.75; }
.pms-line-right { flex: none; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pms-lqty { display: flex; align-items: center; gap: 4px; }
.pms-lqty b { min-width: 20px; text-align: center; font-size: 14px; }
.pms-lqty-btn {
    width: 28px; height: 28px; border: 1px solid var(--p-hair); background: transparent;
    border-radius: 8px; color: var(--p-accent); font-size: 17px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-family: inherit;
}
.pms-lqty-btn:hover { border-color: var(--p-accent); }
.pms-line-del {
    border: none; background: transparent; color: var(--p-sub); font-size: 15px; cursor: pointer; padding: 2px 6px;
}
.pms-total { text-align: right; font-weight: 800; font-size: 16px; margin-top: 10px; }
.pms-dv { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pms-dv-detail { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.pms-dv-note { font-size: 13px; color: var(--p-sub); }
.pms-loc {
    align-self: flex-start; border: 1px solid var(--p-accent); background: transparent;
    color: var(--p-accent); border-radius: 10px; padding: 8px 14px;
    font-family: inherit; font-weight: 700; font-size: 13.5px; cursor: pointer;
}
.pms-addr {
    width: 100%; border: 1px solid var(--p-hair); border-radius: 10px; padding: 9px 12px;
    background: var(--p-card); color: var(--p-ink); font-family: inherit; font-size: 14px; resize: vertical;
}
.pms-addr:focus { outline: none; border-color: var(--p-accent); }

/* floating cart bar */
.pm-cartbar {
    position: fixed; left: 0; right: 0; bottom: 14px; z-index: 55;
    display: flex; justify-content: center; padding: 0 16px;
}
.pm-cartbar button {
    width: 100%; max-width: 440px; border: none; border-radius: 999px;
    background: var(--p-accent); color: var(--p-accent-ink);
    font-family: inherit; font-weight: 800; font-size: 15px; padding: 14px 18px; cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* post-order payment QR */
.pm-paybox {
    margin-top: 12px; text-align: center; border: 2px dashed var(--p-accent);
    border-radius: 16px; padding: 14px;
}
.pm-paybox b { display: block; margin-bottom: 8px; }
.pm-payqr { display: flex; justify-content: center; }
.pm-payqr img, .pm-payqr canvas { background: #fff; padding: 8px; border-radius: 10px; }
.pm-paybox small { display: block; margin-top: 8px; color: var(--p-sub); font-size: 12px; }
.pm-paid { border-style: solid; border-color: var(--p-hair); }
.pm-paid b { color: var(--p-accent); }
/* pay-first QR shown INSIDE the order form, before sending */
.pm-prepay {
    margin: 4px 0 2px; text-align: center; border: 2px dashed var(--p-accent);
    border-radius: 16px; padding: 14px; background: rgba(0, 0, 0, 0.015);
}
.pm-prepay b { display: block; margin-bottom: 8px; }
.pm-prepay small { display: block; margin-top: 8px; color: var(--p-sub); font-size: 12px; line-height: 1.5; }
.p-order button.lead-again {
    margin-top: 10px; background: transparent; color: var(--p-accent);
    border: 2px solid var(--p-accent);
}
.p-order button.lead-again:hover { background: var(--p-accent); color: var(--p-accent-ink); }

/* read-only compiled order above the form (edit via cart, not text) */
.lead-summary {
    border: 1px solid var(--p-hair); background: var(--p-card);
    border-radius: 12px; padding: 10px 12px; margin-bottom: 10px;
}
.lead-summary-txt { font-size: 13.5px; white-space: pre-wrap; line-height: 1.55; }
.p-order button.lead-summary-edit {
    width: auto; margin-top: 8px; padding: 6px 12px; font-size: 12.5px;
    background: transparent; color: var(--p-accent); border: 1px solid var(--p-accent);
}

/* buyer-side order history (stored on the buyer's own device) */
.lead-hist-wrap { margin-top: 10px; }
.p-order button.lead-hist-btn {
    width: 100%; background: transparent; color: var(--p-sub);
    border: 1px dashed var(--p-hair); border-radius: 12px;
    font-size: 13px; font-weight: 700; padding: 8px 10px; cursor: pointer;
}
.p-order button.lead-hist-btn:hover { color: var(--p-accent); border-color: var(--p-accent); }
.lead-hist { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.lead-hist[hidden] { display: none; }   /* [hidden] loses to display:flex without this */
.lead-hist-row {
    border: 1px solid var(--p-hair); border-radius: 12px; padding: 8px 12px;
    text-align: left;
}
.lh-when { font-size: 12px; color: var(--p-sub); }
.lh-msg { font-size: 13.5px; margin-top: 2px; white-space: pre-wrap; }

/* ---- links with slide-in animation ---- */
.links { padding: 20px 20px 6px; display: flex; flex-direction: column; gap: 12px; }
.btn {
    display: flex; align-items: center; gap: 14px;
    background: var(--p-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--p-hair);
    border-radius: 20px;
    padding: 14px 18px;
    font-weight: 700; font-size: 15.5px;
    box-shadow: var(--p-shadow), inset 0 1px 1px rgba(255,255,255,0.4);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, border-color 0.2s ease;
    animation: slideUp 0.5s ease-out both;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--p-shadow), 0 12px 24px rgba(0, 0, 0, 0.05);
    border-color: var(--p-accent);
}
.btn:active { transform: translateY(0) scale(0.98); }

.btn .ic {
    width: 38px; height: 38px; border-radius: 12px; flex: 0 0 38px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.btn small { display: block; font-weight: 500; color: var(--p-sub); font-size: 12px; line-height: 1.35; margin-top: 1px; }

/* Preset Brand Buttons with modern looks */
.btn.line { background: #06C755; border-color: #06C755; color: #fff; box-shadow: 0 6px 18px rgba(6, 199, 85, 0.15); }
.btn.line:hover { background: #05b34c; border-color: #05b34c; }
.btn.line small { color: rgba(255, 255, 255, 0.85); }
.btn.line .ic { background: rgba(255, 255, 255, 0.22); box-shadow: none; }

/* Slide up entrance effect */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stagger item entrance animations */
.links a:nth-child(1) { animation-delay: 0.05s; }
.links a:nth-child(2) { animation-delay: 0.10s; }
.links a:nth-child(3) { animation-delay: 0.15s; }
.links a:nth-child(4) { animation-delay: 0.20s; }
.links a:nth-child(5) { animation-delay: 0.25s; }
.links a:nth-child(6) { animation-delay: 0.30s; }
.links a:nth-child(7) { animation-delay: 0.35s; }
.links a:nth-child(8) { animation-delay: 0.40s; }

/* ---- promptpay block ---- */
.pay {
    margin: 12px 20px 0;
    padding: 18px;
    border-radius: 20px;
    background: var(--p-card);
    backdrop-filter: blur(12px);
    border: 1.5px dashed var(--p-accent);
    text-align: center;
    box-shadow: var(--p-shadow);
    animation: slideUp 0.5s ease-out 0.2s both;
}
.pay b { font-size: 14px; font-weight: 800; display: block; color: var(--p-accent); }
.pay .num {
    font-size: 24px; font-weight: 900; letter-spacing: 0.06em;
    font-variant-numeric: tabular-nums; margin: 6px 0;
    color: var(--p-ink);
}
.pay .hint { color: var(--p-sub); font-size: 12px; font-weight: 500; }
.pay button {
    margin-top: 12px;
    background: var(--p-accent); color: var(--p-accent-ink);
    border: none; border-radius: 999px;
    padding: 10px 26px; font-weight: 800; font-size: 14px;
    font-family: inherit; cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
    transition: all 0.2s ease;
}
.pay button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}
.pay button:active {
    transform: translateY(0) scale(0.98);
}

/* ---- footer ---- */
.foot {
    margin-top: auto;
    padding: 30px 20px 20px;
    text-align: center;
    color: var(--p-sub); font-size: 13px;
}
.foot .actions { display: flex; justify-content: center; gap: 20px; margin-bottom: 14px; }
.foot .actions a { font-weight: 700; color: var(--p-ink); transition: color 0.2s; }
.foot .actions a:hover { color: var(--p-accent); }
.foot .brand { margin-bottom: 8px; font-weight: 500; }
.foot .brand a { font-weight: 900; color: var(--p-accent); text-decoration: underline; }
.stats { margin-top: 4px; font-weight: 500; }

/* ---- 404 ---- */
.nf { text-align: center; padding: 100px 24px; }
.nf .big { font-size: 64px; }
.nf h1 { font-size: 24px; margin: 16px 0 8px; font-weight: 800; }
.nf p { color: var(--p-sub); }
.nf a.cta {
    display: inline-block; margin-top: 24px;
    background: var(--p-accent); color: var(--p-accent-ink);
    border-radius: 999px; padding: 12px 30px; font-weight: 800;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

/* ---- report form ---- */
.report-card {
    background: var(--p-card); border: 1px solid var(--p-hair);
    border-radius: 20px; padding: 24px; margin: 30px 20px;
    box-shadow: var(--p-shadow);
}
.report-card h1 { font-size: 20px; margin: 0 0 6px; font-weight: 800; }
.report-card p { color: var(--p-sub); font-size: 13.5px; margin: 0 0 18px; }
.report-card label { display: block; font-weight: 700; font-size: 13.5px; margin: 14px 0 6px; }
.report-card select, .report-card textarea {
    width: 100%; border: 1px solid var(--p-hair); border-radius: 12px;
    padding: 11px 13px; font-family: inherit; font-size: 14.5px;
    background: var(--p-bg); color: var(--p-ink);
}
.report-card textarea { min-height: 100px; resize: vertical; }
.report-card button {
    margin-top: 18px; width: 100%;
    background: var(--p-accent); color: var(--p-accent-ink);
    border: none; border-radius: 16px; padding: 13px;
    font-weight: 800; font-size: 15.5px; font-family: inherit; cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}
.notice { text-align: center; padding: 60px 24px; }
