/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2D3436;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-text p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-btn-accept {
    background: #9CAF88;
    color: white;
}

.cookie-btn-accept:hover {
    background: #8A9B76;
}

.cookie-btn-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-customize {
    background: #636E72;
    color: white;
}

.cookie-btn-customize:hover {
    background: #555B66;
}

.cookie-link {
    color: #9CAF88;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Cookie Preferences */
.cookie-preferences {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.cookie-preferences h3 {
    margin: 0 0 20px 0;
    color: white;
    font-size: 1.2rem;
}

.cookie-category {
    margin-bottom: 16px;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.cookie-category label:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cookie-category input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-category-name {
    font-weight: 500;
    color: white;
    display: block;
    margin-bottom: 4px;
}

.cookie-category-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.cookie-preferences-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-text {
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
    
    .cookie-preferences-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-category label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}