.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-notice--show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-notice__content {
    padding: 20px;
}

.cookie-notice__text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

.cookie-notice__text a {
    color: #007bff;
    text-decoration: none;
}

.cookie-notice__text a:hover {
    text-decoration: underline;
}

.cookie-notice__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-notice__btn {
    padding: 10px 20px;
    border: none;
   
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
}

.cookie-notice__btn--accept {
    background: #0D47A1;
    color: white;
}

.cookie-notice__btn--accept:hover {
    background: #072D83;
}



/* Мобильная версия */
@media (max-width: 480px) {
    .cookie-notice {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .cookie-notice__buttons {
        flex-direction: column;
    }
}