.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
}

.cookie-banner-inner {
    max-width: 1120px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 22px;
    box-shadow: 0 14px 42px rgba(0,0,0,0.18);
    padding: 18px;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner-text p {
    margin: 6px 0;
    color: #555;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #198754;
    font-weight: 600;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    min-width: 280px;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.cookie-modal-box {
    width: min(720px, 100%);
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.cookie-choice {
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    padding: 16px;
    margin-top: 12px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.cookie-choice p {
    margin: 4px 0 0;
    color: #666;
}

.cookie-settings-button {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 9998;
    border: none;
    border-radius: 999px;
    background: #198754;
    color: white;
    padding: 10px 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    font-weight: 600;
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-actions {
        min-width: 0;
        justify-content: stretch;
    }

    .cookie-banner-actions .btn {
        flex: 1 1 auto;
    }

    .cookie-choice {
        align-items: flex-start;
    }
}
