.cookie-consent {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 10px;
    background: #1a1919;
    color: #fff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

.cookie-consent.visible {
    display: flex;
}

.cookie-consent__text {
    flex: 1 1 320px;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-consent__actions {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.cookie-consent__btn {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-consent__btn--accept {
    background: #fff;
    color: #1a1919;
}

@media (max-width: 600px) {
    .cookie-consent {
        padding: 16px;
    }
    .cookie-consent__actions {
        width: 100%;
    }
    .cookie-consent__btn {
        flex: 1 1 0;
    }
}
