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

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

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

.cookie-text {
    flex: 1;
}

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

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

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

.cookie-btn.accept {
    background: #68D391;
    color: #2D3748;
}

.cookie-btn.accept:hover {
    background: #48BB78;
    transform: translateY(-1px);
}

.cookie-btn.reject {
    background: transparent;
    color: #E2E8F0;
    border: 1px solid #4A5568;
}

.cookie-btn.reject:hover {
    background: #4A5568;
    border-color: #68D391;
}

.cookie-btn.customize {
    background: #4A5568;
    color: #E2E8F0;
    border: 1px solid #68D391;
}

.cookie-btn.customize:hover {
    background: #68D391;
    color: #2D3748;
}

.cookie-link {
    color: #68D391;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #48BB78;
    text-decoration: underline;
}

/* Cookie Customization Panel */
.cookie-customization {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding: 1.5rem;
    background: #4A5568;
    border-radius: 8px;
    border: 1px solid #68D391;
}

.cookie-customization h3 {
    margin: 0 0 1rem 0;
    color: #FFFFFF;
    font-size: 1.1rem;
}

.cookie-category {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #2D3748;
    border-radius: 6px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #E2E8F0;
}

.cookie-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #68D391;
}

.cookie-category input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-category p {
    margin: 0.5rem 0 0 1.5rem;
    font-size: 0.85rem;
    color: #A0AEC0;
    line-height: 1.4;
}

.cookie-custom-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-end;
}

.cookie-custom-actions .cookie-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .cookie-text {
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
    
    .cookie-customization {
        margin: 1rem auto 0;
        padding: 1rem;
    }
    
    .cookie-custom-actions {
        flex-direction: column;
    }
    
    .cookie-custom-actions .cookie-btn {
        width: 100%;
    }
}