﻿.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: 88%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 16px 20px;
    z-index: 9999;
    transition: all 0.6s cubic-bezier(.23,1,.32,1);
    font-size: 13px;
}
    .cookie-consent.show {
        transform: translateX(-50%) translateY(0);
    }

.cookie-content {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;

}

.cookie-text strong {
    font-size: 14px;
}
.cookie-text p {
    margin: 4px 0 0 0;
    font-size: 13px;
    line-height: 1.5;
    text-align: start !important
}

.cookie-text a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    transition: all 0.3s ease;
}

    .cookie-text a:hover {
        border-color: #000;
    }

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: none;
    padding: 7px 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 13px;
}

    .btn-primary:hover {
        background: #333;
        transform: translateY(-2px);
    }

.btn-outline {
    padding: 7px 16px;
    background: transparent;
    color: #000;
    border: 1px solid #ddd;
    padding: 9px 22px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 13px;
}

    .btn-outline:hover {
        border-color: #000;
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
}
