:root {
    --bg: #f4efe6;
    --bg-accent: #e7dcc8;
    --surface: rgba(255, 252, 247, 0.92);
    --surface-strong: #ffffff;
    --text: #17323a;
    --muted: #5f7378;
    --border: rgba(23, 50, 58, 0.14);
    --primary: #0e3b43;
    --primary-strong: #072a30;
    --secondary: #c26e3d;
    --success: #22795b;
    --warning: #a26613;
    --danger: #a74343;
    --shadow: 0 20px 60px rgba(14, 59, 67, 0.08);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(194, 110, 61, 0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(14, 59, 67, 0.14), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, #f8f4ec 100%);
}

body {
    margin: 0;
    color: var(--text);
    font: 16px/1.55 "Segoe UI", "Trebuchet MS", sans-serif;
}

body.admin-mode {
    background: #f3f5f7;
    color: #223138;
}

body.admin-mode::before {
    content: none;
}

body.drawer-open {
    overflow: hidden;
}

a {
    color: var(--primary);
}

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

.page-shell {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto;
    padding: 12px 0 28px;
}

.page-shell-admin {
    width: min(1380px, calc(100% - 28px));
    padding-top: 12px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0 18px;
}

.site-header-admin {
    padding: 4px 0 14px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(23, 50, 58, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.admin-mode .brand-logo {
    height: 44px;
}

.site-footer {
    display: grid;
    gap: 16px;
    margin-top: 24px;
    padding: 22px 0 10px;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.admin-mode .site-footer {
    margin-top: 12px;
    padding-top: 12px;
    font-size: 0.92rem;
}

.site-footer p {
    margin: 6px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
    gap: 18px;
    align-items: stretch;
}

.footer-brand-card,
.footer-trust-card,
.footer-social-card {
    padding: 18px 18px 16px;
    border: 1px solid rgba(23, 50, 58, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 30px rgba(14, 59, 67, 0.05);
}

.footer-brand-card,
.footer-trust-card {
    display: grid;
    gap: 10px;
}

.footer-social-card {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-title {
    color: var(--text);
    font-size: 1rem;
}

.footer-contact-link {
    font-weight: 700;
    text-decoration: none;
}

.footer-section-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-trust-copy {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.4;
}

.payment-logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.payment-logo-tile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 44px;
    padding: 4px 8px;
    border-radius: 14px;
    border: 1px solid rgba(23, 50, 58, 0.08);
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.payment-logo-image {
    width: 60px;
    height: 36px;
    object-fit: contain;
}

.footer-socials {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.social-badge {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(23, 50, 58, 0.08);
    color: #fff;
    box-shadow: 0 10px 24px rgba(14, 59, 67, 0.12);
}

.social-badge svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-badge-facebook {
    background: #1877f2;
}

.social-badge-facebook svg path,
.social-badge-tiktok svg path {
    fill: currentColor;
    stroke: none;
}

.social-badge-instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 72%, #515bd4 100%);
}

.social-badge-tiktok {
    background: linear-gradient(135deg, #111111 0%, #222222 100%);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 2px 2px 0;
}

.footer-cookie-link {
    white-space: nowrap;
}

.payment-shell {
    display: grid;
    gap: 18px;
}

.payment-panel {
    display: grid;
    gap: 20px;
}

.payment-panel-header {
    align-items: start;
}

.payment-summary-badges {
    display: grid;
    gap: 8px;
    justify-items: end;
}

.payment-embedded-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 20px;
    align-items: start;
}

.payment-embedded-checkout {
    min-height: 560px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
}

.payment-embedded-side {
    display: grid;
    gap: 14px;
}

.payment-side-card {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
}

.payment-side-card p {
    margin: 8px 0 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.site-nav-user {
    justify-content: flex-end;
}

.site-nav a,
.link-button {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

.inline-form {
    margin: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.nav-pill-primary {
    background: rgba(14, 59, 67, 0.08);
}

.nav-pill-admin {
    background: #17323a;
    color: #fff;
    border-color: #17323a;
}

.admin-mode-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(14, 59, 67, 0.08);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-pill-muted {
    background: rgba(255, 255, 255, 0.6);
}

.nav-pill-menu {
    gap: 10px;
    min-width: 120px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
}

.menu-icon,
.drawer-close svg {
    width: 18px;
    height: 18px;
    display: inline-flex;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 42, 48, 0.26);
    backdrop-filter: blur(4px);
    z-index: 70;
}

.confirm-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 42, 48, 0.34);
    backdrop-filter: blur(4px);
    z-index: 9998;
}

.confirm-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    z-index: 9999;
}

.confirm-backdrop[hidden],
.confirm-modal[hidden] {
    display: none !important;
}

.confirm-modal-card {
    width: min(100%, 520px);
    padding: 22px;
    display: grid;
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: 0 24px 70px rgba(7, 42, 48, 0.18);
}

.confirm-modal-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.confirm-modal-copy p {
    margin: 0;
    color: var(--muted);
}

.confirm-modal-actions {
    display: flex;
    justify-content: end;
    gap: 10px;
    flex-wrap: wrap;
}

.site-drawer {
    position: fixed;
    top: 16px;
    right: 16px;
    bottom: 16px;
    width: min(360px, calc(100vw - 32px));
    padding: 20px;
    display: grid;
    align-content: start;
    gap: 18px;
    background: rgba(255, 252, 247, 0.97);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(7, 42, 48, 0.22);
    backdrop-filter: blur(16px);
    transform: translateX(calc(100% + 28px));
    transition: transform 0.28s ease;
    z-index: 80;
}

.site-drawer.is-open {
    transform: translateX(0);
}

.site-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.site-drawer-brand {
    display: grid;
    gap: 2px;
}

.site-drawer-brand strong {
    font-size: 1.08rem;
}

.drawer-close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
}

.drawer-nav,
.drawer-section {
    display: grid;
    gap: 10px;
}

.drawer-nav {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(23, 50, 58, 0.08);
}

.drawer-link {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(23, 50, 58, 0.08);
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
}

.drawer-link-strong {
    background: linear-gradient(135deg, rgba(14, 59, 67, 0.12), rgba(194, 110, 61, 0.18));
}

.language-switcher-drawer {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(23, 50, 58, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.language-switcher-drawer select {
    width: 100%;
}

.language-switcher-copy {
    display: grid;
    gap: 2px;
    min-width: 92px;
}

.language-switcher-copy strong {
    color: var(--text);
    font-size: 0.98rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.language-switcher-select-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
}

.language-switcher-select-wrap select {
    min-width: 0;
    width: 100%;
}

.drawer-logout-form,
.drawer-logout-button {
    width: 100%;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
}

.language-switcher select {
    width: auto;
    min-width: 110px;
    padding: 8px 28px 8px 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    font-size: 0.92rem;
    font-weight: 600;
}

.language-switcher select:focus {
    outline: none;
}

.language-icon {
    width: 16px;
    height: 16px;
    color: var(--muted);
}

.link-button {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    font: inherit;
}

.main-content {
    display: grid;
    gap: 18px;
}

.admin-mode .main-content {
    gap: 14px;
}

.hero,
.dashboard-grid,
.finder-shell {
    display: grid;
    gap: 24px;
}

.hero {
    align-items: start;
}

.hero-copy h1,
.auth-shell h1,
.finder-shell h1,
.dashboard-hero h1,
.panel h1 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-copy p,
.dashboard-hero p,
.finder-intro p,
.panel p {
    margin: 0 0 12px;
    color: var(--muted);
}

.hero-card,
.panel,
.metric-card,
.code-card,
.report-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.admin-mode .panel,
.admin-mode .metric-card {
    background: #fff;
    border-color: rgba(23, 50, 58, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(23, 50, 58, 0.05);
    backdrop-filter: none;
}

.hero-card,
.panel {
    padding: 18px;
}

.admin-mode .panel {
    padding: 16px;
}

.manual-lookup-card {
    display: grid;
    gap: 18px;
}

.manual-lookup-copy h2 {
    margin: 0 0 8px;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.manual-lookup-copy p {
    margin: 0;
    color: var(--muted);
    max-width: 760px;
}

.manual-lookup-form {
    display: grid;
    gap: 14px;
}

.manual-lookup-form label {
    gap: 10px;
}

.manual-lookup-form input {
    min-height: 58px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: Consolas, Monaco, monospace;
}

.manual-lookup-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dashboard-settings-grid {
    display: grid;
    gap: 14px;
}

.dashboard-hero {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dashboard-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.metric-card {
    padding: 12px 14px;
    min-width: 110px;
}

.metric-card-link {
    text-decoration: none;
    color: inherit;
}

.metric-card-alert {
    border-color: rgba(162, 102, 19, 0.22);
    background: linear-gradient(135deg, rgba(255, 248, 238, 0.98), rgba(255, 241, 224, 0.94));
    box-shadow: 0 20px 50px rgba(162, 102, 19, 0.14);
}

.metric-card-alert .metric-icon {
    background: rgba(162, 102, 19, 0.14);
    color: var(--warning);
}

.metric-card strong {
    display: block;
    font-size: 1.3rem;
}

.metric-alert-copy {
    display: block;
    margin-top: 4px;
    color: var(--warning);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 800;
}

.steps,
.feature-list {
    padding-left: 18px;
    margin: 14px 0 0;
    color: var(--muted);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.button:hover {
    filter: brightness(1.02);
}

.admin-mode .button {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
}

.admin-mode .button-secondary {
    background: #fff;
}

.button-secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
}

.button-small {
    min-height: 36px;
}

.button-compact {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.88rem;
}

.button-icon {
    width: 14px;
    height: 14px;
    display: inline-flex;
}

.button-danger-soft {
    color: var(--danger);
    border-color: rgba(167, 67, 67, 0.18);
    background: rgba(167, 67, 67, 0.05);
}

.button.button-danger-soft {
    color: var(--danger);
}

.panel-header,
.code-card-header,
.report-card-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
}

.admin-mode .panel-header {
    align-items: end;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(23, 50, 58, 0.06);
    margin-bottom: 12px;
}

.panel-header h2 {
    margin: 0;
}

.admin-mode .panel-header h1,
.admin-mode .panel-header h2 {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.card-grid,
.report-list {
    display: grid;
    gap: 14px;
}

.code-card,
.report-card {
    padding: 14px;
}

.code-label {
    display: block;
    font-family: Consolas, Monaco, monospace;
    font-size: 1rem;
    font-weight: 700;
}

.status {
    display: inline-flex;
    margin-top: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-active {
    background: rgba(34, 121, 91, 0.12);
    color: var(--success);
}

.status-used {
    background: rgba(162, 102, 19, 0.12);
    color: var(--warning);
}

.status-inactive,
.status-ignored {
    background: rgba(95, 115, 120, 0.12);
    color: var(--muted);
}

.status-deleted {
    background: rgba(167, 67, 67, 0.12);
    color: var(--danger);
}

.status-pending {
    background: rgba(14, 59, 67, 0.12);
    color: var(--primary);
}

.status-accepted {
    background: rgba(34, 121, 91, 0.12);
    color: var(--success);
}

.qr-preview {
    aspect-ratio: 1;
    width: min(100%, 140px);
    margin: 6px auto;
    padding: 8px;
    background: #fff;
    border-radius: 16px;
}

.public-link,
.code-meta,
.finder-email,
.form-footnote,
.form-switch,
.tiny-note,
.active-note {
    color: var(--muted);
    font-size: 0.95rem;
}

.code-meta,
.card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.card-actions form {
    margin: 0;
}

.compact-code-input {
    min-width: 150px;
    width: min(190px, 100%);
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.92rem;
}

.code-promo-input,
.code-promo-input::placeholder {
    text-align: center;
}

.flash-stack {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.flash {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 600;
}

.split-fields {
    display: grid;
    gap: 14px;
}

.checkbox-field {
    display: flex;
    gap: 10px;
    align-items: start;
    color: var(--muted);
}

.checkbox-field input[type="checkbox"] {
    margin-top: 4px;
}

.recaptcha-wrap {
    margin-top: 4px;
}

.legal-page .legal-copy {
    color: var(--muted);
    line-height: 1.75;
}

.section-panel {
    padding: 18px;
    background: rgba(255, 255, 255, 0.5);
}

.section-panel h2 {
    margin-top: 0;
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 252, 247, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.cookie-banner p {
    margin: 6px 0 0;
    color: var(--muted);
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.flash-success {
    background: rgba(34, 121, 91, 0.12);
    color: var(--success);
}

.flash-error {
    background: rgba(167, 67, 67, 0.1);
    color: var(--danger);
}

.auth-shell,
.narrow-panel {
    width: min(100%, 580px);
    margin: 0 auto;
}

.auth-shell {
    display: grid;
    gap: 20px;
}

.form-card,
.stack-form {
    display: grid;
    gap: 16px;
}

.form-card-secondary {
    background: rgba(255, 255, 255, 0.7);
}

label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    border-radius: 16px;
    padding: 12px 14px;
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(14, 59, 67, 0.24);
    border-color: rgba(14, 59, 67, 0.28);
}

small {
    color: var(--muted);
}

.compression-status {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(14, 59, 67, 0.08);
    color: var(--primary);
}

.finder-claim-box {
    margin-top: 16px;
    padding: 18px;
    border: 1px solid rgba(14, 59, 67, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    display: grid;
    gap: 12px;
}

.finder-claim-price-card {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(14, 59, 67, 0.12);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(14, 59, 67, 0.04), rgba(198, 115, 54, 0.07));
}

.finder-claim-price-card span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.finder-claim-price-card strong {
    color: var(--text);
    font-size: 1.42rem;
    line-height: 1.1;
}

.finder-claim-price-card-free {
    background: linear-gradient(180deg, rgba(34, 121, 91, 0.08), rgba(34, 121, 91, 0.03));
    border-color: rgba(34, 121, 91, 0.18);
}

.finder-claim-box form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.finder-claim-box input[type="text"] {
    min-width: 180px;
    flex: 1 1 220px;
}

.empty-state {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.report-image {
    margin-top: 14px;
    border-radius: 18px;
    max-height: 260px;
    object-fit: cover;
}

.item-label {
    display: block;
    margin-top: 4px;
    color: var(--secondary);
    font-weight: 700;
}

.qr-tag-link {
    display: block;
    text-decoration: none;
}

.qr-tag {
    width: min(100%, 260px);
    margin: 10px auto;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(23, 50, 58, 0.08);
    text-align: center;
}

.qr-tag .qr-preview {
    margin: 0 auto 12px;
    padding: 0;
}

.qr-tag-item {
    display: block;
    font-size: 1.15rem;
}

.qr-tag-code {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-family: Consolas, Monaco, monospace;
}

.tag-page {
    display: grid;
    place-items: center;
    min-height: 60vh;
}

.qr-tag-print {
    width: min(100%, 420px);
    padding: 28px;
}

.tag-studio {
    display: grid;
    gap: 18px;
}

.tag-studio-panel {
    display: grid;
    gap: 18px;
}

.tag-studio-copy h1 {
    margin-bottom: 8px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.tag-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(14, 59, 67, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.tag-badge-soft {
    background: rgba(194, 110, 61, 0.12);
    color: var(--secondary);
}

.tag-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.tag-control {
    min-width: 160px;
}

.tag-control-note {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.tag-toolbar-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-delete-warning {
    display: grid;
    gap: 10px;
    padding: 16px 18px;
    border: 1px solid rgba(167, 67, 67, 0.18);
    border-radius: 18px;
    background: rgba(255, 243, 243, 0.92);
    color: var(--danger);
}

.tag-delete-warning p {
    margin: 0;
    color: var(--danger);
}

.tag-delete-warning-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-sheet-wrap {
    display: grid;
    gap: 14px;
    justify-items: center;
}

.tag-spec-grid {
    width: min(100%, 900px);
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.tag-spec-card {
    padding: 14px 16px;
    border: 1px solid rgba(23, 50, 58, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(14, 59, 67, 0.05);
}

.tag-spec-label {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag-spec-card strong {
    display: block;
    color: var(--text);
    font-size: 1rem;
}

.tag-sheet-preview {
    --tag-columns: 1;
    --tag-rows: 1;
    width: min(100%, 900px);
    aspect-ratio: 210 / 297;
    min-height: min(1280px, calc((100vw - 32px) * 1.414));
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(var(--tag-columns), minmax(0, 1fr));
    grid-template-rows: repeat(var(--tag-rows), minmax(0, 1fr));
    align-content: start;
    gap: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 247, 241, 0.92));
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
    place-items: center;
}

.tag-sheet-render {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}

.print-sticker {
    display: flex;
}

.print-sticker-card {
    width: 100%;
    min-height: 100%;
    padding: 12px;
    display: grid;
    gap: 8px;
    align-content: start;
    border-radius: 24px;
    background: #fffdf9;
    border: 1px solid rgba(23, 50, 58, 0.12);
    box-shadow: 0 16px 30px rgba(14, 59, 67, 0.06);
    position: relative;
    overflow: hidden;
}

.print-sticker-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 14px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.print-sticker-brand {
    padding-top: 10px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.print-sticker-item {
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    line-height: 1.1;
}

.print-sticker-qr-frame {
    width: min(100%, 150px);
    margin: 0 auto;
    padding: 10px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(23, 50, 58, 0.08);
}

.print-sticker-qr {
    width: 100%;
    aspect-ratio: 1;
}

.print-sticker-code {
    text-align: center;
    color: var(--secondary);
    font-family: Consolas, Monaco, monospace;
    font-size: 0.92rem;
    font-weight: 700;
}

.print-sticker-note {
    margin-top: auto;
    padding-top: 8px;
    display: grid;
    gap: 4px;
    color: var(--muted);
    font-size: 0.8rem;
    text-align: center;
    border-top: 1px solid rgba(23, 50, 58, 0.08);
}

.admin-grid {
    grid-template-columns: 1fr;
}

.admin-inline-form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-inline-form input[type="number"] {
    width: 100px;
}

.admin-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(23, 50, 58, 0.08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(23, 50, 58, 0.05);
}

.admin-subnav-label {
    margin-right: 6px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-subnav-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(23, 50, 58, 0.1);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
}

.admin-subnav-link-active {
    background: rgba(14, 59, 67, 0.08);
    border-color: rgba(14, 59, 67, 0.16);
}

.admin-filters {
    display: grid;
    gap: 12px;
}

.admin-mode .admin-filters {
    gap: 10px;
}

.inventory-summary-row {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.inventory-section-copy {
    display: grid;
    gap: 4px;
}

.inventory-section-copy h2 {
    margin: 0;
    font-size: 1.15rem;
}

.inventory-generate-form {
    gap: 16px;
}

.inventory-generate-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.inventory-options-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.inventory-option-card {
    min-height: 74px;
    align-items: flex-start;
    padding: 12px 14px;
    border: 1px solid rgba(23, 50, 58, 0.08);
    border-radius: 12px;
    background: #fafbfc;
}

.inventory-option-card span {
    display: grid;
    gap: 2px;
}

.inventory-option-card strong {
    font-size: 0.95rem;
}

.inventory-option-card small {
    color: var(--muted);
    font-size: 0.78rem;
}

.inventory-generate-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.inventory-generate-note {
    max-width: 720px;
    text-align: left;
}

.inventory-generate-actions {
    justify-content: flex-end;
}

.inventory-filter-header {
    margin-bottom: 2px;
}

.inventory-filter-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    align-items: end;
}

.inventory-export-actions {
    justify-content: flex-start;
    padding: 0 0 8px;
    border-bottom: 1px solid rgba(23, 50, 58, 0.06);
    margin-bottom: 4px;
}

.inventory-batch-cell {
    display: grid;
    gap: 4px;
    min-width: 150px;
}

.inventory-table-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-mode .inventory-summary-row {
    margin-top: 4px;
}

.admin-mode .inventory-summary-row .metric-card strong {
    font-size: 1.2rem;
}

.admin-mode .inventory-generate-grid label,
.admin-mode .inventory-filter-grid label {
    gap: 6px;
}

.admin-mode .inventory-generate-grid small,
.admin-mode .inventory-filter-grid small {
    color: var(--muted);
}

.admin-mode .inventory-table-wrap .admin-table {
    min-width: 1040px;
}

.profile-privacy-panel,
.profile-danger-panel {
    margin-top: 18px;
}

.profile-privacy-actions {
    display: grid;
    gap: 10px;
}

.profile-danger-panel {
    border-color: rgba(167, 67, 67, 0.16);
}

.profile-danger-list {
    margin: 0 0 16px;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.admin-activity-summary {
    margin-bottom: 16px;
}

.admin-activity-metadata {
    margin-top: 8px;
}

.admin-activity-metadata summary {
    cursor: pointer;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
}

.admin-activity-metadata pre {
    margin: 8px 0 0;
    padding: 10px 12px;
    overflow-x: auto;
    border: 1px solid rgba(23, 50, 58, 0.08);
    border-radius: 10px;
    background: #f7f9fa;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.45;
    white-space: pre-wrap;
    word-break: break-word;
}

.filter-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(23, 50, 58, 0.08);
    border-radius: 14px;
    background: #fff;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.inventory-table-wrap .admin-table {
    min-width: 1100px;
}

.admin-table th,
.admin-table td {
    padding: 11px 10px;
    border-top: 1px solid var(--border);
    vertical-align: top;
    text-align: left;
}

.admin-table thead th {
    padding-top: 12px;
    padding-bottom: 12px;
    border-top: 0;
    color: var(--muted);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #f7f8fa;
}

.admin-table tbody tr:hover {
    background: #f9fbfc;
}

.admin-actions {
    min-width: 240px;
}

.admin-actions form {
    margin: 0;
}

.dashboard-hero-compact {
    padding: 2px 0 0;
}

.admin-mode .dashboard-hero-compact {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 2px 0 4px;
}

.dashboard-hero-compact h1 {
    margin-bottom: 6px;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.admin-mode .dashboard-hero-compact h1 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    letter-spacing: -0.02em;
}

.dashboard-hero-copy p {
    max-width: 760px;
}

.admin-mode .dashboard-hero-copy p {
    max-width: 920px;
    color: var(--muted);
}

.dashboard-toolbar {
    display: grid;
    gap: 12px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
}

.admin-mode .stats-row {
    gap: 8px;
}

.compact-metric {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.admin-mode .compact-metric {
    padding: 14px 16px;
    min-height: 0;
}

.compact-metric span {
    font-size: 0.84rem;
    color: var(--muted);
}

.metric-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(14, 59, 67, 0.08);
    color: var(--primary);
}

.dashboard-section {
    display: grid;
    gap: 14px;
}

.reports-alert {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(162, 102, 19, 0.18);
    border-radius: 18px;
    background: rgba(255, 245, 230, 0.88);
    color: var(--warning);
}

.reports-attention-badge {
    margin-top: 0;
    align-self: center;
}

.dashboard-card-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: stretch;
}

.dashboard-card-grid-active,
.dashboard-card-grid-archive {
    align-items: stretch;
}

.dashboard-card-grid-compact {
    justify-content: center;
    margin-inline: auto;
}

.compact-code-card {
    display: grid;
    gap: 12px;
    align-content: start;
    grid-template-rows: auto auto auto 1fr;
    min-width: 0;
    height: 100%;
}

.code-card-active {
    border: 1px solid rgba(34, 121, 91, 0.34);
    box-shadow: 0 20px 54px rgba(34, 121, 91, 0.12);
    background: linear-gradient(180deg, rgba(250, 255, 252, 0.98), rgba(244, 252, 248, 0.96));
}

.archive-code-card-deleted {
    background: linear-gradient(180deg, rgba(255, 250, 250, 0.98), rgba(250, 245, 245, 0.96));
    border-color: rgba(167, 67, 67, 0.2);
}

.compact-code-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
}

.compact-code-meta {
    display: grid;
    gap: 6px;
    font-size: 0.84rem;
}

.compact-code-meta-grid {
    align-content: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    min-height: 98px;
}

.compact-code-meta-row {
    display: grid;
    gap: 2px;
}

.compact-code-meta-row span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.compact-code-meta-row strong {
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.25;
}

.compact-actions {
    align-items: stretch;
}

.code-card-actions {
    display: grid;
    gap: 8px;
    align-content: end;
    margin-top: auto;
}

.code-card-actions > * {
    width: 100%;
}

.code-card-actions .button {
    width: 100%;
}

.code-action-form,
.code-payment-form {
    display: grid;
    gap: 8px;
    width: 100%;
}

.code-action-form-wide {
    width: 100%;
}

.code-payment-controls {
    display: grid;
    gap: 8px;
    width: 100%;
    align-content: end;
}

.code-payment-controls .button,
.code-payment-controls .compact-code-input {
    width: 100%;
}

.finder-email-locked {
    font-weight: 600;
}

.compact-qr-tag {
    width: 100%;
    max-width: 152px;
    padding: 8px;
    margin: 0 auto;
}

.compact-qr-tag .qr-tag-item {
    font-size: 0.94rem;
}

.qr-preview-link {
    border-radius: 18px;
}

.icon-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.code-active-panel {
    display: grid;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(34, 121, 91, 0.08);
    border: 1px solid rgba(34, 121, 91, 0.12);
}

.code-active-panel-muted {
    background: rgba(95, 115, 120, 0.08);
    border-color: rgba(95, 115, 120, 0.12);
}

.note-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}

.compact-report-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.compact-report-card {
    display: grid;
    gap: 10px;
}

.report-next-steps,
.finder-guidance {
    display: grid;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(14, 59, 67, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.report-next-steps strong,
.finder-guidance strong {
    color: var(--text);
    font-size: 0.94rem;
}

.report-next-steps-list,
.finder-guidance-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
}

.finder-intro {
    align-content: start;
}

.finder-intro-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.finder-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
}

.finder-language-switcher select {
    min-width: 120px;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    font-size: 0.92rem;
    font-weight: 700;
}

.finder-language-switcher select:focus {
    outline: none;
}

.finder-form {
    align-content: start;
}

.report-card-pending {
    border-color: rgba(162, 102, 19, 0.2);
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 246, 233, 0.94));
    box-shadow: 0 20px 55px rgba(162, 102, 19, 0.12);
}

.report-next-steps-muted {
    border-color: rgba(162, 102, 19, 0.14);
    background: rgba(255, 248, 238, 0.9);
}

.admin-locale-list {
    display: grid;
    gap: 10px;
    align-content: start;
}

.admin-locale-toolbar {
    display: grid;
    gap: 18px;
}

.admin-locale-upload {
    align-content: start;
}

.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-simple-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.admin-simple-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 12px;
    border: 1px solid rgba(23, 50, 58, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
}

.admin-simple-list-active {
    border-color: rgba(14, 59, 67, 0.18) !important;
    background: rgba(245, 250, 248, 0.96) !important;
}

.admin-locale-link {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.admin-simple-list code {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(14, 59, 67, 0.08);
    color: var(--primary);
    font-size: 0.82rem;
}

@media (min-width: 880px) {
    .admin-locale-toolbar {
        grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
        align-items: start;
    }
}

.report-card-side {
    display: grid;
    justify-items: end;
    gap: 6px;
}

@media (max-width: 720px) {
    .page-shell {
        width: min(100% - 16px, 100%);
        padding: 8px 0 20px;
    }

    .site-header {
        align-items: center;
        flex-direction: row;
        padding: 6px 0 12px;
    }

    .site-nav {
        width: auto;
    }

    .brand-logo {
        height: 48px;
    }

    .panel,
    .hero-card {
        padding: 14px;
        border-radius: 18px;
    }

    .dashboard-hero h1,
    .panel h1 {
        font-size: clamp(1.55rem, 7vw, 2.15rem);
        margin-bottom: 8px;
    }

    .eyebrow {
        margin-bottom: 8px;
        font-size: 0.68rem;
    }

    .dashboard-toolbar {
        gap: 10px;
    }

    .language-switcher {
        flex: 1 1 180px;
        justify-content: space-between;
    }

    .language-switcher select {
        min-width: 0;
        flex: 1 1 auto;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .metric-card {
        padding: 10px 12px;
    }

    .metric-card strong {
        font-size: 1.16rem;
    }

    .inventory-generate-note {
        text-align: left;
    }

    .dashboard-card-grid,
    .compact-report-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .compact-code-card,
    .compact-report-card {
        gap: 8px;
    }

    .compact-code-top {
        gap: 8px;
    }

    .compact-code-meta {
        gap: 6px;
        font-size: 0.8rem;
    }

    .compact-code-meta-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .compact-code-card {
        padding: 12px;
        gap: 8px;
    }

    .compact-qr-tag {
        max-width: 124px;
        padding: 6px;
    }

    .qr-preview {
        width: min(100%, 112px);
        padding: 4px;
    }

    .button {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.88rem;
    }

    .compact-code-input {
        min-width: 0;
        width: 100%;
        padding: 9px 12px;
        font-size: 0.88rem;
    }

    .compact-actions > * {
        width: 100%;
    }

    .compact-actions .button {
        width: 100%;
    }

    .report-next-steps,
    .finder-guidance {
        padding: 10px 12px;
    }

    .finder-intro-top {
        align-items: stretch;
    }

    .finder-language-switcher {
        width: 100%;
        justify-content: space-between;
    }

    .finder-language-switcher select {
        min-width: 0;
        width: 100%;
    }

    .tag-toolbar-actions {
        width: 100%;
    }

    .tag-toolbar-actions .button {
        flex: 1 1 100%;
    }

    .tag-sheet-preview {
        padding: 14px;
        gap: 12px;
    }

    .site-footer,
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-main,
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-social-card {
        justify-items: start;
    }

    .site-drawer {
        top: 10px;
        right: 10px;
        bottom: 10px;
        width: calc(100vw - 20px);
        padding: 18px;
        border-radius: 24px;
    }

    .confirm-modal-actions > * {
        width: 100%;
    }
}

@media (min-width: 760px) {
    .hero,
    .finder-shell {
        grid-template-columns: 1.2fr 1fr;
    }

    .manual-lookup-card {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: end;
    }

    .dashboard-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
    }

    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .admin-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-toolbar {
        grid-template-columns: auto 1fr;
        align-items: center;
    }

    .split-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-card-grid-active {
        grid-template-columns: repeat(auto-fit, minmax(300px, 332px));
        justify-content: center;
    }

    .dashboard-card-grid-archive {
        grid-template-columns: repeat(auto-fit, minmax(300px, 332px));
        justify-content: center;
    }

    .dashboard-card-grid-compact {
        grid-template-columns: repeat(auto-fit, minmax(300px, 332px));
        justify-content: center;
        max-width: calc((332px * 2) + 14px);
    }

    .dashboard-card-grid-compact .compact-code-card {
        width: 332px;
    }
}

.pricing-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

.pricing-card strong {
    display: block;
    margin-top: 2px;
    font-size: 1.4rem;
}

.pricing-card p,
.pricing-note-box p {
    margin: 8px 0 0;
    color: var(--muted);
}

.pricing-note-box {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid rgba(23, 50, 58, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
}

.pricing-note-list {
    margin-top: 0;
}

@media (min-width: 760px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media print {
    @page {
        size: A4 portrait;
        margin: 8mm;
    }

    html,
    body {
        background: #fff;
    }

    .site-header,
    .flash-stack,
    .tag-studio-panel,
    .main-content > :not(.tag-studio) {
        display: none !important;
    }

    .page-shell,
    .main-content,
    .tag-studio,
    .tag-sheet-wrap {
        width: auto;
        margin: 0;
        padding: 0;
        gap: 0;
    }

    .tag-sheet-preview {
        width: auto;
        min-height: auto;
        aspect-ratio: auto;
        padding: 0;
        gap: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: #fff;
        display: block;
    }

    .tag-sheet-render {
        border-radius: 0;
    }
}
