.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    padding: 16px;
    background: rgba(0, 0, 0, 0.85);
}

.cookie-consent.is-visible {
    display: block;
}

.cookie-consent__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #ffffff;
}

.cookie-consent__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
}

.cookie-consent__text a {
    color: #fec700;
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.cookie-consent__actions .btn {
    min-width: 160px;
}

#open-cookie-settings .copyright {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .cookie-consent {
        padding: 12px;
    }

    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent__actions {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .cookie-consent__actions .btn {
        width: 100%;
        min-width: 0;
    }
}
