/* Стили для уведомления о куки */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    z-index: 999;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-notice-text {
    flex: 1;
    margin-right: 20px;
}

.cookie-notice-text p {
    margin: 0;
    font-family: 'Open Sans Regular', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
}

.cookie-notice-text a {
    color: #fff0cc;
    text-decoration: underline;
}

.cookie-notice-text a:hover {
    color: #fff;
}

.cookie-notice-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-family: 'Open Sans Bold', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cookie-btn-accept {
    background: #538410;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #4a7510;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 0;
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .cookie-notice-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-notice-text {
        margin-right: 0;
        margin-bottom: 15px;
        margin-top: 8px;
    }
    
    .cookie-notice-buttons {
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 6px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cookie-notice {
        padding: 20px 0;
    }
    
    .cookie-notice-content {
        padding: 0 15px;
    }
    
    .cookie-notice-text p {
        font-size: 13px;
    }
    
    .cookie-notice-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        margin-bottom: 5px;
    }
    .cookie-btn-decline {
        width: 25px;
        height: 25px;
        padding: 0;
        font-size: 14px;
    }
} 