.cookie-banner {
    display: none;
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: #063444;
    color: white;
    padding: 25px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    transform: translateX(-120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
    transform: translateX(0);
}

.cookie-banner__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cookie-banner__content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner__content a {
    color: #4da8ff;
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
}

.cookie-banner__content a:hover {
    color: #7bc1ff;
}

.cookie-banner__button {
    background: white;
    color: #063444;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    transition: all 0.3s;
    text-align: center;
}

.cookie-banner__button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Адаптив */
@media (max-width: 768px) {
    .cookie-banner {
        left: 50%;
        transform: translateX(-50%) translateY(120%);
        width: 90%;
        max-width: 400px;
        bottom: 20px;
    }
    
    .cookie-banner.show {
        transform: translateX(-50%) translateY(0);
    }
    
    .cookie-banner__content {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        width: 95%;
        padding: 20px;
        left: 50%;
        bottom: 15px;
    }
}