:root {
    color-scheme: light;
    --color-bg: #f6f7fb;
    --color-surface: #ffffff;
    --color-text: #071326;
    --color-muted: #627084;
    --color-border: #e4e8f0;
    --color-accent: #ef8a00;
    --color-accent-strong: #061225;
    --color-panel: #deedf5;
    --color-panel-strong: #c9e3f1;
    --color-warm: #fff8ef;
    --color-good: #047857;
    --color-warn: #b45309;
    --color-danger: #be123c;
    --color-ink: #061225;
    --shadow-soft: 0 14px 34px rgba(7, 19, 38, 0.08);
    --radius: 7px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 251, 0.98)),
        var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
}

a {
    color: var(--color-accent-strong);
}

.site-shell {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.site-header,
.site-footer {
    background: rgba(246, 247, 251, 0.97);
    border-bottom: 1px solid #e5e8ef;
    padding: 14px clamp(15px, 4vw, 56px);
}

.site-header {
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(7, 19, 38, 0.05);
    position: sticky;
    top: 0;
    z-index: 40;
}

.site-header-inner {
    align-items: center;
    display: grid;
    gap: 12px 22px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    margin: 0 auto;
    max-width: 1250px;
}

.site-footer {
    border-bottom: 0;
    border-top: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: 0.88rem;
}

.site-logo {
    align-items: baseline;
    color: #061225;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1.72rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.92;
    text-decoration: none;
    white-space: nowrap;
}

.site-logo strong,
.site-logo em {
    color: #ef8a00;
}

.site-logo strong {
    font-weight: 900;
}

.site-logo em {
    font-size: 1rem;
    font-style: normal;
    font-weight: 800;
    margin-left: -2px;
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.site-menu {
    display: contents;
}

.menu-toggle {
    align-items: center;
    background: #061225;
    border: 1.5px solid #061225;
    border-radius: var(--radius);
    color: #fff;
    cursor: pointer;
    display: none;
    height: 42px;
    justify-content: center;
    padding: 0;
    width: 46px;
}

.menu-toggle:hover {
    background: #ef8a00;
    border-color: #ef8a00;
}

.menu-toggle-lines {
    display: grid;
    gap: 5px;
    width: 20px;
}

.menu-toggle-lines span {
    background: currentColor;
    border-radius: 99px;
    display: block;
    height: 2px;
    transition: opacity 160ms ease, transform 160ms ease;
    width: 100%;
}

.is-menu-open .menu-toggle-lines span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.is-menu-open .menu-toggle-lines span:nth-child(2) {
    opacity: 0;
}

.is-menu-open .menu-toggle-lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    min-width: 0;
}

.site-nav a {
    border-radius: var(--radius);
    color: var(--color-text);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    min-height: 36px;
    padding: 12px 10px;
    text-decoration: none;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: #fff;
    box-shadow: 0 6px 16px rgba(7, 19, 38, 0.07);
    color: #ef8a00;
}

.site-actions {
    align-items: center;
    display: flex;
    gap: 9px;
    justify-content: flex-end;
    min-width: 0;
}

.site-user {
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.site-action-button {
    align-items: center;
    background: #061225;
    border: 1.5px solid #061225;
    border-radius: var(--radius);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    text-decoration: none;
    white-space: nowrap;
}

.site-action-button:hover {
    background: #ef8a00;
    border-color: #ef8a00;
    color: #fff;
}

.inline-form {
    display: inline;
    margin: 0;
}

.inline-form button,
.form button {
    border: 0;
    border-radius: var(--radius);
    background: var(--color-accent);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    padding: 10px 14px;
}

.inline-form button:hover,
.form button:hover {
    background: #d97700;
}


.table-action-form {
    display: inline-flex;
    margin: 0;
}

.table-action-form button {
    border: 1px solid #d9e0ea;
    border-radius: var(--radius);
    background: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
    font: inherit;
    font-size: 0.84rem;
    padding: 7px 9px;
    white-space: nowrap;
}

.table-action-form select {
    border: 1px solid #d9e0ea;
    border-radius: var(--radius);
    background: var(--color-surface);
    color: var(--color-text);
    font: inherit;
    font-size: 0.84rem;
    margin-right: 6px;
    padding: 7px 9px;
}

.table-action-form button:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.muted-cell {
    color: var(--color-muted);
}

.table-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.table-link {
    border: 1px solid #d9e0ea;
    border-radius: var(--radius);
    color: var(--color-text);
    font-size: 0.84rem;
    padding: 7px 9px;
    text-decoration: none;
    white-space: nowrap;
}

.table-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.mail-preview-block {
    background: #111827;
    color: #f8fafc;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
    max-height: 520px;
    overflow: auto;
    padding: 16px;
    white-space: pre-wrap;
    word-break: break-word;
}

.main {
    width: min(1250px, calc(100% - 30px));
    margin: 0 auto;
    padding: clamp(24px, 4vw, 54px) 0;
}

.intro {
    background: var(--color-panel);
    border: 1px solid #d1e7f3;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    padding: clamp(22px, 4vw, 42px);
}

.panel {
    width: min(520px, 100%);
    background: var(--color-surface);
    border: 1px solid #e6ebf2;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
    padding: clamp(22px, 4vw, 38px);
}

.panel h1 {
    margin: 0 0 20px;
}

.form {
    display: grid;
    gap: 16px;
}

.form label {
    display: grid;
    gap: 6px;
    color: var(--color-muted);
}

.form input {
    width: 100%;
    border: 1px solid #d9e0ea;
    border-radius: var(--radius);
    color: var(--color-text);
    font: inherit;
    padding: 11px 12px;
}

.form select,
.form textarea {
    width: 100%;
    border: 1px solid #d9e0ea;
    border-radius: var(--radius);
    color: var(--color-text);
    font: inherit;
    padding: 11px 12px;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: var(--color-accent);
    outline: 3px solid rgba(239, 138, 0, 0.18);
}

.alert {
    border-radius: 12px;
    margin-bottom: 18px;
    overflow-wrap: anywhere;
    padding: 12px 14px;
}

.alert-error {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #9f1239;
}

.alert-success {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.auth-shell {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1fr);
    margin: clamp(22px, 5vw, 62px) auto;
    max-width: 940px;
    min-height: 540px;
}

.auth-brand-panel {
    background:
        linear-gradient(105deg, #020b18 0%, #031225 54%, #05101e 100%);
    border-radius: 8px 0 0 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: clamp(26px, 4vw, 42px);
    position: relative;
}

.auth-brand-panel::before {
    background: #ef8a00;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.auth-brand-panel::after {
    background:
        linear-gradient(90deg, rgba(239, 138, 0, 0.28), transparent 56%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 12px);
    content: "";
    inset: 0;
    opacity: 0.82;
    position: absolute;
}

.auth-brand-panel > * {
    position: relative;
    z-index: 1;
}

.auth-brand-logo {
    align-items: baseline;
    color: #fff;
    display: inline-flex;
    font-size: 2rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: auto;
    text-decoration: none;
}

.auth-brand-logo strong,
.auth-brand-logo em {
    color: #ef8a00;
}

.auth-brand-logo em {
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 800;
    margin-left: -2px;
}

.auth-brand-panel .eyebrow {
    color: #ff9708;
    margin-bottom: 8px;
}

.auth-brand-panel h1 {
    color: #fff;
    font-size: clamp(1.72rem, 3vw, 2.35rem);
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0 0 14px;
}

.auth-brand-panel p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    margin: 0;
    max-width: 360px;
}

.auth-panel {
    border-left: 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 14px 34px rgba(7, 19, 38, 0.08);
    margin: 0;
    padding: clamp(26px, 4vw, 42px);
    width: 100%;
}

.auth-panel h1 {
    color: var(--color-ink);
    font-size: clamp(1.75rem, 3vw, 2.28rem);
    letter-spacing: 0;
    line-height: 1.08;
}

.auth-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-top: 18px;
}

.auth-links a {
    color: var(--color-accent);
    font-weight: 800;
    text-decoration: none;
}

.auth-links a:hover {
    color: var(--color-ink);
}

.form-hint {
    color: var(--color-muted);
    font-size: 0.88rem;
    margin: 12px 0 0;
}

.page-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}

.dashboard-shell {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.dashboard-hero {
    background:
        linear-gradient(100deg, #020b18 0%, #031225 52%, #05101e 100%);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(5, 16, 33, 0.16);
    color: #fff;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
    min-height: 316px;
    overflow: hidden;
    padding: 34px;
    position: relative;
}

.dashboard-hero::before {
    background:
        linear-gradient(90deg, rgba(239, 138, 0, 0.24), transparent 48%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 14px);
    content: "";
    inset: 0;
    opacity: 0.8;
    position: absolute;
}

.dashboard-hero > * {
    position: relative;
    z-index: 1;
}

.dashboard-hero-copy {
    align-self: center;
    max-width: 680px;
}

.dashboard-hero .eyebrow {
    color: #ff9708;
    margin-bottom: 8px;
}

.dashboard-hero h1 {
    color: #fff;
    font-size: 2.35rem;
    line-height: 1.08;
    margin: 0 0 12px;
}

.dashboard-hero-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0;
    max-width: 580px;
}

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

.dashboard-memory-card {
    align-self: stretch;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
    color: #061225;
    display: grid;
    gap: 16px;
    padding: 18px;
}

.dashboard-memory-top {
    align-items: center;
    display: flex;
    font-weight: 900;
    gap: 10px;
}

.dashboard-memory-top .icon-qr {
    color: #ef8a00;
}

.dashboard-memory-preview {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-memory-tile {
    align-self: stretch;
    aspect-ratio: 1.18 / 1;
    background:
        linear-gradient(145deg, rgba(239, 138, 0, 0.18), transparent 50%),
        #e9f2f8;
    border: 1px solid #d8e6f0;
    border-radius: 7px;
    display: block;
    min-width: 0;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.dashboard-memory-tile::after {
    background:
        linear-gradient(145deg, rgba(239, 138, 0, 0.2), rgba(6, 18, 37, 0.26)),
        radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.2), transparent 42%);
    content: "";
    inset: 0;
    mix-blend-mode: multiply;
    pointer-events: none;
    position: absolute;
}

.dashboard-memory-tile img {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transform: scale(1.01);
    transition: transform 220ms ease, filter 220ms ease;
    width: 100%;
    filter: saturate(0.88) contrast(1.08) brightness(0.98);
}

.dashboard-memory-tile:hover img,
.dashboard-memory-tile:focus-visible img {
    filter: saturate(0.98) contrast(1.12) brightness(1.02);
    transform: scale(1.06);
}

.dashboard-memory-tile:focus-visible {
    outline: 3px solid rgba(239, 138, 0, 0.52);
    outline-offset: 2px;
}

.dashboard-memory-tile.is-empty:nth-child(even) {
    background:
        linear-gradient(145deg, rgba(6, 18, 37, 0.1), transparent 52%),
        #fff8ef;
}

.dashboard-memory-tile.is-empty::after {
    display: none;
}

.dashboard-memory-card p {
    color: #526173;
    font-size: 0.88rem;
    font-weight: 800;
    margin: auto 0 0;
}

.dashboard-stat-strip {
    background: #fff;
    border: 1px solid #e5e8ef;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(10, 20, 39, 0.05);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
}

.dashboard-stat-strip article {
    border-right: 1px solid #e5e8ef;
    min-width: 0;
    padding: 15px 18px;
}

.dashboard-stat-strip article:last-child {
    border-right: 0;
}

.dashboard-stat-strip strong,
.dashboard-stat-strip span {
    display: block;
}

.dashboard-stat-strip strong {
    color: #061225;
    font-size: 1.62rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.dashboard-stat-strip span {
    color: #627084;
    font-size: 0.78rem;
    font-weight: 900;
    margin-top: 5px;
}

.dashboard-workbench {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
}

.dashboard-start-content {
    display: grid;
    gap: 16px;
    padding: 18px;
}

.dashboard-start-content > p {
    color: var(--color-muted);
    margin: 0;
}

.dashboard-action-grid {
    display: grid;
    gap: 10px;
}

.dashboard-action-grid a {
    align-items: center;
    background: #fbfcff;
    border: 1px solid #edf1f6;
    border-radius: 8px;
    color: #061225;
    display: grid;
    gap: 2px 12px;
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 72px;
    padding: 12px;
    text-decoration: none;
}

.dashboard-action-grid a:hover {
    border-color: #ef8a00;
    box-shadow: 0 8px 20px rgba(7, 19, 38, 0.06);
}

.dashboard-action-grid .feature-icon {
    grid-row: span 2;
}

.dashboard-action-grid strong {
    color: #061225;
    line-height: 1.2;
}

.dashboard-action-grid small {
    color: var(--color-muted);
    font-size: 0.8rem;
    font-weight: 800;
}

.dashboard-photo-panel {
    min-height: 100%;
}

.dashboard-latest-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.dashboard-empty-gallery {
    align-items: center;
    display: grid;
    gap: 10px;
    justify-items: center;
    min-height: 292px;
    padding: 36px 18px;
    text-align: center;
}

.dashboard-empty-gallery .icon-camera {
    color: #ef8a00;
    height: 34px;
    width: 44px;
}

.dashboard-empty-gallery .icon-camera::after {
    height: 14px;
    left: 12px;
    top: 7px;
    width: 14px;
}

.dashboard-empty-gallery strong {
    color: #061225;
    font-size: 1.2rem;
}

.dashboard-empty-gallery p {
    color: var(--color-muted);
    margin: 0;
    max-width: 420px;
}

.admin-form-panel {
    max-width: 680px;
}

.section-heading-row {
    align-items: center;
    background: #fbfcff;
    border-bottom: 1px solid #edf1f6;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 16px 18px;
}

.section-heading-row h2 {
    color: var(--color-ink);
    font-size: 1.08rem;
    line-height: 1.2;
    margin: 2px 0 0;
}

.admin-stats {
    margin-bottom: 18px;
}

.admin-stats .status-item {
    border-top: 4px solid #ef8a00;
}

.admin-stats .status-item strong {
    font-size: 1.86rem;
    line-height: 1;
}

.table-wrap {
    overflow-x: auto;
}

.data-table th,
.data-table td {
    text-align: left;
}

.table-actions-heading {
    text-align: right !important;
}

.badge {
    align-items: center;
    background: #eef2f7;
    border: 1px solid #dce4ee;
    border-radius: 999px;
    color: #27364a;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    min-height: 26px;
    padding: 0 9px;
    white-space: nowrap;
}

.badge-status-active {
    background: #ecfdf5;
    border-color: #bbf7d0;
    color: #166534;
}

.badge-status-pending_email_verification {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #9a3412;
}

.badge-status-suspended,
.badge-status-deactivated {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #9f1239;
}

.detail-list {
    display: grid;
    gap: 1px;
    margin: 0;
}

.detail-list div {
    background: #fbfcff;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(120px, 0.4fr) minmax(0, 1fr);
    padding: 12px 18px;
}

.detail-list dt {
    color: var(--color-muted);
    font-weight: 800;
}

.detail-list dd {
    color: var(--color-ink);
    margin: 0;
    overflow-wrap: anywhere;
}

.compact-form {
    margin-top: 12px;
}

.button-stack {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.button-stack .inline-form,
.button-stack .inline-form button {
    width: 100%;
}

.gallery-card-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    padding: 16px;
}

.gallery-card {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 8px;
    display: grid;
    gap: 16px;
    min-height: 220px;
    padding: 18px;
}

.gallery-card h3 {
    color: var(--color-ink);
    font-size: 1.18rem;
    line-height: 1.18;
    margin: 6px 0 8px;
}

.gallery-card h3 a {
    color: inherit;
    text-decoration: none;
}

.gallery-card h3 a:hover {
    color: var(--color-accent);
}

.gallery-card p {
    color: var(--color-muted);
    margin: 0;
}

.mini-stats {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.mini-stats div {
    background: #fbfcff;
    border: 1px solid #edf1f6;
    border-radius: 8px;
    padding: 10px;
}

.mini-stats dt {
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 800;
    margin: 0;
}

.mini-stats dd {
    color: var(--color-ink);
    font-size: 1.18rem;
    font-weight: 900;
    margin: 2px 0 0;
}

.upload-form {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.upload-dropzone {
    align-items: center;
    background: #fff8ef;
    border: 1.5px dashed #ef8a00;
    border-radius: 8px;
    cursor: pointer;
    display: grid;
    gap: 8px;
    justify-items: center;
    min-height: 174px;
    padding: 24px;
    text-align: center;
}

.upload-dropzone.is-drag-over,
.guest-upload-dropzone.is-drag-over {
    background: #fff1db;
    border-color: #061225;
}

.upload-dropzone.is-has-files,
.guest-upload-dropzone.is-has-files {
    min-height: 128px;
}

.upload-dropzone input {
    max-width: 100%;
}

.upload-dropzone strong {
    color: var(--color-ink);
    font-size: 1.05rem;
}

.upload-dropzone small {
    color: var(--color-muted);
}

.upload-icon {
    border: 2px solid #061225;
    border-radius: 8px;
    height: 38px;
    position: relative;
    width: 48px;
}

.upload-icon::before {
    border-bottom: 2px solid #061225;
    border-right: 2px solid #061225;
    content: "";
    height: 13px;
    left: 17px;
    position: absolute;
    top: 9px;
    transform: rotate(45deg);
    width: 13px;
}

.upload-preview {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 8px;
    display: grid;
    gap: 12px;
    padding: 12px;
}

.upload-preview[hidden] {
    display: none;
}

.upload-preview-header {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.upload-preview-header strong {
    color: var(--color-ink);
    font-weight: 900;
}

.upload-preview-header small {
    color: var(--color-muted);
    font-size: 0.8rem;
    font-weight: 800;
}

.upload-preview-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
}

.upload-preview-item {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(10, 20, 39, 0.05);
    display: grid;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.upload-preview-media {
    aspect-ratio: 4 / 3;
    background: #061225;
    min-width: 0;
    overflow: hidden;
}

.upload-preview-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.upload-preview-placeholder {
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    font-size: 0.78rem;
    font-weight: 900;
    height: 100%;
    justify-content: center;
}

.upload-preview-copy {
    display: grid;
    gap: 3px;
    padding: 8px 9px 9px;
}

.upload-preview-copy strong {
    color: var(--color-ink);
    font-size: 0.78rem;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upload-preview-copy small {
    color: var(--color-muted);
    font-size: 0.72rem;
    font-weight: 800;
}

.upload-preview-remove {
    align-items: center;
    background: #ef8a00;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(6, 18, 37, 0.18);
    color: #061225;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    height: 28px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 7px;
    top: 7px;
    width: 28px;
}

.upload-preview-remove:hover,
.upload-preview-remove:focus-visible {
    background: #061225;
    color: #fff;
}

.upload-preview-remove:focus-visible {
    outline: 3px solid rgba(239, 138, 0, 0.46);
    outline-offset: 2px;
}

.upload-form button {
    justify-self: start;
}

.tag-filter {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 14px;
}

.tag-filter a {
    background: #fff;
    border: 1px solid #d9e0ea;
    border-radius: 999px;
    color: var(--color-text);
    font-size: 0.82rem;
    font-weight: 900;
    padding: 7px 10px;
    text-decoration: none;
}

.tag-filter a:hover,
.tag-filter a.is-active {
    border-color: #ef8a00;
    color: #ef8a00;
}

.photo-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    padding: 16px;
}

.photo-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.photo-card {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 8px;
    color: var(--color-text);
    display: grid;
    overflow: hidden;
    text-decoration: none;
}

.photo-card img {
    aspect-ratio: 4 / 3;
    background: #edf1f6;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.photo-card > span,
.photo-card > small,
.photo-card-copy {
    padding: 10px 12px;
}

.photo-card > span,
.photo-card-copy strong {
    color: var(--color-ink);
    display: block;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.photo-card > small,
.photo-card-copy small {
    color: var(--color-muted);
    display: block;
    font-size: 0.78rem;
    margin-top: 3px;
}

.photo-card-copy {
    display: grid;
    gap: 7px;
}

.selection-check {
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.selection-check input {
    margin-right: 5px;
}

.photo-detail-layout {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.photo-preview {
    background: #061225;
    overflow: hidden;
    padding: 12px;
    position: relative;
    touch-action: pan-y pinch-zoom;
}

.photo-preview:focus-visible {
    outline: 3px solid rgba(239, 138, 0, 0.5);
    outline-offset: 3px;
}

.photo-preview img {
    display: block;
    height: auto;
    max-height: 72vh;
    object-fit: contain;
    user-select: none;
    width: 100%;
}

.photo-nav-control {
    align-items: center;
    background: rgba(6, 18, 37, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
    color: #fff;
    display: inline-flex;
    font-size: 2.2rem;
    font-weight: 400;
    height: 46px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    text-decoration: none;
    top: 50%;
    transform: translateY(-50%);
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
    width: 46px;
    z-index: 2;
}

.photo-nav-control-prev {
    left: 22px;
}

.photo-nav-control-next {
    right: 22px;
}

.photo-nav-control:hover,
.photo-nav-control:focus-visible {
    background: #ef8a00;
    border-color: rgba(255, 255, 255, 0.72);
    color: #061225;
}

.photo-nav-control:focus-visible {
    outline: 3px solid rgba(239, 138, 0, 0.5);
    outline-offset: 3px;
}

.photo-edit-form {
    border-top: 1px solid #edf1f6;
    margin-top: 16px;
    padding: 16px;
}

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

.danger-inline-form {
    display: block;
    margin: 14px 16px 16px;
}

.danger-inline-form button,
.danger-panel .inline-form button {
    background: #be123c;
}

.danger-inline-form button:hover,
.danger-panel .inline-form button:hover {
    background: #9f1239;
}

.qr-link-list {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.qr-link-list a {
    align-items: center;
    background: #fbfcff;
    border: 1px solid #edf1f6;
    border-radius: 8px;
    color: #061225;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 13px 14px;
    text-decoration: none;
}

.qr-link-list a:hover {
    border-color: #ef8a00;
    color: #ef8a00;
}

.qr-link-list span {
    color: var(--color-muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.qr-management-grid {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
    margin-bottom: 18px;
}

.qr-preview {
    align-items: center;
    display: grid;
    gap: 14px;
    justify-items: center;
    padding: 24px;
    text-align: center;
}

.qr-preview img {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(7, 19, 38, 0.08);
    display: block;
    height: auto;
    max-width: min(100%, 340px);
    padding: 12px;
}

.qr-preview p {
    color: var(--color-muted);
    margin: 0;
    max-width: 540px;
    overflow-wrap: anywhere;
}

.qr-status-actions {
    padding: 16px;
}

.moderation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.moderation-actions button {
    background: #061225;
    border: 1px solid #061225;
    border-radius: var(--radius);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 7px 9px;
}

.moderation-actions button:hover {
    background: #ef8a00;
    border-color: #ef8a00;
}

.guest-upload-body {
    background:
        linear-gradient(120deg, rgba(2, 11, 24, 0.95), rgba(3, 18, 37, 0.96)),
        #061225;
}

.guest-upload-page {
    align-items: center;
    display: grid;
    min-height: 100vh;
    padding: clamp(18px, 4vw, 42px);
}

.guest-upload-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    max-width: 560px;
    overflow: hidden;
    padding: clamp(24px, 5vw, 40px);
    position: relative;
    width: min(100%, 560px);
}

.guest-upload-card::before {
    background: #ef8a00;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.guest-upload-logo {
    align-items: baseline;
    color: #061225;
    display: inline-flex;
    font-size: 1.82rem;
    font-weight: 900;
    line-height: 0.92;
    margin-bottom: 28px;
    text-decoration: none;
}

.guest-upload-logo strong,
.guest-upload-logo em {
    color: #ef8a00;
}

.guest-upload-logo em {
    font-size: 1rem;
    font-style: normal;
    font-weight: 800;
    margin-left: -2px;
}

.guest-upload-card h1 {
    color: #061225;
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1.05;
    margin: 0 0 12px;
}

.guest-upload-card > p:not(.eyebrow) {
    color: var(--color-muted);
    font-weight: 700;
    margin: 0 0 20px;
}

.guest-upload-meta {
    color: #ef8a00 !important;
    font-size: 0.86rem;
    font-weight: 900 !important;
    margin-bottom: 10px !important;
}

.guest-upload-form {
    display: grid;
    gap: 15px;
}

.guest-upload-form label:not(.guest-upload-dropzone):not(.guest-consent) {
    color: var(--color-muted);
    display: grid;
    gap: 6px;
    font-weight: 800;
}

.guest-upload-form input[type="text"],
.guest-upload-form input[type="password"] {
    border: 1px solid #d9e0ea;
    border-radius: var(--radius);
    color: var(--color-text);
    font: inherit;
    min-height: 46px;
    padding: 11px 12px;
    width: 100%;
}

.guest-upload-dropzone {
    align-items: center;
    background: #fff8ef;
    border: 1.5px dashed #ef8a00;
    border-radius: 8px;
    cursor: pointer;
    display: grid;
    gap: 8px;
    justify-items: center;
    min-height: 190px;
    padding: 24px;
    text-align: center;
}

.guest-upload-dropzone strong {
    color: #061225;
    font-size: 1.12rem;
}

.guest-upload-dropzone small {
    color: var(--color-muted);
}

.guest-consent {
    align-items: start;
    color: var(--color-muted);
    display: grid;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 10px;
    grid-template-columns: auto minmax(0, 1fr);
}

.guest-upload-form button:not(.upload-preview-remove) {
    background: linear-gradient(180deg, #ffad21, #ef8700);
    border: 1px solid #f09808;
    border-radius: var(--radius);
    box-shadow: 0 8px 22px rgba(239, 138, 0, 0.25);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    min-height: 50px;
    padding: 0 18px;
}

.guest-upload-result {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.intro h1 {
    margin: 0 0 10px;
    color: var(--color-ink);
    font-size: 2.8rem;
    line-height: 1.05;
}

.intro p {
    max-width: 740px;
    margin: 0;
    color: var(--color-muted);
    font-size: 1.05rem;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.status-item {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(7, 19, 38, 0.05);
    min-height: 112px;
    padding: 16px;
}

.status-item strong {
    color: var(--color-ink);
    display: block;
    margin-bottom: 4px;
}

.status-item a {
    color: #ef8a00;
    font-weight: 800;
    text-decoration: none;
}

.status-item a:hover {
    color: #061225;
}

.home-landing-body {
    background: #f6f7fb;
}

.is-landing-shell {
    display: block;
    min-height: 100vh;
}

.landing-main {
    margin: 0;
    padding: 0;
    width: 100%;
}

.home-page {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 251, 0.98)),
        #f6f7fb;
    color: #071326;
    min-height: 100vh;
    padding: 15px 15px 10px;
}

.home-header,
.home-stage {
    margin: 0 auto;
    max-width: 1250px;
}

.home-header {
    align-items: end;
    display: grid;
    gap: 13px 22px;
    grid-template-areas:
        "brand top"
        "nav actions";
    grid-template-columns: minmax(520px, 1fr) auto;
    margin-bottom: 14px;
    min-height: 93px;
}

.home-brand {
    align-self: start;
    grid-area: brand;
    padding-left: 15px;
}

.home-logo {
    align-items: baseline;
    color: #061225;
    display: inline-flex;
    font-size: 2.12rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.9;
    text-decoration: none;
}

.home-logo strong {
    color: #ef8a00;
    font-weight: 900;
}

.home-logo em {
    color: #ef8a00;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-left: -2px;
}

.home-brand p {
    color: #0a1427;
    font-size: 0.78rem;
    font-weight: 700;
    margin: 6px 0 0 1px;
}

.home-menu {
    display: contents;
}

.home-menu-toggle {
    grid-area: toggle;
    justify-self: end;
}

.home-top-actions {
    align-items: center;
    display: flex;
    gap: 22px;
    grid-area: top;
    justify-self: end;
}

.language-button {
    align-items: center;
    color: #071326;
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 700;
    gap: 9px;
    text-decoration: none;
}

.language-button {
    background: #fff;
    border: 1px solid #e4e8f0;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(10, 20, 39, 0.04);
    cursor: pointer;
    font: inherit;
    min-height: 37px;
    padding: 0 13px;
}

.flag-de {
    background: linear-gradient(#000 0 33%, #dd0000 33% 66%, #ffce00 66%);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    display: inline-block;
    flex: 0 0 auto;
    height: 17px;
    width: 17px;
}

.chevron {
    border-bottom: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    display: inline-block;
    height: 6px;
    margin-left: 2px;
    transform: rotate(45deg) translateY(-2px);
    width: 6px;
}

.home-nav {
    align-items: center;
    display: flex;
    gap: 32px;
    grid-area: nav;
    padding-left: 18px;
}

.home-nav a {
    color: #071326;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0 0 16px;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}

.home-nav a.is-active::after {
    background: #ef8a00;
    border-radius: 99px;
    bottom: 3px;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 50px;
}

.home-cta-row {
    display: flex;
    gap: 14px;
    grid-area: actions;
    justify-content: end;
}

.home-cta {
    align-items: center;
    border-radius: 7px;
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 900;
    gap: 9px;
    justify-content: center;
    min-height: 41px;
    padding: 0 17px;
    text-decoration: none;
    white-space: nowrap;
}

.home-cta-light {
    background: #fff;
    border: 1.5px solid #ef8a00;
    color: #ef8a00;
}

.home-cta-dark {
    background: #061225;
    border: 1.5px solid #061225;
    color: #fff;
}

.home-cta-login {
    background: #fff;
    border: 1.5px solid #d9e0ea;
    color: #061225;
}

.home-cta-login:hover {
    border-color: #ef8a00;
    color: #ef8a00;
}

.home-cta-orange {
    background: linear-gradient(180deg, #ffad21, #ef8700);
    border: 1px solid #f09808;
    box-shadow: 0 8px 22px rgba(239, 138, 0, 0.25);
    color: #fff;
}

.home-cta-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.66);
    color: #fff;
}

.icon-camera,
.icon-qr,
.icon-user {
    display: inline-block;
    flex: 0 0 auto;
    position: relative;
}

.icon-camera {
    border: 2px solid currentColor;
    border-radius: 5px;
    height: 16px;
    width: 20px;
}

.icon-camera::before {
    background: currentColor;
    border-radius: 2px 2px 0 0;
    content: "";
    height: 4px;
    left: 3px;
    position: absolute;
    top: -5px;
    width: 8px;
}

.icon-camera::after {
    border: 2px solid currentColor;
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 5px;
    position: absolute;
    top: 3px;
    width: 6px;
}

.icon-qr {
    background:
        linear-gradient(currentColor 0 0) 0 0 / 6px 6px no-repeat,
        linear-gradient(currentColor 0 0) 12px 0 / 6px 6px no-repeat,
        linear-gradient(currentColor 0 0) 0 12px / 6px 6px no-repeat,
        linear-gradient(currentColor 0 0) 12px 12px / 6px 6px no-repeat,
        linear-gradient(currentColor 0 0) 8px 8px / 4px 4px no-repeat;
    height: 18px;
    width: 18px;
}

.icon-user {
    border: 1.7px solid currentColor;
    border-radius: 50%;
    height: 11px;
    width: 11px;
}

.icon-user::after {
    border: 1.7px solid currentColor;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    content: "";
    height: 8px;
    left: -5px;
    position: absolute;
    top: 12px;
    width: 18px;
}

.home-stage {
    display: grid;
    gap: 10px;
}

.hero-grid {
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
}

.hero-panel {
    --hero-y-padding: 31px;
    background: #031021;
    border-radius: 7px;
    box-shadow: 0 8px 22px rgba(5, 16, 33, 0.18);
    min-height: 376px;
    overflow: hidden;
    position: relative;
}

.hero-panel::before {
    background:
        radial-gradient(circle at 97% 7%, rgba(239, 138, 0, 0.34) 0 8px, transparent 9px),
        radial-gradient(circle at 82% 12%, rgba(255, 182, 52, 0.13) 0 9px, transparent 11px),
        radial-gradient(circle at 60% 8%, rgba(255, 210, 89, 0.09) 0 8px, transparent 10px),
        radial-gradient(circle at 84% 84%, rgba(239, 138, 0, 0.26) 0 2px, transparent 3px),
        radial-gradient(circle at 73% 79%, rgba(239, 138, 0, 0.22) 0 2px, transparent 3px),
        radial-gradient(circle at 68% 88%, rgba(255, 210, 89, 0.19) 0 2px, transparent 3px);
    content: "";
    inset: 0;
    opacity: 0.9;
    position: absolute;
}

.hero-panel-left {
    background:
        radial-gradient(circle at 77% 70%, rgba(239, 138, 0, 0.18), transparent 26%),
        linear-gradient(100deg, #020b18 0%, #031225 51%, #050e17 100%);
}

.hero-panel-right {
    background:
        radial-gradient(circle at 74% 56%, rgba(16, 57, 102, 0.5), transparent 34%),
        radial-gradient(circle at 92% 22%, rgba(24, 85, 146, 0.33), transparent 24%),
        linear-gradient(100deg, #03152c 0%, #041429 46%, #05101e 100%);
}

.hero-copy {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding-block: var(--hero-y-padding);
    padding-inline: 32px;
    position: relative;
    width: 50%;
    z-index: 2;
}

.hero-panel-right .hero-copy {
    padding-inline-start: 45px;
    width: 49%;
}

.hero-copy h1,
.hero-copy h2 {
    color: #fff;
    font-size: 1.48rem;
    letter-spacing: -0.03em;
    line-height: 1.22;
    margin: 0 0 15px;
}

.hero-copy h1 span,
.hero-copy h2 span {
    color: #ff9708;
}

.hero-copy h2 {
    font-size: 1.66rem;
}

.hero-checks {
    display: grid;
    gap: 6px;
    list-style: none;
    margin: 0 0 13px;
    padding: 0;
}

.hero-checks li {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    line-height: 1.18;
    padding-left: 21px;
    position: relative;
}

.hero-checks li::before {
    align-items: center;
    border: 1.5px solid #ff9708;
    border-radius: 50%;
    color: #ff9708;
    content: "✓";
    display: flex;
    font-size: 0.62rem;
    font-weight: 900;
    height: 13px;
    justify-content: center;
    left: 0;
    line-height: 1;
    position: absolute;
    top: 1px;
    width: 13px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.hero-actions .home-cta {
    font-size: 0.78rem;
    min-height: 36px;
    padding: 0 15px;
}

.hero-panel-left .hero-actions .home-cta {
    padding-left: 13px;
    padding-right: 13px;
}

.social-proof,
.gallery-proof {
    align-items: center;
    display: flex;
    gap: 13px;
    margin: auto 0 0;
    padding-top: 22px;
}

.gallery-proof {
    padding-top: 22px;
}

.proof-text,
.gallery-proof p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.68rem;
    line-height: 1.32;
    margin: 0;
}

.proof-text strong {
    color: #ff9708;
    letter-spacing: 0.04em;
}

@media (min-width: 621px) {
    .social-proof,
    .gallery-proof {
        max-width: none;
        width: max-content;
    }

    .proof-text,
    .gallery-proof p {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

.avatar-stack {
    display: inline-flex;
    min-width: 95px;
}

.avatar-stack img {
    border: 2px solid #fff;
    border-radius: 50%;
    display: block;
    height: 28px;
    margin-right: -9px;
    object-fit: cover;
    width: 28px;
}

.photobox-hero {
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.48));
    bottom: auto;
    height: min(460px, calc(100% + 52px));
    left: calc(50% - 8px);
    max-width: none;
    object-fit: contain;
    position: absolute;
    right: auto;
    top: 10px;
    width: auto;
    z-index: 1;
}

.gallery-hero {
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.44));
    height: 184px;
    object-fit: contain;
    position: absolute;
    right: -20px;
    top: 104px;
    width: auto;
    z-index: 1;
}

.hero-and {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(2, 9, 22, 0.18);
    color: #071326;
    display: flex;
    font-size: 1.55rem;
    font-weight: 800;
    height: 52px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 43%;
    transform: translate(-50%, -50%);
    width: 52px;
    z-index: 4;
}

.feature-grid {
    align-items: stretch;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-feature-card {
    align-items: start;
    background: #fff;
    border: 1px solid #e5e8ef;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(10, 20, 39, 0.05);
    display: grid;
    gap: 13px;
    grid-template-columns: 46px minmax(0, 1fr) 86px;
    height: auto;
    min-height: 139px;
    overflow: hidden;
    padding: 17px 10px 12px 12px;
}

.feature-icon {
    align-self: center;
    background: #061225;
    border-radius: 50%;
    height: 40px;
    justify-self: center;
    position: relative;
    width: 40px;
}

.feature-icon::before,
.feature-icon::after {
    content: "";
    position: absolute;
}

.feature-icon-camera::before {
    border: 2px solid #fff;
    border-radius: 5px;
    height: 15px;
    left: 9px;
    top: 13px;
    width: 20px;
}

.feature-icon-camera::after {
    border: 2px solid #fff;
    border-radius: 50%;
    height: 7px;
    left: 15px;
    top: 17px;
    width: 7px;
}

.feature-icon-qr::before {
    background:
        linear-gradient(#fff 0 0) 0 0 / 7px 7px no-repeat,
        linear-gradient(#fff 0 0) 14px 0 / 7px 7px no-repeat,
        linear-gradient(#fff 0 0) 0 14px / 7px 7px no-repeat,
        linear-gradient(#fff 0 0) 14px 14px / 7px 7px no-repeat,
        linear-gradient(#fff 0 0) 9px 9px / 4px 4px no-repeat;
    height: 21px;
    left: 10px;
    top: 10px;
    width: 21px;
}

.feature-icon-users::before {
    border: 2px solid #fff;
    border-radius: 50%;
    height: 9px;
    left: 15px;
    top: 10px;
    width: 9px;
}

.feature-icon-users::after {
    border: 2px solid #fff;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    height: 10px;
    left: 9px;
    top: 23px;
    width: 20px;
}

.feature-icon-heart::before {
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    height: 16px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 16px;
}

.feature-copy h3 {
    color: #071326;
    font-size: 0.93rem;
    line-height: 1.15;
    margin: 0 0 8px;
}

.feature-copy p {
    color: #15233b;
    font-size: 0.68rem;
    line-height: 1.34;
    margin: 0 0 8px;
}

.feature-copy a {
    color: #10275a;
    font-size: 0.74rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.home-feature-card img {
    align-self: center;
    border-radius: 7px;
    height: 110px;
    justify-self: end;
    max-width: 100%;
    object-fit: cover;
    width: 86px;
}

.home-feature-card:first-child img {
    height: 132px;
    object-fit: contain;
    transform: translateY(-9px);
}

.home-feature-card:nth-child(2) img {
    object-position: 36% 50%;
}

.home-feature-card:nth-child(3) img {
    object-position: 72% 50%;
}

.trust-bar {
    background: #fff;
    border: 1px solid #e5e8ef;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1.25fr 1.1fr 1.1fr 0.9fr 1.08fr;
    height: 57px;
    min-height: 0;
    overflow: hidden;
}

.trust-item {
    align-items: center;
    border-right: 1px solid #e5e8ef;
    color: #14213a;
    display: flex;
    gap: 14px;
    min-width: 0;
    padding: 7px 22px;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item span,
.trust-item small {
    font-size: 0.68rem;
    line-height: 1.25;
}

.trust-item b {
    color: #071326;
}

.trust-google strong {
    color: #4285f4;
    font-size: 1.78rem;
    line-height: 1;
}

.trust-google span b {
    color: #ff9708;
    letter-spacing: 0.04em;
}

.trust-icon {
    border: 2px solid #071326;
    display: inline-block;
    flex: 0 0 auto;
    height: 31px;
    position: relative;
    width: 31px;
}

.trust-shield {
    border-radius: 7px 7px 13px 13px;
}

.trust-shield::after,
.trust-check::after {
    border-bottom: 2px solid #071326;
    border-left: 2px solid #071326;
    content: "";
    height: 8px;
    left: 8px;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 13px;
}

.trust-check {
    border-radius: 50%;
}

.trust-calendar {
    border-radius: 4px;
}

.trust-calendar::before {
    background: #071326;
    content: "";
    height: 2px;
    left: 5px;
    position: absolute;
    top: 9px;
    width: 17px;
}

.trust-calendar::after {
    background:
        linear-gradient(#071326 0 0) 0 0 / 4px 4px no-repeat,
        linear-gradient(#071326 0 0) 7px 0 / 4px 4px no-repeat,
        linear-gradient(#071326 0 0) 14px 0 / 4px 4px no-repeat;
    content: "";
    height: 4px;
    left: 5px;
    position: absolute;
    top: 17px;
    width: 18px;
}

.trust-made .flag-de {
    height: 30px;
    width: 30px;
}

.admin-workspace {
    display: grid;
    gap: 20px;
}

.shop-workspace {
    display: grid;
    gap: 20px;
}

.shop-heading {
    background: var(--color-panel);
    border: 1px solid #d1e7f3;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 9px;
    max-width: none;
    padding: clamp(22px, 4vw, 38px);
}

.shop-heading h1 {
    margin: 0;
    color: var(--color-ink);
    font-size: 2.8rem;
    line-height: 1.05;
    max-width: 780px;
}

.product-list {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
}

.product-item {
    align-items: stretch;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 252, 255, 0.98)),
        #fff;
    border: 1px solid #e6ebf2;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1fr);
    min-height: 245px;
    padding: 22px;
}

.product-item h2 {
    color: var(--color-ink);
    font-size: 1.48rem;
    line-height: 1.12;
    margin: 5px 0 10px;
}

.product-item p {
    color: var(--color-muted);
    margin: 0;
}

.product-meta {
    align-content: center;
    align-self: end;
    border-top: 1px solid #edf1f6;
    display: grid;
    gap: 8px;
    padding-top: 16px;
}

.product-meta strong {
    color: var(--color-ink);
    font-size: 1.32rem;
}

.product-meta span,
.shop-copy {
    color: var(--color-muted);
}

.checkout-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
}

.checkout-form {
    display: grid;
    gap: 15px;
    padding: 18px;
}

.field-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-form label {
    display: grid;
    gap: 6px;
}

.checkout-form fieldset {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0;
}

.checkout-form legend {
    color: var(--color-ink);
    font-weight: 700;
    margin-bottom: 8px;
    padding: 0;
}

.checkout-form legend span {
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 600;
    margin-left: 8px;
    text-transform: uppercase;
}

.checkout-form span {
    color: var(--color-muted);
    font-size: 0.86rem;
}

.checkout-form input,
.checkout-form select {
    background: var(--color-surface);
    border: 1px solid #d9e0ea;
    border-radius: var(--radius);
    color: var(--color-text);
    font: inherit;
    min-width: 0;
    padding: 11px 12px;
    width: 100%;
}

.checkout-form input:focus,
.checkout-form select:focus {
    border-color: var(--color-accent);
    outline: 3px solid rgba(239, 138, 0, 0.18);
}

.checkout-form button {
    border: 0;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffad21, #ef8700);
    box-shadow: 0 8px 22px rgba(239, 138, 0, 0.22);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    padding: 12px 16px;
}

.checkout-form button:hover {
    background: #d97700;
}

.form-errors {
    border: 1px solid #fed7aa;
    border-radius: var(--radius);
    background: #fff7ed;
    color: #9a3412;
    display: grid;
    gap: 8px;
    padding: 12px 14px;
}

.form-errors strong {
    color: #7c2d12;
}

.form-errors ul {
    margin: 0;
    padding-left: 18px;
}

.form-errors li + li {
    margin-top: 4px;
}

.selection-stack {
    display: grid;
    gap: 14px;
}

.choice-group {
    display: grid;
    gap: 8px;
}

.choice-list {
    display: grid;
    gap: 8px;
}

.choice-option {
    align-items: flex-start;
    background: #fff;
    border: 1px solid #dfe6ef;
    border-radius: 12px;
    cursor: pointer;
    display: grid;
    gap: 10px;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 10px 12px;
}

.choice-option:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 18px rgba(7, 19, 38, 0.05);
}

.choice-option input[type="checkbox"],
.choice-option input[type="radio"] {
    accent-color: var(--color-accent);
    background: transparent;
    border: 0;
    height: 16px;
    margin-top: 4px;
    min-width: 16px;
    padding: 0;
    width: 16px;
}

.choice-copy {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.choice-copy strong {
    color: var(--color-ink);
    font-size: 0.95rem;
    font-weight: 700;
}

.choice-copy small {
    color: var(--color-muted);
    font-size: 0.82rem;
}

.summary-stack {
    display: grid;
    gap: 2px;
    justify-items: end;
}

.shop-copy {
    color: var(--color-muted);
    padding: 18px;
}

.admin-heading {
    background:
        linear-gradient(105deg, #020b18 0%, #031225 52%, #05101e 100%);
    border: 1px solid #061225;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(7, 19, 38, 0.14);
    display: grid;
    gap: 6px;
    overflow: hidden;
    padding: clamp(20px, 3vw, 34px);
    position: relative;
}

.admin-heading::before {
    background: #ef8a00;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.admin-heading > * {
    position: relative;
    z-index: 1;
}

.split-heading {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-width: 0;
}

.button-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.admin-heading h1 {
    margin: 0;
    color: #fff;
    font-size: 2.55rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.admin-heading p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    overflow: hidden;
    border: 1px solid #d1e7f3;
    border-radius: 18px;
    background: var(--color-panel);
    box-shadow: var(--shadow-soft);
    padding: 10px;
}

.metric-cell {
    min-width: 0;
    background: var(--color-surface);
    border-radius: 12px;
    padding: 18px;
}

.metric-cell span,
.metric-cell small {
    display: block;
    color: var(--color-muted);
    font-size: 0.86rem;
}

.metric-cell strong {
    display: block;
    margin: 4px 0;
    color: var(--color-ink);
    font-size: 1.7rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.data-panel {
    min-width: 0;
    border: 1px solid #e6ebf2;
    border-radius: 8px;
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fbfcff;
    border-bottom: 1px solid #edf1f6;
    padding: 15px 18px;
}

.panel-heading h2 {
    color: var(--color-ink);
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.2;
}

.compact-heading {
    border-bottom: 0;
    padding: 0 16px 10px;
}

.compact-heading h3 {
    font-size: 0.92rem;
    line-height: 1.2;
    margin: 0;
}

.text-button {
    background: #061225;
    border: 1px solid #061225;
    border-radius: var(--radius);
    color: #fff;
    font-weight: 900;
    padding: 9px 12px;
    text-decoration: none;
    white-space: nowrap;
}

.text-button:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #fff;
}

.filter-bar {
    align-items: end;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    background: transparent;
    padding: 0;
}

.users-toolbar {
    align-items: end;
}

.users-toolbar .filter-bar {
    flex: 1 1 auto;
    grid-template-columns: minmax(180px, 1.25fr) minmax(140px, 0.7fr) minmax(160px, 0.8fr) auto;
    min-width: 0;
}

.filter-bar.admin-list-filter,
.users-toolbar .filter-bar.admin-list-filter {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    margin-bottom: 16px;
    width: 100%;
}

.admin-list-filter label:first-child {
    grid-column: span 2;
}

.admin-list-filter .filter-actions {
    align-self: end;
}

.calendar-filter {
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr) auto;
}

.import-filter {
    grid-template-columns: minmax(150px, 220px) minmax(150px, 220px) auto;
}

.order-filter {
    grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(130px, 0.8fr)) auto;
}

.report-filter {
    grid-template-columns: minmax(150px, 220px) minmax(150px, 220px) auto;
}

.filter-actions {
    align-items: center;
    display: flex;
    gap: 8px;
}

.filter-bar label {
    display: grid;
    gap: 6px;
}

.filter-bar span {
    color: var(--color-muted);
    font-size: 0.86rem;
}

.filter-bar input,
.filter-bar select {
    background: var(--color-surface);
    border: 1px solid #d9e0ea;
    border-radius: var(--radius);
    color: var(--color-text);
    font: inherit;
    min-width: 0;
    padding: 11px 12px;
    width: 100%;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--color-accent);
    outline: 3px solid rgba(239, 138, 0, 0.18);
}

.filter-bar button {
    border: 0;
    border-radius: var(--radius);
    background: #061225;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    padding: 12px 16px;
}

.filter-bar button:hover {
    background: var(--color-accent);
}

.report-status-columns {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 16px;
}

.report-status-list {
    display: grid;
    gap: 8px;
    font-size: 0.86rem;
}

.report-status-row {
    align-items: center;
    border-top: 1px solid #edf1f6;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto minmax(82px, auto);
    padding-top: 8px;
}

.report-status-row span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.report-status-row strong {
    color: var(--color-ink);
}

.report-status-row small {
    color: var(--color-muted);
    text-align: right;
    white-space: nowrap;
}

.compact-empty {
    margin: 0;
    padding: 12px 0 0;
}

.shipment-scan-panel {
    display: grid;
    gap: 18px;
    margin: 42px auto;
    max-width: 760px;
}

.shipment-scan-panel h1 {
    margin: 0;
}

.shipment-scan-panel p {
    color: var(--color-muted);
    margin: 0;
}

.qr-print-page {
    display: grid;
    gap: 18px;
}

.qr-print-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.qr-label-sheet {
    background: #fff;
    border: 1px solid #d9e0ea;
    box-shadow: var(--shadow-soft);
    color: #061225;
    display: grid;
    gap: 22px;
    margin: 0 auto;
    max-width: 860px;
    padding: 28px;
}

.qr-label-header,
.qr-label-grid,
.qr-order-summary {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qr-label-header {
    align-items: end;
    border-bottom: 2px solid #061225;
    padding-bottom: 14px;
}

.qr-label-header h1 {
    font-size: 2.1rem;
    margin: 0;
}

.qr-label-header > strong {
    font-size: 1.2rem;
    justify-self: end;
}

.qr-label-code {
    border: 1px solid #d9e0ea;
    display: grid;
    gap: 8px;
    justify-items: center;
    min-width: 0;
    padding: 18px;
    text-align: center;
}

.qr-label-code h2 {
    margin: 0;
}

.qr-label-code p,
.qr-label-code small {
    color: #516075;
    margin: 0;
    overflow-wrap: anywhere;
}

.qr-code-box svg {
    display: block;
    height: auto;
    max-width: 100%;
    width: 240px;
}

.qr-order-summary {
    border-bottom: 1px solid #d9e0ea;
    border-top: 1px solid #d9e0ea;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px 0;
}

.qr-order-summary div {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.qr-order-summary span {
    color: #516075;
    overflow-wrap: anywhere;
}

.qr-inventory h2 {
    margin: 0 0 10px;
}

.qr-inventory ul {
    columns: 2;
    list-style: none;
    margin: 0;
    padding: 0;
}

.qr-inventory li {
    break-inside: avoid;
    margin: 0 0 8px;
}

.qr-inventory li span {
    border: 1px solid #061225;
    display: inline-block;
    height: 12px;
    margin-right: 8px;
    vertical-align: -1px;
    width: 12px;
}

.qr-inventory small {
    color: #516075;
}

.qr-label-footer {
    border-top: 2px solid #061225;
    font-size: 1.1rem;
    font-weight: 900;
    padding-top: 14px;
    text-align: center;
}

.form-hint {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin: 0 16px 16px;
}

.config-form {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.panel-divider {
    border-top: 1px solid #edf1f6;
}

.config-form label {
    display: grid;
    gap: 6px;
}

.config-form span {
    color: var(--color-muted);
    font-size: 0.86rem;
}

.config-form input,
.config-form select,
.config-form textarea {
    background: var(--color-surface);
    border: 1px solid #d9e0ea;
    border-radius: var(--radius);
    color: var(--color-text);
    font: inherit;
    min-width: 0;
    padding: 10px 11px;
    width: 100%;
}

.config-form textarea {
    min-height: 92px;
    resize: vertical;
}

.config-form input:focus,
.config-form select:focus,
.config-form textarea:focus {
    border-color: var(--color-accent);
    outline: 3px solid rgba(239, 138, 0, 0.18);
}

.config-form button {
    border: 0;
    border-radius: var(--radius);
    background: #061225;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    justify-self: start;
    padding: 11px 14px;
}

.config-form button:hover {
    background: var(--color-accent);
}

.compact-form {
    gap: 8px;
    padding: 0;
}

.compact-form + .compact-form {
    margin-top: 10px;
}

.compact-form input,
.compact-form select {
    padding: 8px 9px;
}

.compact-form button {
    font-size: 0.84rem;
    padding: 8px 10px;
}

.inline-stack {
    display: grid;
    gap: 6px;
    margin-top: 8px;
}

.inline-stack > div {
    align-items: center;
    color: var(--color-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.checkbox-row {
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-row label {
    align-items: center;
    color: var(--color-muted);
    display: flex;
    gap: 8px;
}

.checkbox-row input {
    width: auto;
}

.qr-upload-form .checkbox-row {
    align-items: center;
    color: var(--color-text);
    display: flex;
    flex-wrap: nowrap;
    font-weight: 800;
    gap: 9px;
    justify-content: flex-start;
    justify-self: start;
}

.qr-upload-form .checkbox-row input[type="checkbox"] {
    accent-color: var(--color-accent);
    background: transparent;
    border: 0;
    flex: 0 0 auto;
    height: 17px;
    margin: 0;
    min-width: 17px;
    padding: 0;
    width: 17px;
}

.checkbox-stack {
    align-items: flex-start;
    display: grid;
    gap: 8px;
}

.status-pill {
    background: #fff;
    border: 1px solid #d9e0ea;
    border-radius: 999px;
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    padding: 7px 9px;
    white-space: nowrap;
}

.is-good {
    color: var(--color-good) !important;
}

.is-warn {
    color: var(--color-warn) !important;
}

.is-danger {
    color: var(--color-danger) !important;
}

.is-neutral {
    color: var(--color-muted) !important;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}

.table-scroll {
    overflow-x: auto;
}

.data-table th,
.data-table td {
    border-bottom: 1px solid #edf1f6;
    padding: 11px 16px;
    text-align: left;
    vertical-align: top;
}

.data-table th {
    background: #fbfcff;
    color: #516075;
    font-weight: 800;
}

.data-table td {
    color: var(--color-ink);
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.data-panel .data-table td {
    text-align: left;
}

.data-panel .data-table tr:hover td {
    background: #fff8ef;
}

.order-table th,
.order-table td {
    text-align: left;
}

.order-table td:last-child {
    text-align: right;
}

.row-title {
    color: var(--color-ink);
    display: block;
    font-weight: 700;
    text-decoration: none;
}

.row-title:hover {
    color: var(--color-accent);
}

.data-table small,
.status-stack small,
.stack-list small {
    color: var(--color-muted);
    display: block;
    font-size: 0.8rem;
    margin-top: 2px;
}

.role-settings-form {
    display: grid;
    gap: 16px;
    padding-bottom: 18px;
}

.role-settings-table td:nth-child(3) {
    width: 260px;
}

.role-settings-table td:last-child {
    width: 310px;
}

.role-toggle {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    gap: 10px;
    font-weight: 800;
    line-height: 1.25;
}

.role-toggle input[type="checkbox"] {
    accent-color: var(--color-accent);
    flex: 0 0 auto;
    height: 18px;
    width: 18px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    padding: 0 18px;
}

.role-enqueue-form {
    margin-top: 8px;
}

.table-action-form button:disabled {
    cursor: not-allowed;
    opacity: 0.48;
}

.amount-cell {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.status-stack {
    display: grid;
    gap: 2px;
}

.stack-list {
    display: grid;
    gap: 1px;
    background: #edf1f6;
}

.stack-list div {
    background: var(--color-surface);
    display: grid;
    gap: 3px;
    padding: 12px 16px;
}

.stack-list strong {
    color: var(--color-ink);
}

.stack-list span {
    color: var(--color-text);
    overflow-wrap: anywhere;
}

.action-list {
    display: grid;
    gap: 1px;
    background: #edf1f6;
}

.action-form {
    align-items: end;
    background: #fbfcff;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr) auto;
    padding: 14px 16px;
}

.action-form label {
    display: grid;
    gap: 6px;
}

.action-form span {
    color: var(--color-muted);
    font-size: 0.86rem;
}

.action-form input,
.action-form select {
    background: var(--color-surface);
    border: 1px solid #d9e0ea;
    border-radius: var(--radius);
    color: var(--color-text);
    font: inherit;
    min-width: 0;
    padding: 10px 11px;
    width: 100%;
}

.action-form input:focus,
.action-form select:focus {
    border-color: var(--color-accent);
    outline: 3px solid rgba(239, 138, 0, 0.18);
}

.action-form button {
    border: 0;
    border-radius: var(--radius);
    background: #061225;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    padding: 11px 14px;
}

.action-form button:hover {
    background: var(--color-accent);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekday,
.calendar-day {
    border-bottom: 1px solid #edf1f6;
    border-right: 1px solid #edf1f6;
    min-height: 78px;
    padding: 10px;
}

.calendar-weekday {
    background: #fbfcff;
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 700;
    min-height: auto;
    text-transform: uppercase;
}

.calendar-day {
    background: var(--color-surface);
    display: grid;
    gap: 8px;
}

.calendar-day strong {
    color: var(--color-ink);
    font-size: 1rem;
    line-height: 1;
}

.calendar-day span {
    align-self: end;
    color: var(--color-muted);
    font-size: 0.82rem;
}

.calendar-day.has-bookings {
    background: #fff8ef;
}

.calendar-day.has-bookings span {
    color: var(--color-accent);
    font-weight: 700;
}

.calendar-day.is-empty {
    background: #f8fafc;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
    border-bottom: 0;
}

.data-table.compact th,
.data-table.compact td {
    padding: 9px 14px;
}

.warning-list {
    display: grid;
    gap: 1px;
    background: #edf1f6;
}

.warning-list div,
.empty-state {
    margin: 0;
    background: #fffaf0;
    color: #7c2d12;
    padding: 12px 16px;
}

.empty-state {
    background: var(--color-surface);
    color: var(--color-muted);
}

.gallery-access-page,
.customer-gallery-page {
    display: grid;
    gap: 22px;
}

.gallery-access-page {
    min-height: min(620px, calc(100vh - 220px));
    place-items: center;
}

.gallery-access-panel {
    background: var(--color-surface);
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
    overflow: hidden;
    width: min(880px, 100%);
}

.gallery-access-copy {
    background: var(--color-panel);
    border-right: 1px solid #d1e7f3;
    padding: clamp(24px, 4vw, 42px);
}

.gallery-access-copy h1 {
    color: var(--color-ink);
    font-size: 2.85rem;
    line-height: 1.02;
    margin: 4px 0 14px;
    overflow-wrap: anywhere;
}

.gallery-access-copy p:last-child {
    color: var(--color-muted);
    margin: 0;
    max-width: 430px;
}

.gallery-code-form {
    align-content: center;
    display: grid;
    gap: 14px;
    padding: clamp(22px, 4vw, 34px);
}

.gallery-code-form label {
    display: grid;
    gap: 7px;
}

.gallery-code-form span {
    color: var(--color-muted);
    font-size: 0.86rem;
}

.gallery-code-form input {
    border: 1px solid #d9e0ea;
    border-radius: var(--radius);
    color: var(--color-text);
    font: inherit;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 1rem;
    letter-spacing: 0;
    min-width: 0;
    padding: 13px 12px;
    text-transform: uppercase;
    width: 100%;
}

.gallery-code-form input:focus {
    border-color: var(--color-accent);
    outline: 3px solid rgba(239, 138, 0, 0.18);
}

.gallery-code-form button {
    background: #061225;
    border: 0;
    border-radius: var(--radius);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    padding: 13px 16px;
}

.gallery-code-form button:hover {
    background: var(--color-accent);
}

.gallery-asset-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-asset-card {
    background: var(--color-surface);
    border: 1px solid #e6ebf2;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(7, 19, 38, 0.05);
    display: grid;
    gap: 0;
    min-width: 0;
    overflow: hidden;
}

.gallery-asset-preview {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: var(--color-panel);
    border-bottom: 1px solid #edf1f6;
    color: var(--color-accent-strong);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.gallery-asset-preview img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.gallery-asset-meta {
    display: grid;
    gap: 3px;
    padding: 13px 14px 15px;
}

.gallery-asset-meta strong,
.gallery-asset-meta span,
.gallery-asset-meta small {
    min-width: 0;
    overflow-wrap: anywhere;
}

.gallery-asset-meta strong {
    color: var(--color-ink);
    line-height: 1.25;
}

.gallery-asset-meta span,
.gallery-asset-meta small {
    color: var(--color-muted);
    font-size: 0.84rem;
}

.gallery-asset-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.gallery-asset-actions a {
    border: 1px solid #d9e0ea;
    border-radius: var(--radius);
    color: var(--color-text);
    font-size: 0.84rem;
    font-weight: 700;
    padding: 7px 9px;
    text-decoration: none;
}

.gallery-asset-actions a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.marketing-page {
    display: grid;
    gap: 22px;
}

.marketing-hero {
    align-items: stretch;
    background: var(--color-panel);
    border: 1px solid #d1e7f3;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    overflow: hidden;
    padding: clamp(24px, 4vw, 42px);
}

.marketing-hero-copy {
    align-content: center;
    display: grid;
    gap: 16px;
    min-width: 0;
}

.marketing-hero h1 {
    color: var(--color-ink);
    font-size: 3rem;
    line-height: 1.04;
    margin: 0;
    max-width: 820px;
    overflow-wrap: anywhere;
}

.marketing-hero-copy > p:not(.eyebrow),
.marketing-section-heading > p:not(.eyebrow),
.marketing-cta-band p {
    color: var(--color-muted);
    font-size: 1.04rem;
    margin: 0;
    max-width: 760px;
}

.marketing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.marketing-visual {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 248, 239, 0.88)),
        #fff;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    margin: 0;
    min-height: 320px;
    overflow: hidden;
}

.marketing-visual img {
    display: block;
    height: 100%;
    max-height: 360px;
    object-fit: contain;
    padding: 14px;
    width: 100%;
}

.marketing-stats {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
}

.marketing-stats div {
    background: #fff;
    display: grid;
    gap: 3px;
    padding: 18px;
}

.marketing-stats strong {
    color: var(--color-ink);
    font-size: 1.45rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.marketing-stats span {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.marketing-section {
    display: grid;
    gap: 18px;
    padding: 12px 0;
}

.marketing-section-heading {
    display: grid;
    gap: 8px;
    max-width: 850px;
}

.marketing-section-heading h2,
.marketing-cta-band h2 {
    color: var(--color-ink);
    font-size: 2rem;
    line-height: 1.08;
    margin: 0;
}

.marketing-card-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.marketing-card,
.marketing-steps li,
.marketing-faq-list details {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(7, 19, 38, 0.05);
}

.marketing-card {
    display: grid;
    gap: 8px;
    min-height: 170px;
    padding: 18px;
}

.marketing-card h3,
.marketing-steps strong {
    color: var(--color-ink);
    font-size: 1.08rem;
    line-height: 1.2;
    margin: 0;
}

.marketing-card p,
.marketing-steps span,
.marketing-faq-list p {
    color: var(--color-muted);
    margin: 0;
}

.marketing-steps {
    counter-reset: marketing-step;
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.marketing-steps li {
    counter-increment: marketing-step;
    display: grid;
    gap: 6px;
    min-height: 112px;
    padding: 18px 18px 18px 74px;
    position: relative;
}

.marketing-steps li::before {
    align-items: center;
    background: #061225;
    border-radius: 50%;
    color: #fff;
    content: counter(marketing-step);
    display: flex;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    left: 18px;
    position: absolute;
    top: 18px;
    width: 38px;
}

.marketing-split-list {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1px;
    overflow: hidden;
}

.marketing-split-list span {
    align-items: center;
    color: var(--color-ink);
    display: flex;
    font-weight: 800;
    gap: 10px;
    padding: 15px 18px;
}

.marketing-split-list span::before {
    border: 2px solid #ef8a00;
    border-radius: 50%;
    content: "";
    flex: 0 0 auto;
    height: 12px;
    width: 12px;
}

.marketing-faq-list {
    display: grid;
    gap: 10px;
}

.marketing-faq-list details {
    padding: 16px 18px;
}

.marketing-faq-list summary {
    color: var(--color-ink);
    cursor: pointer;
    font-weight: 900;
}

.marketing-faq-list p {
    margin-top: 10px;
}

.marketing-cta-band {
    align-items: center;
    background: #061225;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    color: #fff;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: clamp(22px, 4vw, 36px);
}

.marketing-cta-band h2,
.marketing-cta-band p,
.marketing-cta-band .eyebrow {
    color: #fff;
}

.marketing-cta-band .eyebrow {
    color: #ffad21;
    margin-bottom: 8px;
}

.fotobox-rental {
    gap: 24px;
}

.fotobox-rental-hero {
    background:
        radial-gradient(circle at 84% 17%, rgba(239, 138, 0, 0.28), transparent 24%),
        radial-gradient(circle at 66% 86%, rgba(255, 195, 70, 0.15), transparent 28%),
        linear-gradient(110deg, #020b18 0%, #061225 52%, #07101c 100%);
    border: 0;
    color: #fff;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    min-height: 510px;
}

.fotobox-rental-hero .eyebrow,
.fotobox-rental-hero h1,
.fotobox-rental-hero p {
    color: #fff;
}

.fotobox-rental-hero .eyebrow {
    color: #ffad21;
}

.fotobox-rental-hero .marketing-hero-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
}

.fotobox-product-visual {
    align-items: flex-end;
    background: transparent;
    border: 0;
    border-radius: 0;
    min-height: 430px;
    overflow: visible;
}

.fotobox-product-visual img {
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.45));
    height: auto;
    max-height: 500px;
    max-width: 92%;
    object-fit: contain;
    object-position: center bottom;
    padding: 10px 10px 0;
    width: auto;
}

.fotobox-rental-stats strong {
    color: #ef8a00;
}

.fotobox-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fotobox-feature-card {
    align-content: start;
    min-height: 250px;
}

.fotobox-feature-card img {
    aspect-ratio: 300 / 143;
    display: block;
    margin: 0 0 8px;
    object-fit: contain;
    width: 100%;
}

.fotobox-package-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(239, 138, 0, 0.16), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 239, 0.9)),
        #fff;
    grid-template-columns: minmax(270px, 0.5fr) minmax(0, 1fr);
    overflow: hidden;
    position: relative;
}

.fotobox-package-section,
.fotobox-contact-section,
.fotobox-cloud-section {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 239, 0.88)),
        #fff;
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 22px;
    padding: clamp(22px, 4vw, 34px);
}

.fotobox-cloud-section {
    background:
        radial-gradient(circle at 86% 18%, rgba(239, 138, 0, 0.13), transparent 22%),
        #fff;
}

.fotobox-package-copy {
    align-content: center;
}

.fotobox-package-copy > p:not(.eyebrow) {
    max-width: 440px;
}

.fotobox-package-copy .home-cta {
    justify-self: start;
    margin-top: 8px;
}

.fotobox-included-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fotobox-included-item {
    align-content: start;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(230, 235, 242, 0.95);
    border-radius: 12px;
    display: grid;
    gap: 6px;
    min-height: 132px;
    padding: 16px 16px 16px 54px;
    position: relative;
}

.fotobox-included-item h3 {
    color: var(--color-ink);
    font-size: 1rem;
    line-height: 1.18;
    margin: 0;
}

.fotobox-included-item p {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin: 0;
}

.fotobox-included-check {
    align-items: center;
    background: #061225;
    border-radius: 50%;
    color: #ffad21;
    display: flex;
    height: 28px;
    justify-content: center;
    left: 16px;
    position: absolute;
    top: 16px;
    width: 28px;
}

.fotobox-included-check::before {
    content: "✓";
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
}

.fotobox-contact-section {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
    overflow: visible;
    position: relative;
}

.fotobox-contact-section::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(120deg, rgba(255, 173, 33, 0.1), transparent 36%),
        linear-gradient(135deg, #061225 0%, #071a34 58%, #101827 100%);
    background-size: 28px 28px;
    content: "";
    inset-block: 0;
    left: 50%;
    margin-left: -50vw;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    width: 100vw;
    z-index: 0;
}

.fotobox-contact-section > * {
    position: relative;
    z-index: 1;
}

.fotobox-contact-section .eyebrow,
.fotobox-contact-section h2,
.fotobox-contact-copy > p:not(.eyebrow) {
    color: #fff;
}

.fotobox-contact-section .eyebrow {
    color: #ffad21;
}

.fotobox-contact-actions {
    display: grid;
    gap: 12px;
}

.fotobox-contact-card {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: #fff;
    display: grid;
    gap: 4px 14px;
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 82px;
    padding: 14px 16px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fotobox-contact-card:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 173, 33, 0.62);
    transform: translateY(-1px);
}

.fotobox-contact-icon {
    align-items: center;
    background: #ffad21;
    border-radius: 50%;
    color: #061225;
    display: flex;
    grid-row: span 3;
    height: 46px;
    justify-content: center;
    position: relative;
    width: 46px;
}

.fotobox-contact-icon::before,
.fotobox-contact-icon::after {
    content: "";
    position: absolute;
}

.fotobox-contact-phone .fotobox-contact-icon::before {
    border: 3px solid currentColor;
    border-left-color: transparent;
    border-top-color: transparent;
    border-radius: 50%;
    height: 18px;
    transform: rotate(18deg);
    width: 18px;
}

.fotobox-contact-whatsapp .fotobox-contact-icon::before {
    border: 3px solid currentColor;
    border-radius: 50%;
    height: 19px;
    width: 19px;
}

.fotobox-contact-whatsapp .fotobox-contact-icon::after {
    border-bottom: 6px solid currentColor;
    border-left: 3px solid transparent;
    bottom: 10px;
    height: 0;
    left: 14px;
    transform: rotate(22deg);
    width: 0;
}

.fotobox-contact-mail .fotobox-contact-icon::before {
    border: 3px solid currentColor;
    border-radius: 4px;
    height: 17px;
    width: 23px;
}

.fotobox-contact-mail .fotobox-contact-icon::after {
    border-bottom: 3px solid currentColor;
    border-right: 3px solid currentColor;
    height: 10px;
    top: 14px;
    transform: rotate(45deg);
    width: 10px;
}

.fotobox-contact-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 800;
}

.fotobox-contact-card strong {
    color: #fff;
    font-size: 1.12rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.fotobox-contact-card small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    line-height: 1.28;
}

.fotobox-hunt-section {
    background: #f6f7fb;
    border: 0;
    border-radius: 0;
    box-shadow: inset 0 1px 0 rgba(7, 19, 38, 0.06), inset 0 -1px 0 rgba(7, 19, 38, 0.06);
    margin-left: calc(50% - 50vw);
    min-height: clamp(820px, 72vw, 1240px);
    overflow: hidden;
    padding: clamp(34px, 5vw, 72px);
    position: relative;
    width: 100vw;
}

.fotobox-hunt-section::before {
    content: "";
    display: none;
}

.fotobox-hunt-section::after {
    content: "";
    display: none;
}

.fotobox-hunt-section > * {
    position: relative;
    z-index: 1;
}

.fotobox-hunt-heading {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: min(460px, 36vw);
    padding: 0;
    position: absolute;
    left: clamp(28px, 4vw, 64px);
    right: auto;
    text-align: left;
    top: clamp(34px, 5vw, 70px);
    transform: none;
    z-index: 4;
}

.fotobox-hunt-map {
    aspect-ratio: 1200 / 560;
    height: auto;
    left: 50%;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    right: auto;
    top: clamp(150px, 15vw, 210px);
    transform: translateX(-50%);
    width: calc(100vw - clamp(28px, 4vw, 64px));
    z-index: 1;
}

.fotobox-hunt-map svg {
    display: block;
    height: 100%;
    width: 100%;
}

.fotobox-hunt-route,
.fotobox-hunt-route-glow,
.fotobox-hunt-route-mask {
    fill: none;
    stroke-linecap: round;
}

.fotobox-hunt-route {
    stroke: rgba(92, 58, 24, 0.68);
    stroke-dasharray: 8 15;
    stroke-width: 5;
}

.fotobox-hunt-route-glow {
    stroke: rgba(255, 255, 255, 0.34);
    stroke-width: 28;
}

.fotobox-hunt-route-mask {
    animation: huntRouteDraw 8s ease-out forwards;
    stroke: #fff;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    stroke-width: 40;
}

.fotobox-hunt-map-point {
    --hunt-arrive: 0s;
    animation: huntRevealPoint 0.42s ease-out var(--hunt-arrive) both;
    opacity: 0;
    transform: scale(0.72);
    transform-box: fill-box;
    transform-origin: center;
}

.fotobox-hunt-map-point:nth-child(1) {
    --hunt-arrive: 0.1s;
}

.fotobox-hunt-map-point:nth-child(2) {
    --hunt-arrive: 1.8s;
}

.fotobox-hunt-map-point:nth-child(3) {
    --hunt-arrive: 3.8s;
}

.fotobox-hunt-map-point:nth-child(4) {
    --hunt-arrive: 5.7s;
}

.fotobox-hunt-map-point:nth-child(5) {
    --hunt-arrive: 7.45s;
}

.fotobox-hunt-map-point circle {
    fill: #061225;
    filter: drop-shadow(0 8px 10px rgba(80, 48, 18, 0.22));
    stroke: #ffad21;
    stroke-width: 7;
}

.fotobox-hunt-map-point text {
    dominant-baseline: central;
    fill: #fff;
    font-size: 27px;
    font-weight: 900;
    pointer-events: none;
    text-anchor: middle;
}

.fotobox-hunt-map-points {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fotobox-hunt-map-points text {
    stroke: #061225;
    stroke-linejoin: round;
    stroke-width: 1px;
    paint-order: stroke fill;
}

.fotobox-hunt-svg-card {
    animation: huntRevealCardSvg 0.56s ease-out var(--hunt-arrive) both;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.fotobox-hunt-svg-card-inner {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(230, 235, 242, 0.94);
    border-radius: 14px;
    box-shadow: 0 16px 30px rgba(7, 19, 38, 0.08);
    box-sizing: border-box;
    color: var(--color-text);
    display: grid;
    gap: 6px;
    height: 100%;
    overflow: hidden;
    padding: 14px 15px;
    width: 100%;
}

.fotobox-hunt-svg-card-inner span {
    color: #ef8a00;
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.fotobox-hunt-svg-card-inner strong {
    color: var(--color-ink);
    font-size: 1.03rem;
    line-height: 1.14;
}

.fotobox-hunt-svg-card-inner p {
    color: var(--color-muted);
    font-size: 0.84rem;
    line-height: 1.27;
    margin: 0;
}

.fotobox-hunt-trail {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.fotobox-hunt-trail::before {
    content: "";
    display: none;
}

.fotobox-hunt-step {
    --hunt-arrive: 0s;
    --hunt-rotate: 0deg;
    animation: huntRevealCard 0.56s ease-out var(--hunt-arrive) both;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(230, 235, 242, 0.94);
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(7, 19, 38, 0.08);
    min-height: 0;
    padding: 16px 16px 18px;
    position: relative;
    transform: rotate(var(--hunt-rotate));
    transform-origin: top center;
    width: auto;
    z-index: 1;
}

.fotobox-hunt-step:nth-child(even) {
    margin-top: 0;
}

.fotobox-hunt-step::before {
    display: none;
}

.fotobox-hunt-step::after {
    display: none;
}

.fotobox-hunt-step > * {
    position: relative;
    z-index: 2;
}

.fotobox-hunt-step:hover {
    transform: translateY(-3px) rotate(var(--hunt-rotate));
}

.fotobox-hunt-clue {
    color: #ef8a00;
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.fotobox-hunt-step strong {
    display: block;
    margin-bottom: 8px;
}

.fotobox-hunt-step > span:not(.fotobox-hunt-clue) {
    font-size: 0.9rem;
    line-height: 1.36;
}

@keyframes huntRouteDraw {
    0% {
        stroke-dashoffset: 100;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes huntTrailDrawVertical {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes huntRevealPoint {
    from {
        opacity: 0;
        transform: scale(0.72);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes huntRevealCardSvg {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes huntRevealCard {
    from {
        opacity: 0;
        transform: translateY(18px) rotate(var(--hunt-rotate, 0deg));
    }

    to {
        opacity: 1;
        transform: translateY(0) rotate(var(--hunt-rotate, 0deg));
    }
}

.fotobox-check-section {
    background:
        radial-gradient(circle at 86% 18%, rgba(239, 138, 0, 0.24), transparent 24%),
        linear-gradient(135deg, #020b18 0%, #061225 58%, #07101c 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 22px 48px rgba(7, 19, 38, 0.16);
    padding: clamp(22px, 4vw, 34px);
}

.fotobox-check-section .eyebrow {
    color: #ffad21;
}

.fotobox-check-section h2,
.fotobox-check-section .marketing-section-heading > p:not(.eyebrow) {
    color: #fff;
}

.fotobox-check-section .marketing-section-heading > p:not(.eyebrow) {
    opacity: 0.78;
}

.fotobox-check-frame {
    background: #061225;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.fotobox-check-frame iframe {
    border: 0;
    display: block;
    min-height: 340px;
    width: 100%;
}

.fotobox-review-section {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    padding: clamp(220px, 24vw, 360px) 0 clamp(34px, 5vw, 52px);
    position: relative;
}

.fotobox-review-section::before {
    background: url("/assets/img/fotobox-mieten/kunden-rezensionen.jpg") center top / cover;
    content: "";
    inset-block: 0;
    left: 50%;
    margin-left: -50vw;
    pointer-events: none;
    position: absolute;
    width: 100vw;
    z-index: 0;
}

.fotobox-review-section > * {
    position: relative;
    z-index: 1;
}

.fotobox-review-section .marketing-section-heading {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(8, 22, 42, 0.14);
    max-width: 780px;
    padding: 18px;
}

.fotobox-review-section h2,
.fotobox-review-section .marketing-section-heading > p:not(.eyebrow) {
    color: var(--color-ink);
}

.fotobox-review-section .eyebrow,
.fotobox-review-stars {
    color: #ffad21;
}

.fotobox-review-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fotobox-review-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 12px;
    display: grid;
    gap: 10px;
    min-height: 188px;
    padding: 18px;
}

.fotobox-review-card p {
    color: var(--color-text);
    margin: 0;
}

.fotobox-review-card strong {
    color: var(--color-ink);
}

.fotobox-review-stars {
    font-size: 1rem;
    letter-spacing: 0.06em;
    line-height: 1;
}

@media (max-width: 1120px) {
    .home-header {
        grid-template-columns: minmax(360px, 1fr) auto;
    }

    .home-nav {
        gap: 18px;
    }

    .hero-copy {
        width: 50%;
    }

    .hero-panel-right .hero-copy {
        width: 54%;
    }

    .photobox-hero {
        height: min(438px, calc(100% + 38px));
        left: calc(50% - 4px);
        top: 12px;
    }

    .gallery-hero {
        height: 176px;
        right: -24px;
        width: auto;
    }

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

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

    .trust-item {
        border-bottom: 1px solid #e5e8ef;
    }

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

    .fotobox-rental-hero,
    .fotobox-package-section,
    .fotobox-contact-section {
        grid-template-columns: 1fr;
    }

    .fotobox-product-visual {
        min-height: 360px;
    }

    .fotobox-included-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fotobox-hunt-section {
        min-height: 0;
        padding-inline: clamp(24px, 4vw, 52px);
    }

    .fotobox-hunt-heading {
        left: auto;
        margin-bottom: 24px;
        max-width: min(680px, 100%);
        position: relative;
        top: auto;
    }

    .fotobox-hunt-map {
        display: none;
    }

    .fotobox-hunt-trail {
        aspect-ratio: auto;
        clip: auto;
        clip-path: none;
        display: grid;
        gap: 16px;
        grid-template-columns: 1fr;
        height: auto;
        inset: auto;
        left: auto;
        margin: 0;
        max-width: 820px;
        overflow: visible;
        padding-top: 18px;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        white-space: normal;
        width: 100%;
    }

    .fotobox-hunt-trail::before {
        animation: huntTrailDrawVertical 8s ease-out forwards;
        background: repeating-linear-gradient(180deg, #7c4b1f 0 14px, transparent 14px 27px);
        bottom: auto;
        display: block;
        height: calc(100% - 24px);
        left: 35px;
        opacity: 0.5;
        position: absolute;
        right: auto;
        top: 24px;
        transform: scaleY(0);
        transform-origin: top;
        width: 3px;
    }

    .fotobox-hunt-trail .fotobox-hunt-step,
    .fotobox-hunt-trail .fotobox-hunt-step:nth-child(even) {
        --hunt-rotate: 0deg;
        left: auto;
        margin-top: 0;
        min-height: auto;
        padding: 18px 16px 18px 76px;
        position: relative;
        right: auto;
        top: auto;
        width: auto;
    }

    .fotobox-hunt-trail .fotobox-hunt-step::before {
        align-items: center;
        animation: none;
        background: #061225;
        border: 4px solid #ffad21;
        border-radius: 50%;
        box-shadow: 0 0 0 7px rgba(255, 173, 33, 0.15);
        color: #fff;
        content: counter(marketing-step);
        display: flex;
        font-size: 0.95rem;
        font-weight: 900;
        height: 44px;
        justify-content: center;
        left: 16px;
        position: absolute;
        top: 18px;
        width: 44px;
        z-index: 2;
    }

    .fotobox-hunt-trail .fotobox-hunt-step::after {
        background: rgba(255, 173, 33, 0.18);
        border-radius: 50%;
        content: "";
        display: block;
        height: 58px;
        left: 9px;
        position: absolute;
        top: 11px;
        width: 58px;
        z-index: 1;
    }

    .fotobox-review-grid {
        grid-template-columns: 1fr;
    }

    .site-header-admin .site-header-inner {
        align-items: start;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .site-header-admin .site-menu-toggle {
        display: inline-flex;
    }

    .site-header-admin .site-menu {
        background: #fff;
        border: 1px solid #e6ebf2;
        border-radius: 16px;
        box-shadow: var(--shadow-soft);
        display: grid;
        gap: 12px;
        grid-column: 1 / -1;
        padding: 12px;
        width: 100%;
    }

    .js .site-header-admin:not(.is-menu-open) .site-menu {
        display: none;
    }

    .site-header-admin .site-nav {
        display: grid;
        gap: 6px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        width: 100%;
    }

    .site-header-admin .site-nav a {
        min-height: 40px;
        padding: 12px;
        white-space: normal;
    }

    .site-header-admin .site-actions {
        border-top: 1px solid #edf1f6;
        justify-content: space-between;
        padding-top: 12px;
        width: 100%;
    }

    .filter-bar,
    .calendar-filter,
    .import-filter,
    .order-filter,
    .report-filter,
    .action-form {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .filter-actions {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .fotobox-hunt-section {
        min-height: 0;
        padding: 28px 15px;
    }

    .fotobox-hunt-heading {
        left: auto;
        max-width: none;
        margin-bottom: 18px;
        position: relative;
        top: auto;
        transform: none;
    }

    .fotobox-hunt-map {
        display: none;
    }

    .fotobox-hunt-trail {
        aspect-ratio: auto;
        clip: auto;
        clip-path: none;
        display: grid;
        gap: 14px;
        grid-template-columns: 1fr;
        height: auto;
        inset: auto;
        left: auto;
        margin: 0;
        overflow: visible;
        padding-top: 18px;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        white-space: normal;
        width: auto;
    }

    .fotobox-hunt-trail::before {
        animation: huntTrailDrawVertical 8s ease-out forwards;
        background: repeating-linear-gradient(180deg, #7c4b1f 0 14px, transparent 14px 27px);
        bottom: auto;
        display: block;
        height: calc(100% - 24px);
        left: 35px;
        opacity: 0.5;
        position: absolute;
        right: auto;
        top: 24px;
        transform: scaleY(0);
        transform-origin: top;
        width: 3px;
    }

    .fotobox-hunt-trail .fotobox-hunt-step,
    .fotobox-hunt-trail .fotobox-hunt-step:nth-child(even) {
        --hunt-rotate: 0deg;
        left: auto;
        margin-top: 0;
        min-height: auto;
        padding: 18px 16px 18px 76px;
        position: relative;
        right: auto;
        top: auto;
        width: auto;
    }

    .fotobox-hunt-trail .fotobox-hunt-step::before {
        align-items: center;
        animation: none;
        background: #061225;
        border: 4px solid #ffad21;
        border-radius: 50%;
        box-shadow: 0 0 0 7px rgba(255, 173, 33, 0.15);
        color: #fff;
        content: counter(marketing-step);
        display: flex;
        font-size: 0.95rem;
        font-weight: 900;
        height: 44px;
        justify-content: center;
        left: 16px;
        position: absolute;
        top: 18px;
        width: 44px;
        z-index: 2;
    }

    .fotobox-hunt-trail .fotobox-hunt-step::after {
        background: rgba(255, 173, 33, 0.18);
        border-radius: 50%;
        content: "";
        display: block;
        height: 58px;
        left: 9px;
        position: absolute;
        top: 11px;
        width: 58px;
        z-index: 1;
    }
}

@media (max-width: 840px) {
    .dashboard-hero,
    .dashboard-workbench {
        grid-template-columns: 1fr;
    }

    .dashboard-hero {
        min-height: auto;
        padding: 26px;
    }

    .dashboard-stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-stat-strip article:nth-child(2) {
        border-right: 0;
    }

    .dashboard-stat-strip article:nth-child(-n + 2) {
        border-bottom: 1px solid #e5e8ef;
    }

    .qr-management-grid {
        grid-template-columns: 1fr;
    }

    .home-page {
        padding: 14px;
    }

    .home-header {
        align-items: start;
        gap: 14px;
        grid-template-areas:
            "brand toggle"
            "menu menu";
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .home-brand {
        padding-left: 0;
    }

    .home-menu-toggle {
        display: inline-flex;
    }

    .home-menu {
        background: #fff;
        border: 1px solid #e6ebf2;
        border-radius: 16px;
        box-shadow: var(--shadow-soft);
        display: grid;
        gap: 14px;
        grid-area: menu;
        padding: 14px;
        width: 100%;
    }

    .js .home-header:not(.is-menu-open) .home-menu {
        display: none;
    }

    .home-top-actions,
    .home-nav,
    .home-cta-row {
        grid-area: auto;
        justify-self: stretch;
    }

    .home-top-actions {
        justify-content: space-between;
    }

    .home-cta-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-nav {
        display: grid;
        gap: 4px;
        overflow: visible;
        padding: 0;
    }

    .home-nav a {
        border-radius: var(--radius);
        padding: 12px;
    }

    .home-nav a.is-active {
        background: #fff8ef;
        color: #ef8a00;
    }

    .home-nav a.is-active::after {
        display: none;
    }

    .site-header-public .site-header-inner {
        align-items: start;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .site-header-public .site-menu-toggle {
        display: inline-flex;
    }

    .site-header-public .site-menu {
        background: #fff;
        border: 1px solid #e6ebf2;
        border-radius: 16px;
        box-shadow: var(--shadow-soft);
        display: grid;
        gap: 12px;
        grid-column: 1 / -1;
        padding: 12px;
        width: 100%;
    }

    .js .site-header-public:not(.is-menu-open) .site-menu {
        display: none;
    }

    .site-header-public .site-nav {
        display: grid;
        gap: 6px;
        justify-content: stretch;
        width: 100%;
    }

    .site-header-public .site-nav a {
        min-height: 40px;
        padding: 12px;
        white-space: normal;
    }

    .site-header-public .site-actions {
        border-top: 1px solid #edf1f6;
        justify-content: stretch;
        padding-top: 12px;
        width: 100%;
    }

    .site-header-public .site-action-button {
        width: 100%;
    }

    .marketing-hero {
        grid-template-columns: 1fr;
    }

    .marketing-hero h1 {
        font-size: 2.35rem;
    }

    .marketing-visual {
        min-height: 260px;
    }

    .fotobox-product-visual img {
        max-height: 420px;
    }

    .marketing-stats,
    .marketing-cta-band {
        grid-template-columns: 1fr;
    }

    .marketing-cta-band .home-cta {
        justify-self: start;
    }

    .hero-grid {
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .hero-and {
        display: none;
    }

    .hero-panel {
        --hero-y-padding: 28px;
        min-height: 405px;
    }

    .hero-copy,
    .hero-panel-right .hero-copy {
        padding-block: var(--hero-y-padding);
        padding-inline: 28px;
        width: 50%;
    }

    .photobox-hero {
        height: min(472px, calc(100% + 42px));
        left: calc(50% + 2px);
        top: 10px;
    }

    .gallery-hero {
        bottom: auto;
        height: 248px;
        right: 20px;
        top: 82px;
        width: auto;
    }

    .trust-bar {
        height: auto;
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;
    }

    .split-heading,
    .filter-bar,
    .calendar-filter,
    .import-filter,
    .order-filter,
    .report-filter,
    .action-form {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .auth-shell {
        grid-template-columns: 1fr;
        margin-block: 18px;
        min-height: auto;
    }

    .auth-brand-panel {
        border-radius: 8px 8px 0 0;
        min-height: 260px;
    }

    .auth-panel {
        border-left: 1px solid #e6ebf2;
        border-radius: 0 0 8px 8px;
    }

    .section-heading-row,
    .users-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .users-toolbar .filter-bar {
        grid-template-columns: 1fr;
    }

    .admin-list-filter label:first-child {
        grid-column: auto;
    }

    .filter-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .split-heading {
        flex-direction: column;
        gap: 14px;
    }

    .button-row {
        justify-content: flex-start;
    }

    .metric-strip,
    .admin-grid,
    .report-status-columns,
    .qr-label-header,
    .qr-label-grid,
    .qr-order-summary,
    .checkout-grid,
    .product-item,
    .field-grid,
    .gallery-access-panel,
    .photo-detail-layout {
        grid-template-columns: 1fr;
    }

    .gallery-access-copy {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .data-table th,
    .data-table td {
        padding: 10px 12px;
    }

    .role-settings-table td:nth-child(3),
    .role-settings-table td:last-child {
        width: auto;
    }

    .role-toggle {
        align-items: flex-start;
    }

    .shop-heading h1 {
        font-size: 2rem;
    }

    .intro h1,
    .admin-heading h1,
    .gallery-access-copy h1 {
        font-size: 2rem;
    }

    .metric-cell strong {
        font-size: 1.35rem;
    }
}

@media print {
    .site-header,
    .site-footer,
    .qr-print-actions {
        display: none !important;
    }

    .site-shell,
    .main {
        width: 100%;
    }

    .main {
        padding: 0;
    }

    .qr-label-sheet {
        border: 0;
        box-shadow: none;
        max-width: none;
        padding: 0;
    }
}

@media (max-width: 620px) {
    .dashboard-hero {
        gap: 20px;
        padding: 22px;
    }

    .dashboard-hero h1 {
        font-size: 1.84rem;
    }

    .dashboard-hero-copy > p:not(.eyebrow) {
        font-size: 0.96rem;
    }

    .dashboard-hero-actions,
    .dashboard-hero-actions .home-cta {
        width: 100%;
    }

    .dashboard-stat-strip {
        grid-template-columns: 1fr;
    }

    .dashboard-stat-strip article,
    .dashboard-stat-strip article:nth-child(2) {
        border-bottom: 1px solid #e5e8ef;
        border-right: 0;
    }

    .dashboard-stat-strip article:last-child {
        border-bottom: 0;
    }

    .dashboard-workbench {
        gap: 14px;
    }

    .photo-preview {
        padding: 8px;
    }

    .photo-nav-control {
        font-size: 1.8rem;
        height: 40px;
        width: 40px;
    }

    .photo-nav-control-prev {
        left: 14px;
    }

    .photo-nav-control-next {
        right: 14px;
    }

    .qr-link-list a {
        align-items: flex-start;
        display: grid;
    }

    .guest-upload-page {
        align-items: start;
        padding: 10px;
    }

    .guest-upload-card {
        min-height: calc(100vh - 20px);
        padding: 24px 18px;
    }

    .dashboard-start-content,
    .dashboard-latest-grid {
        padding: 14px;
    }

    .dashboard-action-grid a {
        grid-template-columns: 40px minmax(0, 1fr);
        min-height: 68px;
    }

    .site-header {
        padding: 12px 10px;
    }

    .site-logo {
        font-size: 1.48rem;
    }

    .site-logo em {
        font-size: 0.88rem;
    }

    .site-nav a {
        min-height: 34px;
        padding: 10px 9px;
    }

    .main {
        padding: 20px 0 34px;
        width: min(100% - 20px, 1250px);
    }

    .shop-heading,
    .admin-heading,
    .intro {
        border-radius: 8px;
        padding: 20px;
    }

    .product-item,
    .data-panel,
    .gallery-access-panel,
    .panel {
        border-radius: 8px;
    }

    .auth-brand-panel {
        border-radius: 8px 8px 0 0;
        min-height: 230px;
    }

    .auth-panel {
        border-radius: 0 0 8px 8px;
    }

    .product-item {
        min-height: auto;
        padding: 18px;
    }

    .checkout-form,
    .config-form,
    .filter-bar {
        padding: 16px;
    }

    .users-toolbar .filter-bar {
        padding: 0;
    }

    .marketing-hero {
        border-radius: 14px;
        gap: 18px;
        padding: 20px;
    }

    .marketing-hero h1 {
        font-size: 2rem;
    }

    .marketing-hero-copy > p:not(.eyebrow),
    .marketing-section-heading > p:not(.eyebrow),
    .marketing-cta-band p {
        font-size: 0.98rem;
    }

    .marketing-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .marketing-visual {
        min-height: 220px;
    }

    .marketing-card-grid {
        grid-template-columns: 1fr;
    }

    .fotobox-product-visual {
        min-height: 300px;
    }

    .fotobox-product-visual img {
        max-height: 340px;
        max-width: 100%;
    }

    .fotobox-included-list {
        grid-template-columns: 1fr;
    }

    .fotobox-included-item {
        min-height: auto;
    }

    .fotobox-check-section {
        border-radius: 14px;
        padding: 20px;
    }

    .fotobox-review-section {
        padding: clamp(150px, 50vw, 230px) 0 24px;
    }

    .fotobox-check-frame iframe {
        min-height: 390px;
    }

    .fotobox-review-card {
        min-height: auto;
    }

    .marketing-card {
        min-height: auto;
    }

    .marketing-section-heading h2,
    .marketing-cta-band h2 {
        font-size: 1.62rem;
    }

    .marketing-steps li {
        padding: 16px 16px 16px 64px;
    }

    .marketing-steps li::before {
        height: 34px;
        left: 16px;
        top: 16px;
        width: 34px;
    }

    .fotobox-hunt-trail .fotobox-hunt-step {
        left: auto;
        min-height: auto;
        padding: 18px 16px 18px 76px;
        position: relative;
        right: auto;
        top: auto;
        width: auto;
    }

    .fotobox-hunt-trail .fotobox-hunt-step::before {
        height: 44px;
        left: 16px;
        top: 18px;
        width: 44px;
    }

    .home-page {
        padding: 10px;
    }

    .home-logo {
        font-size: 1.76rem;
    }

    .home-logo em {
        font-size: 1rem;
    }

    .home-brand p {
        font-size: 0.72rem;
    }

    .home-top-actions {
        gap: 14px;
    }

    .home-cta-row {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        --hero-y-padding: 24px;
        display: grid;
        height: auto;
        min-height: auto;
    }

    .hero-copy,
    .hero-panel-right .hero-copy {
        height: auto;
        padding-block: var(--hero-y-padding);
        padding-inline: 22px;
        width: 100%;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: 1.62rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .social-proof,
    .gallery-proof {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-top: 16px;
        padding-top: 0;
    }

    .photobox-hero,
    .gallery-hero {
        bottom: auto;
        left: auto;
        margin: 0 auto 18px;
        max-width: 82%;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }

    .photobox-hero {
        height: auto;
        margin-bottom: 0;
        width: min(390px, 82vw);
    }

    .gallery-hero {
        height: auto;
        object-fit: contain;
        width: min(360px, calc(100% - 34px));
    }

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

    .home-feature-card {
        grid-template-columns: 46px minmax(0, 1fr) 82px;
        min-height: 132px;
        padding: 15px 10px 12px 10px;
    }

    .trust-item {
        align-items: flex-start;
        padding: 12px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fotobox-hunt-route-mask,
    .fotobox-hunt-map-point,
    .fotobox-hunt-svg-card,
    .fotobox-hunt-trail::before,
    .fotobox-hunt-step,
    .fotobox-hunt-step::before,
    .fotobox-hunt-step::after {
        animation: none;
    }

    .fotobox-hunt-map-point {
        opacity: 1;
        transform: scale(1);
    }

    .fotobox-hunt-svg-card {
        opacity: 1;
        transform: none;
    }

    .fotobox-hunt-route-mask {
        stroke-dashoffset: 0;
    }

    .fotobox-hunt-trail::before {
        transform: scaleY(1);
    }

    .fotobox-hunt-step:hover {
        transform: none;
    }
}
