/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C2C2C;
    color: white;
    padding: 1.5rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    margin-bottom: 1.5rem;
}

.cookie-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: white;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #E5E5E5;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cookie-accept {
    background-color: #6B8E5A;
    color: white;
}

.cookie-accept:hover {
    background-color: #4A6B3A;
}

.cookie-reject {
    background-color: #8B4513;
    color: white;
}

.cookie-reject:hover {
    background-color: #A0522D;
}

.cookie-customize {
    background-color: transparent;
    color: #E5E5E5;
    border: 2px solid #555;
}

.cookie-customize:hover {
    background-color: #555;
    color: white;
}

.cookie-save {
    background-color: #6B8E5A;
    color: white;
}

.cookie-save:hover {
    background-color: #4A6B3A;
}

.cookie-back {
    background-color: transparent;
    color: #E5E5E5;
    border: 2px solid #555;
}

.cookie-back:hover {
    background-color: #555;
    color: white;
}

.cookie-link {
    color: #6B8E5A;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: auto;
}

.cookie-link:hover {
    color: #8FBC7F;
    text-decoration: underline;
}

/* Cookie Preferences */
.cookie-preferences {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #555;
}

.cookie-categories {
    margin-bottom: 1.5rem;
}

.cookie-category {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.cookie-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.cookie-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 2px solid #6B8E5A;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #6B8E5A;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.cookie-checkbox input[type="checkbox"]:disabled + .checkmark {
    background-color: #666;
    border-color: #666;
}

.cookie-info strong {
    display: block;
    margin-bottom: 0.25rem;
    color: white;
    font-size: 0.95rem;
}

.cookie-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.4;
}

.cookie-preference-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 0 1rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        min-width: 80px;
    }
    
    .cookie-link {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem 0;
    }
    
    .cookie-content {
        padding: 0 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-btn {
        text-align: center;
        padding: 0.6rem 1rem;
    }
    
    .cookie-preference-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-checkbox {
        gap: 0.75rem;
    }
}