/**
 * Cookie Notice - Стили для уведомления о использовании куки
 * Версия: 2.0
 */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    border-top: 3px solid #0066cc;
}

.cookie-notice--hidden {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-notice__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-notice__content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
}

.cookie-notice__icon {
    font-size: 32px;
    line-height: 1;
}

.cookie-notice__text {
    flex: 1;
}

.cookie-notice__title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin: 0 0 5px 0;
}

.cookie-notice__description {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.cookie-notice__description a {
    text-decoration: underline;
}

.cookie-notice__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-notice__button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    background-color: #c5a157;
    color: #291c00;
    font-family: Cyrillic Old;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
    min-width: 120px;
}

.cookie-notice__button--accept {
    background-color: #c5a157;
    color: #291c00;
}

.cookie-notice__button--accept:hover {
    background-color: #9a7d43;
    color: #000000;
}

.cookie-notice__button--decline {
    background-color: #f0f0f0;
    color: #333333;
}

.cookie-notice__button--decline:hover {
    background-color: #e0e0e0;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px;
    }
    
    .cookie-notice__wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-notice__content {
        margin-bottom: 15px;
    }
    
    .cookie-notice__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-notice__button {
        width: 100%;
    }
    
    .cookie-notice__icon {
        font-size: 28px;
    }
    
    .cookie-notice__title {
        font-size: 15px;
    }
    
    .cookie-notice__description {
        font-size: 13px;
    }
}



.cookie-notice {
    background-color: #dcd2c8f0;
    border-top-color: #c5a157;
}

.cookie-notice__title {
    color: #ffffff;
}

.cookie-notice__description {
    color: #291c00;
}

.cookie-notice__button--decline {
    background-color: #2a2a2a;
    color: #ffffff;
}

.cookie-notice__button--decline:hover {
    background-color: #3a3a3a;
}


