.cookie-notice {
    position: fixed;
    left: 10%;
    right: 10%;
    bottom: 20px;
    width: 80%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000 !important; /* Увеличиваем приоритет */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.cookie-notice-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.cookie-notice-content p {
    margin: 0;
    font-size: 16px;
}

.cookie-notice-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-accept {
    padding: 8px 20px;
    font-size: 14px;
    white-space: nowrap;
    border: none !important;
    outline: none !important;
}

@media (max-width: 768px) {
    .cookie-notice {
        left: 5%;
        right: 5%;
        width: 90%;
    }
    
    .cookie-notice-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
