#mobile-action-bar {
    display: flex;
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 10px 12px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    gap: 10px;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

[data-theme="dark"] #mobile-action-bar {
    background: var(--color-surface);
    border-top-color: var(--color-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

#mobile-action-bar .mab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 18px;
    height: 46px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

#mobile-action-bar .mab-btn:active {
    transform: scale(0.96);
    opacity: 0.92;
}

#mobile-action-bar .mab-btn-wa {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
    flex: 1.2;
}

#mobile-action-bar .mab-btn-demo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
    flex: 1;
}

@media (min-width: 640px) {
#mobile-action-bar {
        display: none !important;
    }
}
