/* ============================================================
   Mola – Cookie Consent Banner
   ============================================================ */

.mcp-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 720px;
    background: #1A2B3C;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease;
}

.mcp-cookie-banner.mcp-cookie-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Cookie icon */
.mcp-cookie-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 168, 168, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mcp-cookie-icon svg {
    width: 24px;
    height: 24px;
    color: #00A8A8;
}

/* Text */
.mcp-cookie-body {
    flex: 1;
    min-width: 0;
}

.mcp-cookie-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
    font-family: 'IBM Plex Sans', sans-serif;
}

.mcp-cookie-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.55;
    font-family: 'IBM Plex Sans', sans-serif;
}

.mcp-cookie-text a {
    color: #00A8A8;
    text-decoration: none;
}

.mcp-cookie-text a:hover {
    text-decoration: underline;
}

/* Buttons */
.mcp-cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.mcp-cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    text-decoration: none;
}

.mcp-cookie-btn-accept {
    background: #00A8A8;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 168, 168, 0.3);
}

.mcp-cookie-btn-accept:hover {
    background: #009090;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 168, 168, 0.4);
}

.mcp-cookie-btn-decline {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mcp-cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 640px) {
    .mcp-cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        bottom: 16px;
        padding: 20px;
        width: calc(100% - 32px);
    }

    .mcp-cookie-actions {
        width: 100%;
    }

    .mcp-cookie-btn {
        flex: 1;
    }
}
