/* 
 * Yarkaya Kartoshka - Cookie Consent Styles
 * Author: Yarkaya Kartoshka
 * Version: 1.0
 */

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent h3 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.cookie-consent p {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e0e0e0;
}

.cookie-consent a {
    color: #81C784;
    text-decoration: underline;
}

.cookie-consent a:hover {
    color: #4CAF50;
}

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

/* Cookie Settings Panel */
.cookie-settings-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #333;
    border-radius: 0.5rem;
}

.cookie-options {
    margin: 1.5rem 0;
}

.cookie-option {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-option input[type="checkbox"] {
    margin-right: 0.5rem;
}

.cookie-option label {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
    display: inline-block;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
    font-size: 0.85rem;
    color: #e0e0e0;
}

.cookie-settings-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cookie-buttons, .cookie-settings-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button, .cookie-settings-buttons button {
        width: 100%;
    }
}
