:root {
    --bg: #f5f5f7;
    --bg-soft: #ececf0;
    --card: #ffffff;
    --card-alt: #fafafb;
    --border: #e1e1e3;
    --border-soft: #ebebed;
    --text: #1d1d1f;
    --text-soft: #4a4a4c;
    --muted: #86868b;
    --accent: #0a84ff;
    --accent-hover: #409cff;
    --accent-soft: rgba(10, 132, 255, 0.1);
    --success: #34c759;
    --error: #ff3b30;
    --warning: #ff9f0a;
    --gradient-a: #0a84ff;
    --gradient-b: #5e5ce6;
    --gradient-c: #bf5af2;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 24px 48px rgba(10, 132, 255, 0.14), 0 4px 12px rgba(10, 132, 255, 0.08);
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #000000;
        --bg-soft: #1c1c1e;
        --card: #1c1c1e;
        --card-alt: #2c2c2e;
        --border: #2c2c2e;
        --border-soft: #38383a;
        --text: #f5f5f7;
        --text-soft: #d1d1d6;
        --muted: #8e8e93;
        --accent: #0a84ff;
        --accent-hover: #409cff;
        --accent-soft: rgba(10, 132, 255, 0.2);
        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
        --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 24px 48px rgba(10, 132, 255, 0.2), 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

* {
    box-sizing: border-box;
}

/* Apple / macOS only banner boven alles: zichtbare waarschuwing dat
   de gebruiker eerst de PKG moet installeren op een Mac. */
.mac-banner {
    position: relative;
    z-index: 2;
    padding: 16px 20px;
    background: linear-gradient(135deg, #111 0%, #1d1d1f 100%);
    color: #f5f5f7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mac-banner-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.mac-banner-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}
.mac-banner-copy {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.4;
}
.mac-banner-copy strong {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.mac-banner-copy span {
    font-size: 13px;
    color: rgba(245, 245, 247, 0.75);
}
.mac-banner-copy b {
    color: #ffffff;
    font-weight: 600;
}
.mac-banner-cta {
    background: #ffffff;
    color: #111;
    font-weight: 600;
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.15s ease, background 0.15s ease;
    flex-shrink: 0;
}
.mac-banner-cta:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-1px);
}
/* QR-sidebars naast de hoofdcontainer */
.app-qr-sidebar {
    position: fixed;
    top: 160px;
    z-index: 5;
    width: 130px;
}
.app-qr-sidebar--left {
    /* rechterrand raakt linkerrand van de 780px container */
    right: calc(50% + 406px);
}
.app-qr-sidebar--right {
    /* linkerrand raakt rechterrand van de 780px container */
    left: calc(50% + 406px);
}
.qr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--card, #fff);
    border-radius: 16px;
    padding: 14px 10px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.09);
    border: 1px solid var(--border, #e5e7eb);
    text-decoration: none;
    color: var(--text, #111);
    transition: box-shadow 0.15s, transform 0.15s;
    width: 130px;
    box-sizing: border-box;
}
a.qr-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
    transform: translateY(-2px);
}
.qr-card-store-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    align-self: flex-start;
}
.qr-card--ios .qr-card-store-label { color: #1d1d1f; }
.qr-card--android .qr-card-store-label { color: #3dba4e; }
.qr-card-img {
    width: 106px;
    height: 106px;
    border-radius: 8px;
    display: block;
    border: 1px solid var(--border, #e5e7eb);
}
.qr-card-desc {
    font-size: 10.5px;
    color: var(--muted, #6b7280);
    line-height: 1.45;
    margin: 0;
    text-align: center;
}
.qr-card-cta {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent, #4f46e5);
    text-align: center;
}
.qr-card-cta--muted {
    color: var(--muted, #9ca3af);
}
.qr-card-soon {
    width: 106px;
    height: 106px;
    border-radius: 8px;
    background: var(--bg, #f5f5f7);
    border: 1.5px dashed var(--border, #d1d5db);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.qr-soon-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted, #9ca3af);
}
/* Verberg op schermen die te smal zijn voor sidebars naast de container */
@media (max-width: 1100px) {
    .app-qr-sidebar { display: none; }
}
@media (max-width: 640px) {
    .mac-banner-inner {
        gap: 12px;
    }
    .mac-banner-copy {
        min-width: 0;
        flex-basis: calc(100% - 56px);
    }
    .mac-banner-cta {
        margin-left: auto;
    }
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

.backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.backdrop::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--gradient-a) 0%, transparent 70%);
    opacity: 0.18;
    filter: blur(80px);
}

.backdrop::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, var(--gradient-c) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(80px);
}

.site-header {
    max-width: 780px;
    margin: 0 auto;
    padding: 28px 24px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

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

.logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gradient-a), var(--gradient-b));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.site-header h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--gradient-a), var(--gradient-c));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    margin: 2px 0 0;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.01em;
}

.status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 20%, transparent);
}

.status-checking { color: var(--warning); background: color-mix(in srgb, var(--warning) 12%, transparent); }
.status-ok { color: var(--success); background: color-mix(in srgb, var(--success) 14%, transparent); }
.status-error { color: var(--error); background: color-mix(in srgb, var(--error) 12%, transparent); }

.lang-switch {
    display: inline-flex;
    padding: 2px;
    background: var(--bg-soft);
    border-radius: 999px;
    border: 1px solid var(--border);
}

.lang-switch button {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 4px 12px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.15s;
}

.lang-switch button.active {
    background: var(--card);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

main {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px 32px;
}

footer {
    max-width: 780px;
    margin: 0 auto;
    padding: 12px 24px 48px;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

footer a {
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px dashed var(--muted);
}

footer a:hover { color: var(--text); }

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.card h2 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.card.hidden { display: none; }

.error-card {
    border-color: var(--error);
    background: color-mix(in srgb, var(--error) 4%, var(--card));
}

.row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.field {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 140px;
    margin-bottom: 12px;
}

.field:last-child { margin-bottom: 0; }

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }
.flex-3 { flex: 3; }

.field > label {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.field input,
.field select,
.field textarea {
    font-family: inherit;
    font-size: 15px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    color: var(--text);
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.field textarea {
    resize: vertical;
    min-height: 88px;
    font-family: inherit;
    line-height: 1.5;
}

.preview {
    margin-top: 16px;
    padding: 24px;
    background: var(--bg-soft);
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
    text-align: center;
}

.preview-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.preview-inner img {
    max-width: 100%;
    max-height: 240px;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
}

.preview-inner img:not([src]) { display: none; }

.hint {
    color: var(--muted);
    font-size: 12px;
    margin: 8px 0 0;
    font-weight: 500;
}

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

button, .link-button {
    font-family: inherit;
}

.primary {
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    border: 0;
    background: linear-gradient(135deg, var(--gradient-a), var(--gradient-b));
    color: white;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.12s ease, box-shadow 0.15s;
}

.primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.primary:active:not(:disabled) { transform: translateY(0); }

.primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--bg-soft);
    color: var(--muted);
    box-shadow: none;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
}

.link-button {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
}

.link-button:hover { background: var(--accent-soft); }

.feedback {
    font-size: 13px;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feedback.success { color: var(--success); font-weight: 600; }
.feedback.error { color: var(--error); font-weight: 600; }

.feedback a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

code {
    background: var(--bg-soft);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
}

ol, ul { padding-left: 20px; }
ol li { margin-bottom: 6px; }

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover { text-decoration: underline; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0;
}

.badge.hidden { display: none; }

.badge::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 30%, transparent);
}

/* Color swatches */

.color-swatches {
    display: flex;
    gap: 6px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
}

.swatch {
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1.5px solid var(--border-soft);
    background: var(--c);
    padding: 0;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.15s;
}

.swatch:hover { transform: scale(1.08); }

.swatch.active {
    transform: scale(1.08);
    box-shadow: 0 0 0 2px var(--card), 0 0 0 4px var(--accent);
}

/* Style toggles */

.style-toggles {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.style-btn {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--muted);
    width: 34px;
    height: 34px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s;
}

.style-btn:hover { color: var(--text); background: var(--card); }

.style-btn.active {
    background: var(--accent);
    color: white;
}

/* Segmented controls */

.segmented {
    display: inline-flex;
    gap: 2px;
    padding: 3px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    width: 100%;
}

.segmented button {
    flex: 1;
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--muted);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
}

.segmented button:hover { color: var(--text); }

.segmented button.active {
    background: var(--card);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

/* History */

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

.history-header h2 { margin: 0; }

.history-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 360px;
    overflow-y: auto;
}

.history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    background: var(--card-alt);
    transition: border-color 0.15s;
}

.history-item:hover { border-color: var(--border); }

.history-meta { flex: 1; min-width: 0; }

.history-time {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.history-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.history-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.history-actions button {
    appearance: none;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.history-actions button.primary-small {
    border: 0;
    background: var(--accent);
    color: white;
}

.history-actions button.primary-small:hover {
    background: var(--accent-hover);
}

.history-actions button.secondary-small {
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
}

.history-actions button.secondary-small:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Install card */

.install-card {
    background: linear-gradient(135deg, color-mix(in srgb, var(--gradient-a) 6%, var(--card)), color-mix(in srgb, var(--gradient-c) 6%, var(--card)));
    border-color: color-mix(in srgb, var(--gradient-a) 18%, transparent);
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gradient-a), var(--gradient-b));
    color: white;
    text-decoration: none;
    margin: 20px 0 24px;
    box-shadow: var(--shadow-md);
    transition: transform 0.15s ease, box-shadow 0.15s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: white;
}

.download-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.download-labels {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.download-labels strong {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.download-labels small {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .steps { grid-template-columns: 1fr 1fr; }
}

.steps li {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.steps li strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.steps li p {
    font-size: 12px;
    color: var(--muted);
    margin: 2px 0 0;
    line-height: 1.45;
}

.step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-a), var(--gradient-b));
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* ── Mobile apps card ───────────────────────────────────────── */
.mobile-apps-card {
    background: linear-gradient(135deg, color-mix(in srgb, var(--gradient-b) 5%, var(--card)), color-mix(in srgb, var(--gradient-c) 5%, var(--card)));
    border-color: color-mix(in srgb, var(--gradient-b) 15%, transparent);
}

.mobile-apps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .mobile-apps-grid { grid-template-columns: 1fr; }
}

.mobile-app-col {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-app-col--soon {
    opacity: 0.75;
}

.mobile-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    width: fit-content;
}

.ios-badge {
    background: color-mix(in srgb, #007aff 12%, transparent);
    color: #007aff;
}

.android-badge {
    background: color-mix(in srgb, #3ddc84 15%, transparent);
    color: #1a7a40;
}

@media (prefers-color-scheme: dark) {
    .android-badge { color: #3ddc84; }
}

.mobile-app-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mobile-app-qr img {
    border-radius: 10px;
    border: 1px solid var(--border);
    display: block;
}

.mobile-app-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.mobile-app-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.mobile-app-req {
    font-size: 11px;
    color: var(--muted);
    margin: 0;
    opacity: 0.7;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: var(--shadow-sm);
}

.app-store-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.ios-btn {
    background: #007aff;
    color: white;
}

.ios-btn:hover { color: white; }

.mobile-app-soon-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: var(--hover);
}

.soon-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text) !important;
}

.soon-body {
    font-size: 13px;
}

.soon-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--warning) 15%, transparent);
    color: var(--warning);
    width: fit-content;
}

/* Fix: hogere specificiteit voor App Store knop */
a.app-store-btn.ios-btn,
a.app-store-btn.ios-btn:visited {
    background: #007aff !important;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0,122,255,0.35);
    transition: transform 0.15s, box-shadow 0.15s;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

a.app-store-btn.ios-btn:hover {
    background: #0071e3 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,122,255,0.45);
    text-decoration: none !important;
}
