/* === Cookie Banner Modern UI === */
.ccc-cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 90%;
    background: #ffffff;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 25px 30px;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
    animation: slideInUp 0.5s ease;
	display:none;
}

@keyframes slideInUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0%);
        opacity: 1;
    }
}

.ccc-cookie-banner .cookie-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.ccc-cookie-banner .cookie-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ccc-cookie-banner a {
    color: #0073aa;
    text-decoration: underline;
    font-weight: 500;
}

.ccc-cookie-banner .cookie-btn {
    padding: 10px 24px;
    margin-right: 10px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ccc-cookie-banner .accept-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: #fff;
}

.ccc-cookie-banner .accept-btn:hover {
    background: linear-gradient(135deg, #66BB6A, #388E3C);
    box-shadow: 0 6px 14px rgba(76, 175, 80, 0.3);
    transform: translateY(-1px);
}

.ccc-cookie-banner .reject-btn {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ccc;
}

.ccc-cookie-banner .reject-btn:hover {
    background: #e0e0e0;
    color: #000;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}