/* ============================================
   LIMEDESK COOKIE BANNER
   Include this file on all pages
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    background: #111111;
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    display: none;
    animation: cookieSlideUp 0.4s ease;
}

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

@keyframes cookieSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cookie-icon {
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
}

.cookie-text { flex: 1; }

.cookie-title {
    font-family: 'General Sans', 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: white;
    margin-bottom: 6px;
}

.cookie-description {
    font-family: 'General Sans', 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    margin-bottom: 18px;
}

.cookie-description a {
    color: #22c55e;
    text-decoration: none;
    transition: color 0.15s ease;
}

.cookie-description a:hover {
    color: #4ade80;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    font-family: 'General Sans', 'Inter', sans-serif;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none;
}

.cookie-btn.accept {
    background: #ffffff;
    color: #0f172a;
}

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

.cookie-btn.decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.32);
    color: white;
}

/* Mobile responsive */
@media (max-width: 500px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 20px;
    }

    .cookie-buttons { flex-direction: column; }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
