.privacy-choice {
    position: fixed;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 10000;
    display: none;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(20, 20, 20, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.privacy-choice.is-visible {
    display: flex;
}

.privacy-choice__button {
    min-width: 250px;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid #f05f40;
    border-radius: 4px;
    background: #f05f40;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    cursor: pointer;
}

.privacy-choice__button:hover,
.privacy-choice__button:focus {
    background: #eb3812;
    border-color: #eb3812;
    color: #fff;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media (max-width: 620px) {
    .privacy-choice {
        flex-direction: column;
    }

    .privacy-choice__button {
        width: 100%;
        min-width: 0;
    }
}
