:root {
    --bg-1: #f5f7fb;
    --bg-2: #fdfefe;
    --card: #ffffff;
    --card-strong: #f9fafb;
    --text: #1f2937;
    --muted: #6b7280;
    --accent: #f59e0b;
    --accent-2: #60a5fa;
    --border: #e5e7eb;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.22), transparent 24%),
                radial-gradient(circle at 80% 10%, rgba(96, 165, 250, 0.18), transparent 32%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.12), transparent 30%),
                linear-gradient(135deg, var(--bg-1), var(--bg-2));
    padding: 48px 16px 0;
}

.page {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    flex: 1 0 auto;
    padding-bottom: 32px;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 32px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--card-strong);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

h1 {
    margin: 14px 0 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.1;
    color: #0f172a;
}

.lede {
    max-width: 600px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.tag {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: linear-gradient(120deg, rgba(245, 158, 11, 0.16), rgba(96, 165, 250, 0.14));
    color: #92400e;
    font-size: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.side-card {
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.side-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    letter-spacing: 0.2px;
    color: #111827;
}

.side-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.side-card li {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f9fafb;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(4px);
}

form {
    display: grid;
    gap: 18px;
}

.fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 14px;
    letter-spacing: 0.15px;
}

input, select, textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.1s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.28);
    transform: translateY(-1px);
}

textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.full {
    grid-column: 1 / -1;
}

.actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(245, 158, 11, 0.6);
    cursor: pointer;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #0f172a;
    background: linear-gradient(120deg, #fbbf24, #f59e0b 55%, #f97316);
    box-shadow: 0 18px 34px rgba(245, 158, 11, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(245, 158, 11, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    filter: brightness(1.02);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 10px 18px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3), 0 12px 28px rgba(245, 158, 11, 0.35);
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 60%);
    opacity: 0;
    transform: translateX(-40%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
    transform: translateX(0%);
}

.hint {
    color: var(--muted);
    font-size: 14px;
}

.alert {
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
}

.alert.success {
    border-color: rgba(22, 163, 74, 0.4);
    background: #ecfdf3;
    color: #166534;
}

.alert.error {
    border-color: rgba(239, 68, 68, 0.35);
    background: #fef2f2;
    color: #b91c1c;
}

.alert ul {
    margin: 8px 0 0;
    padding-left: 18px;
    color: inherit;
}

.total-banner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 2px solid #f59e0b;
    background: #fffbeb;
    color: #92400e;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.2);
    margin: 12px 0 4px;
}

.total-banner .price {
    font-size: 28px;
    font-weight: 700;
    color: #b45309;
}

.total-banner .label {
    font-size: 15px;
    color: #92400e;
}

.consent-box {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #f8fafc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.consent-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0;
    color: #1f2937;
}

.consent-option input {
    width: auto;
    margin-top: 3px;
}

.consent-option a {
    color: #0ea5e9;
    text-decoration: none;
}

.consent-option a:hover {
    text-decoration: underline;
}

.prefooter {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(120deg, rgba(245, 158, 11, 0.16), rgba(96, 165, 250, 0.16));
    padding: 26px 16px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
}

.prefooter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    justify-content: space-between;
}

.prefooter h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 30px);
    color: #0f172a;
}

.prefooter p {
    margin: 0;
    font-size: 16px;
    color: #334155;
    max-width: 700px;
    line-height: 1.5;
}

.footer {
    margin-top: 48px;
    padding: 30px 24px 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(96, 165, 250, 0.14));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.footer-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: center;
}

.footer-brand img {
    max-height: 40px;
    width: auto;
    display: block;
}

.footer-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-icons img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.18));
}

.footer-text {
    color: #334155;
    font-size: 14px;
    line-height: 1.5;
}

.footer-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer {
    margin-top: auto;
    padding: 30px 0 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(96, 165, 250, 0.14));
    border-top: 1px solid var(--border);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-shell {
    width: 100%;
    max-width: 1200px;
    padding: 0 24px 32px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.footer-block h4 {
    margin: 0 0 10px;
    font-size: 15px;
    color: #0f172a;
    letter-spacing: 0.2px;
}

.footer-brand-block .footer-logo {
    font-weight: 800;
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 10px;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #334155;
    font-size: 14px;
    line-height: 1.5;
}

.footer-links ul,
.footer-anpc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li {
    margin-top: 8px;
}

.footer-links a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-anpc {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-anpc img {
    height: 56px;
    width: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
    background: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 16px 0;
    color: #475569;
    font-size: 14px;
}

.footer-bottom .made-by img {
    height: 36px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.14));
}

.floating-home {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(130deg, #fbbf24, #f97316);
    color: #0f172a;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 16px 32px rgba(15,23,42,0.28), inset 0 1px 0 rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.3px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.floating-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(15,23,42,0.32), inset 0 1px 0 rgba(255,255,255,0.85);
    filter: brightness(1.03);
}

.floating-home:active {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(15,23,42,0.22), inset 0 1px 0 rgba(255,255,255,0.7);
}

.floating-home span {
    font-size: 12px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .floating-home {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
    }
    .footer-anpc {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-anpc {
        justify-content: center;
    }
}

/* Admin list */
.admin-list {
    display: grid;
    gap: 14px;
}

.admin-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.admin-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    font-size: 14px;
    color: #475569;
}

.admin-meta strong {
    color: #0f172a;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.admin-note {
    font-size: 14px;
    color: #334155;
    margin: 6px 0 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid rgba(146, 64, 14, 0.25);
}

.badge-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid rgba(22, 101, 52, 0.2);
}

.badge-info {
    background: #e0f2fe;
    color: #075985;
    border: 1px solid rgba(7, 89, 133, 0.2);
}

.badge-muted {
    background: #e5e7eb;
    color: #374151;
    border: 1px solid rgba(55, 65, 81, 0.2);
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

@media (max-width: 900px) {
    body {
        padding-top: 32px;
    }

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

/* Celebratie */
#confetti-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
    display: none;
}

#confetti-container.show {
    display: block;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 18px;
    background: linear-gradient(135deg, #f59e0b, #60a5fa);
    opacity: 0.9;
    animation: confetti-fall 2.6s ease-out forwards;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 0.95;
    }
    70% {
        opacity: 0.95;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}
