:root {
    --bg-primary: #08090a;
    --bg-secondary: #101214;
    --bg-card: #151719;
    --bg-card-hover: #1b1e21;
    --text-primary: #ffffff;
    --text-secondary: #a9adb3;
    --text-muted: #747980;
    --accent: #ef233c;
    --accent-hover: #ff3048;
    --border: #26292d;
    --border-strong: #34383d;
    --success: #27ae60;
    --warning: #f39c12;
    --header-h: 80px;
    --maxw: 1440px;
    --radius: 10px;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    --font: "Manrope", system-ui, sans-serif;
    --ease: 180ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}

.site-main {
    min-height: 60vh;
    padding-top: var(--header-h);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    height: var(--header-h);
    background: rgba(8, 9, 10, 0.92);
    border-bottom: 1px solid #1d1f22;
    backdrop-filter: blur(16px);
}

.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo img {
    width: 165px;
    height: auto;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-desktop a {
    display: inline-flex;
    align-items: center;
    height: var(--header-h);
    padding: 0 12px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: color var(--ease), border-color var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
    color: var(--text-primary);
}

.nav-desktop a.is-active {
    border-bottom-color: var(--accent);
}

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    width: min(320px, 28vw);
    height: 42px;
    padding: 0 14px;
    background: #0c0e10;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
}

.header-search i {
    color: var(--text-muted);
    margin-right: 10px;
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-primary);
    font-size: 14px;
}

.header-search:focus-within {
    border-color: var(--accent);
}

.search-suggest {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    z-index: 20;
}

.search-suggest a,
.search-suggest .empty {
    display: block;
    padding: 12px 14px;
    color: var(--text-secondary);
    font-size: 14px;
}

.search-suggest a:hover {
    background: var(--bg-card-hover);
    color: #fff;
}

.icon-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 50%;
    background: transparent;
    color: var(--text-primary);
    transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.icon-btn:hover,
.icon-btn:focus-visible {
    background: var(--bg-card);
    border-color: var(--border);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: none;
    align-items: center;
    justify-content: center;
}

.cart-count.is-visible {
    display: inline-flex;
}

.search-toggle,
.menu-toggle {
    display: none;
}

.site-overlay,
.mobile-drawer,
.mobile-search {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover:not(:disabled) {
    background: var(--accent-hover);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: var(--border-strong);
}

.btn-secondary:hover {
    border-color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.section {
    padding: 84px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section h2,
.page-hero h1 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.link-more {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.link-more:hover {
    color: #fff;
}

.hero {
    position: relative;
    min-height: 540px;
    display: grid;
    grid-template-columns: 45% 55%;
    background:
        radial-gradient(circle at 80% 20%, rgba(239, 35, 60, 0.16), transparent 28%),
        linear-gradient(90deg, #08090a 0%, #08090a 42%, rgba(8, 9, 10, 0.2) 100%);
    overflow: hidden;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 0;
}

.hero h1 {
    margin: 0;
    font-size: clamp(36px, 4.4vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.hero h1 em {
    color: var(--accent);
    font-style: normal;
}

.hero p {
    max-width: 460px;
    margin: 18px 0 28px;
    color: var(--text-secondary);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-top: 36px;
}

.hero-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-perks i {
    color: var(--accent);
}

.hero-visual {
    position: relative;
    min-height: 540px;
    background:
        linear-gradient(90deg, #08090a 0%, rgba(8, 9, 10, 0.35) 28%, rgba(8, 9, 10, 0.18) 100%),
        linear-gradient(180deg, rgba(8, 9, 10, 0.15), rgba(8, 9, 10, 0.55)),
        var(--hero-image, linear-gradient(135deg, #14161a, #2a1014 55%, #08090a));
    background-size: cover;
    background-position: center;
}

.hero-visual::after {
    content: "収集";
    position: absolute;
    right: 48px;
    bottom: 36px;
    font-size: 88px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.06);
}

.category-grid,
.product-grid,
.community-grid,
.trade-points,
.related-grid {
    display: grid;
    gap: 18px;
}

.category-grid {
    grid-template-columns: repeat(5, 1fr);
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg-card);
    transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: #3a3e44;
    background: var(--bg-card-hover);
}

.category-media {
    height: 180px;
    overflow: hidden;
}

.category-media img,
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.category-card:hover img,
.product-card:hover .product-media img,
.product-gallery:hover img {
    transform: scale(1.04);
}

.category-body {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
}

.category-body h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.category-body p {
    margin: 0;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.arrow {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: #fff;
}

.product-grid {
    grid-template-columns: repeat(6, 1fr);
}

.related-grid,
.catalog-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-compact {
    padding-top: 0;
}

.stock-badge.inline {
    position: static;
    display: inline-flex;
    margin: 12px 0;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.product-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    border-color: #3a3e44;
}

.product-media {
    position: relative;
    display: block;
    aspect-ratio: 1;
    background: #101214;
}

.stock-badge,
.flag-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.flag-badge {
    left: auto;
    right: 12px;
    background: #fff;
    color: #08090a;
}

.badge-stock-in {
    background: rgba(39, 174, 96, 0.16);
    color: var(--success);
}

.badge-stock-low {
    background: rgba(239, 35, 60, 0.16);
    color: var(--accent);
}

.badge-stock-out {
    background: rgba(116, 121, 128, 0.18);
    color: var(--text-muted);
}

.product-body {
    padding: 16px;
}

.product-category {
    margin: 0 0 6px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-body h3 {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.35;
    min-height: 42px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.price {
    font-size: 16px;
    font-weight: 800;
}

.fav-btn {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--text-muted);
}

.fav-btn.is-active,
.fav-btn:hover {
    color: var(--accent);
}

.product-body .btn {
    width: 100%;
    min-height: 40px;
    font-size: 12px;
}

.trade-banner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        radial-gradient(circle at left top, rgba(239, 35, 60, 0.16), transparent 36%),
        linear-gradient(180deg, #121416, #0d0f11);
}

.trade-banner h2 {
    max-width: 520px;
}

.trade-banner p {
    max-width: 520px;
    color: var(--text-secondary);
}

.trade-points {
    grid-template-columns: 1fr;
}

.trade-points article {
    padding: 18px 18px 18px 0;
    border-top: 1px solid var(--border);
}

.trade-points h3 {
    margin: 0 0 6px;
    font-size: 14px;
    letter-spacing: 0.14em;
}

.trade-points p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.trade-points i {
    color: var(--accent);
    margin-right: 8px;
}

.community-grid {
    grid-template-columns: repeat(3, 1fr);
}

.quote-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.quote-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #201014;
    color: var(--accent);
    font-weight: 800;
}

.stars {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 2px;
}

.quote-card p {
    margin: 0;
    color: var(--text-secondary);
}

.page-hero {
    padding: 42px 0 10px;
}

.page-hero p {
    max-width: 640px;
    color: var(--text-secondary);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 13px;
}

.breadcrumb a:hover {
    color: #fff;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    padding-bottom: 80px;
}

.filters {
    padding: 22px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 14px;
    height: max-content;
    position: sticky;
    top: calc(var(--header-h) + 18px);
}

.filters h3,
.filters label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.filters .field {
    margin: 16px 0;
}

.filters .btn {
    width: 100%;
}

.filters select,
.filters input,
.form-grid input,
.form-grid textarea,
.form-grid select,
.qty-input,
.admin-table input,
.auth-card input {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    background: #0c0e10;
    color: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
}

.form-grid textarea {
    min-height: 140px;
    padding: 12px;
    resize: vertical;
}

.filters select:focus,
.filters input:focus,
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus,
.header-search input:focus,
.qty-input:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
    border-color: var(--accent);
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    padding: 24px 0 64px;
}

.product-gallery {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.product-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-info .price {
    font-size: 28px;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
}

.qty-input {
    width: 88px;
    text-align: center;
}

.product-description {
    margin-top: 28px;
    color: var(--text-secondary);
    white-space: pre-line;
}

.split-page,
.contact-layout,
.account-card,
.legal-content {
    padding-bottom: 80px;
}

.contact-layout,
.trade-page {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
}

.form-card,
.info-card,
.account-card,
.legal-content,
.cart-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.form-grid label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.info-list li,
.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.info-list i {
    color: var(--accent);
    width: 18px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 24px;
    padding-bottom: 80px;
}

.cart-item img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.empty-state {
    padding: 48px 24px;
    text-align: center;
    color: var(--text-secondary);
    border: 1px dashed var(--border);
    border-radius: 16px;
}

.flash {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 700;
}

.flash-success {
    background: rgba(39, 174, 96, 0.12);
    color: var(--success);
}

.flash-error {
    background: rgba(239, 35, 60, 0.12);
    color: var(--accent);
}

.toast-stack {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: grid;
    gap: 8px;
}

.toast {
    min-width: 240px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #151719;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    font-size: 14px;
}

.toast.is-error {
    border-color: var(--accent);
}

.site-footer {
    background: #070809;
    border-top: 1px solid #1d1f22;
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
    gap: 32px;
    padding-bottom: 42px;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 14px;
}

.jp-mark {
    margin: 0 0 8px;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    font-size: 12px;
}

.footer-tagline {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.footer-copy,
.site-footer li,
.site-footer a,
.site-footer span {
    color: var(--text-secondary);
}

.site-footer h3 {
    margin: 0 0 14px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-footer a:hover {
    color: #fff;
}

.footer-contact li {
    margin-bottom: 8px;
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-row a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
}

.footer-bottom {
    border-top: 1px solid #1d1f22;
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 28px 0 10px;
}

.pagination a,
.pagination span {
    min-width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.pagination .is-active {
    background: var(--accent);
    border-color: var(--accent);
}

.notice-soon {
    margin-top: 18px;
    padding: 16px;
    border-left: 2px solid var(--accent);
    background: rgba(239, 35, 60, 0.08);
}

.filters-toggle {
    display: none;
}

.skeleton {
    background: linear-gradient(90deg, #151719 25%, #1b1e21 50%, #151719 75%);
    background-size: 200% 100%;
    animation: skeleton 1.4s infinite;
}

@keyframes skeleton {
    from { background-position: 100% 0; }
    to { background-position: -100% 0; }
}

.is-open-search .mobile-search,
.is-open-menu .mobile-drawer,
.is-open-menu .site-overlay,
.is-open-search .site-overlay {
    display: block;
}

body.is-locked {
    overflow: hidden;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.auth-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    padding-bottom: 80px;
}

.account-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    padding-bottom: 80px;
}

.account-grid .account-card:last-child {
    grid-column: 1 / -1;
}

.account-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.simple-list {
    display: grid;
    gap: 0;
}

.simple-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.simple-list p {
    margin: 4px 0 0;
    color: var(--text-secondary);
    font-size: 13px;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.listing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform var(--ease), border-color var(--ease);
}

.listing-card:hover {
    transform: translateY(-4px);
    border-color: #3a3e44;
}

.listing-media {
    position: relative;
    display: block;
    aspect-ratio: 1;
    background: #101214;
}

.listing-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-body {
    padding: 16px;
}

.listing-body h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.listing-body p {
    margin: 0 0 10px;
    color: var(--text-muted);
    font-size: 13px;
}

.listing-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.listing-filters a {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.listing-filters a.is-active,
.listing-filters a:hover {
    color: #fff;
    border-color: var(--accent);
}

.owner-actions {
    margin-top: 16px;
}

.icon-btn.is-logged {
    position: relative;
}

.icon-btn.is-logged::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.chip {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.chip-on {
    background: rgba(39, 174, 96, 0.15);
    color: var(--success);
}

.chip-off {
    background: rgba(116, 121, 128, 0.15);
    color: var(--text-muted);
}

.chip-expired {
    background: rgba(196, 92, 92, 0.14);
    color: #c97a7e;
}

.payment-methods {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin: 8px 0;
}

.payment-methods legend {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0 6px;
}

.payment-option {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

.payment-option + .payment-option {
    border-top: 1px solid var(--border);
}

.payment-option input {
    width: auto;
    min-height: 0;
    margin-top: 4px;
}

.payment-option strong {
    display: block;
}

.payment-option small {
    display: block;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
    font-weight: 500;
}

.proof-preview {
    max-width: 360px;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
}
