/**
 * Frappgodso - Cookie Consent CSS
 * Author: Frappgodso Team
 * Version: 1.0
 */

#cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 9999;
    transition: bottom 0.5s ease;
}

#cookie-consent.show {
    bottom: 0;
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-consent-content {
    flex: 1;
    min-width: 280px;
}

.cookie-consent-title {
    font-size: 1.2rem;
    color: #1e6f5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cookie-consent-text {
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.accept-all {
    background-color: #1e6f5c;
    color: white;
}

.accept-all:hover {
    background-color: #18574a;
}

.accept-necessary {
    background-color: #f2f7f5;
    color: #333;
    border: 1px solid #ddd;
}

.accept-necessary:hover {
    background-color: #e6eae8;
}

.customize {
    background-color: transparent;
    color: #1e6f5c;
    text-decoration: underline;
}

.customize:hover {
    color: #29bb89;
}

#cookie-settings {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    width: 100%;
}

#cookie-settings.hidden {
    display: none;
}

.cookie-settings-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.cookie-settings-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: #555;
}

.cookie-settings-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cookie-settings-option {
    display: flex;
    align-items: center;
}

.cookie-settings-option input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
    margin-bottom: 0;
}

.cookie-settings-option input[type="checkbox"]:disabled {
    opacity: 0.5;
}

.cookie-settings-option label {
    font-size: 0.9rem;
    margin-bottom: 0;
    cursor: pointer;
}

.cookie-settings-option-required {
    font-size: 0.8rem;
    color: #888;
    margin-left: 0.5rem;
}

.cookie-settings-info {
    font-size: 0.8rem;
    color: #888;
    margin-left: 1.5rem;
    margin-top: -0.25rem;
}

.cookie-settings-btn {
    font-size: 0.9rem;
    text-decoration: underline;
    color: #1e6f5c;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.cookie-settings-btn:hover {
    color: #29bb89;
}

@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-consent-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: space-between;
    }
}