/* 
* Travyanistaya Grusha - Cookie Consent Stylesheet
* Version: 1.0
* Author: Travyanistaya Grusha Team
* Description: Stylesheet for cookie consent functionality
*/

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 2rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
}

.cookie-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 2rem;
    color: #ddd;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-settings-panel {
    background-color: #fff;
    color: #333;
    padding: 2rem;
    border-radius: 5px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-settings-panel h3 {
    color: #333;
    margin-bottom: 2rem;
}

.cookie-options {
    margin-bottom: 2rem;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option input {
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.cookie-option h4 {
    margin-bottom: 0.5rem;
}

.cookie-option p {
    margin-bottom: 0;
    color: #666;
}

.cookie-settings-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
    
    .cookie-settings-buttons button {
        width: 100%;
        margin-bottom: 1rem;
    }
}
